{"id":13532772,"url":"https://github.com/dabit3/vue-graphql-appsync","last_synced_at":"2026-02-26T06:56:14.438Z","repository":{"id":73191525,"uuid":"121723090","full_name":"dabit3/vue-graphql-appsync","owner":"dabit3","description":"Vue example using GraphQL with AWS AppSync","archived":false,"fork":false,"pushed_at":"2018-03-01T16:41:45.000Z","size":90,"stargazers_count":79,"open_issues_count":0,"forks_count":13,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-10-09T09:59:01.440Z","etag":null,"topics":["appsync","aws-appsync","graphql","vue","vue-graphql"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dabit3.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-02-16T06:59:56.000Z","updated_at":"2024-12-27T15:20:52.000Z","dependencies_parsed_at":"2023-03-18T05:15:49.399Z","dependency_job_id":null,"html_url":"https://github.com/dabit3/vue-graphql-appsync","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dabit3/vue-graphql-appsync","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dabit3%2Fvue-graphql-appsync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dabit3%2Fvue-graphql-appsync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dabit3%2Fvue-graphql-appsync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dabit3%2Fvue-graphql-appsync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dabit3","download_url":"https://codeload.github.com/dabit3/vue-graphql-appsync/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dabit3%2Fvue-graphql-appsync/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":284904516,"owners_count":27082265,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-17T02:00:06.431Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["appsync","aws-appsync","graphql","vue","vue-graphql"],"created_at":"2024-08-01T07:01:13.637Z","updated_at":"2025-11-17T15:12:50.025Z","avatar_url":"https://github.com/dabit3.png","language":"JavaScript","funding_links":[],"categories":["Example Projects","JavaScript"],"sub_categories":[],"readme":"# Vue + [AWS AppSync](https://aws.amazon.com/appsync/) + GraphQL App\n\nTask Manager Application built using [Vue](https://vuejs.org/), [AWS AppSync](https://aws.amazon.com/appsync/), and [Vue Apollo](https://github.com/Akryum/vue-apollo)  \nThis application goes along with the medium blog [Full Stack Vue with GraphQL \u0026 AWS AppSync](https://medium.com/@dabit3/full-stack-vue-with-graphql-aws-appsync-adc5af474dc9)\n\n![](https://i.imgur.com/9TdyOOi.jpg)    \n\n\n## Getting started    \n\n1. clone project    \n\n```\ngit clone https://github.com/dabit3/vue-graphql-appsync.git\n```\n\n2. cd into directory    \n\n```\ncd vue-graphql-appsync\n```\n\n3. install dependencies using npm or yarn    \n\n```\nyarn || npm install\n```\n\n4. create a new AppSync Project with the following schema:    \n\n[Video walkthrough](https://www.youtube.com/watch?v=0Xbt7VqkJNc) (replace Todo with Task, and fetchTodos with fetchTasks), or go to [AWS AppSync](https://aws.amazon.com/appsync/) if you already are familiar with how to create the correct schema.\n\n```\ninput CreateTaskInput {\n id: ID!\n name: String!\n completed: Boolean!\n}\ninput DeleteTaskInput {\n id: ID!\n}\ntype Mutation {\n createTask(input: CreateTaskInput!): Task\n updateTask(input: UpdateTaskInput!): Task\n deleteTask(input: DeleteTaskInput!): Task\n}\ntype Query {\n getTask(id: ID!): Task\n listTasks(first: Int, after: String): TaskConnection\n}\ntype Subscription {\n onCreateTask(id: ID, name: String, completed: Boolean): Task\n  @aws_subscribe(mutations: [\"createTask\"])\n onUpdateTask(id: ID, name: String, completed: Boolean): Task\n  @aws_subscribe(mutations: [\"updateTask\"])\n onDeleteTask(id: ID, name: String, completed: Boolean): Task\n  @aws_subscribe(mutations: [\"deleteTask\"])\n}\ntype Task {\n id: ID!\n name: String!\n completed: Boolean!\n}\ntype TaskConnection {\n items: [Task]\n nextToken: String\n}\ninput UpdateTaskInput {\n id: ID!\n name: String\n completed: Boolean\n}\nschema {\n query: Query\n mutation: Mutation\n subscription: Subscription\n}\n```\n\n5. update your credentials in `src/AppSync.js`    \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdabit3%2Fvue-graphql-appsync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdabit3%2Fvue-graphql-appsync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdabit3%2Fvue-graphql-appsync/lists"}