{"id":39711989,"url":"https://github.com/monmaru/gae-graphql","last_synced_at":"2026-01-18T10:39:16.301Z","repository":{"id":57695711,"uuid":"160825013","full_name":"monmaru/gae-graphql","owner":"monmaru","description":null,"archived":false,"fork":false,"pushed_at":"2018-12-16T08:53:50.000Z","size":67,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-22T21:05:12.119Z","etag":null,"topics":["appengine","datastore","golang","graphql"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/monmaru.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-12-07T13:06:53.000Z","updated_at":"2021-03-24T04:29:22.000Z","dependencies_parsed_at":"2022-09-06T11:10:38.175Z","dependency_job_id":null,"html_url":"https://github.com/monmaru/gae-graphql","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/monmaru/gae-graphql","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monmaru%2Fgae-graphql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monmaru%2Fgae-graphql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monmaru%2Fgae-graphql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monmaru%2Fgae-graphql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/monmaru","download_url":"https://codeload.github.com/monmaru/gae-graphql/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/monmaru%2Fgae-graphql/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28534571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T10:13:46.436Z","status":"ssl_error","status_checked_at":"2026-01-18T10:13:11.045Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["appengine","datastore","golang","graphql"],"created_at":"2026-01-18T10:39:15.718Z","updated_at":"2026-01-18T10:39:16.291Z","avatar_url":"https://github.com/monmaru.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gae-graphql\n\n## Deploy\n\n### Create Datastore indexes\n`gcloud datastore indexes create index.yaml`\n\n### Deploy App Engine\n`gcloud app deploy`\n\n## Local debugging\n\n### Running the Cloud Datastore Emulator\nhttps://cloud.google.com/datastore/docs/tools/datastore-emulator\n\n### Run\n`go run server.go`\n\n## How to use\n\n### 1. Creating users\nPOST\n```\nmutation {\n  taro: createUser(name: \"Taro\", email: \"taro@gmail.com\") {\n    id\n    name\n  }\n  jiro: createUser(name: \"Jiro\", email: \"jiro@gmail.com\") {\n    id\n    name\n  }\n}\n```\n\n### 2. Creating blogs\nPOST\n```\nmutation {\n  a: createBlog(userId: \"5153049148391424\", title: \"title1\", content: \"Hello World!\") {\n    id\n    title\n    content\n  }\n  b: createBlog(userId: \"5153049148391424\", title: \"title2\", content: \"good morning\") {\n    id\n    title\n    content\n  }\n  c: createBlog(userId: \"5635703144710144\", title: \"title3\", content: \"GraphQL is nice\") {\n    id\n    title\n    content\n  }\n}\n```\n\n### 3. Query blogs with limit and offset\nPOST\n```\n{\n  blogs(limit: 1, offset: 1) {\n    totalCount\n    nodes {\n      id\n      title\n      content\n      createdAt\n    }\n  }\n}\n```\n\n### 4. Query user by user id\nPOST\n```\n{\n  user(id: \"5715161717407744\") {\n    name\n    email\n    posts {\n      totalCount\n      nodes {\n        title\n        content\n      }\n    }\n  }\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonmaru%2Fgae-graphql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmonmaru%2Fgae-graphql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonmaru%2Fgae-graphql/lists"}