{"id":23209101,"url":"https://github.com/kasir-barati/graphql-js-ts","last_synced_at":"2025-06-18T11:39:47.786Z","repository":{"id":262819272,"uuid":"888411150","full_name":"kasir-barati/graphql-js-ts","owner":"kasir-barati","description":"Where you can learn all about GraphQL and its intricacies","archived":false,"fork":false,"pushed_at":"2025-05-29T14:53:05.000Z","size":11216,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-29T15:59:38.980Z","etag":null,"topics":["documentation","graphql","js","monorepo","nx","ts","tutorial"],"latest_commit_sha":null,"homepage":"https://kasir-barati.github.io/graphql-js-ts/","language":"TypeScript","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/kasir-barati.png","metadata":{"files":{"readme":".github/README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"docs/security.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-11-14T10:58:21.000Z","updated_at":"2025-05-29T14:53:08.000Z","dependencies_parsed_at":"2024-11-14T18:31:13.762Z","dependency_job_id":"9407b94a-77fa-47cc-a041-a15bd1981fe9","html_url":"https://github.com/kasir-barati/graphql-js-ts","commit_stats":null,"previous_names":["kasir-barati/graphql","kasir-barati/graphql-js-ts"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kasir-barati/graphql-js-ts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kasir-barati%2Fgraphql-js-ts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kasir-barati%2Fgraphql-js-ts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kasir-barati%2Fgraphql-js-ts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kasir-barati%2Fgraphql-js-ts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kasir-barati","download_url":"https://codeload.github.com/kasir-barati/graphql-js-ts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kasir-barati%2Fgraphql-js-ts/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260546226,"owners_count":23025900,"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","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":["documentation","graphql","js","monorepo","nx","ts","tutorial"],"created_at":"2024-12-18T18:14:35.648Z","updated_at":"2025-06-18T11:39:42.742Z","avatar_url":"https://github.com/kasir-barati.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e [!CAUTION]\n\u003e\n\u003e Keep this file in sync with [`index.md`](../index.md).\n\n# GraphQL\n\n\u003e [!TIP]\n\u003e\n\u003e Just for those curious minds who always jump from one branch to another like mine:\n\u003e\n\u003e - [Hasura](../docs/hasura.md)\n\u003e - [GraphQL VS REST](https://www.apollographql.com/blog/graphql-vs-rest).\n\u003e - [Testing GraphQL API](../docs/testing-graphql.md)\n\nYou can find a good definition usually in [glossary](../docs/glossary.md).\n\n1. [Intro](../docs/intro.md).\n2. [Data types](../docs/data-types.md).\n3. A simple todo app written with GraphQL + ReactJS + Relay:\n   - [Backend](../apps/todo-backend/README.md).\n   - [Frontend]() TK.\n4. [Queries and mutations in depth](../docs/queries-and-mutations.md).\n5. [Let's breakdown the query language a bit more](../docs/graphql-query-language-breakdown.md).\n6. [Functions provided by `graphql`](../docs/function-provided-by-graphql.md).\n7. [Document your GraphQL service API](../docs/documentation.md).\n8. [GraphQL request lifecycle](../docs/graphql-req-lifecycle.md).\n   - [Common validation errors](../docs/common-errors.md).\n   - [Execution from inside, resolver's args, AST, ...](../docs/execution-from-inside.md)\n9. [Code-first approach](../docs/code-first.md).\n10. [Auth](../docs/auth.md).\n11. [How to query information about a GraphQL schema](../docs/introspection.md).\n12. [Improve developer experience](../docs/improve-dev-exp/index.md).\n    - [IoC -- Inversion of Control principle](../docs/improve-dev-exp/ioc.md).\n    - [Use a `schema.graphql` file](../docs/improve-dev-exp/use-schema-graphql-files.md)\n    - [Strongly typed resolvers, context, ...](../docs/improve-dev-exp/strongly-typed.md).\n    - [Filtering using `prisma-nestjs-graphql`](../docs/improve-dev-exp/filtering-using-prisma-nestjs-graphql.md).\n13. [Security in GraphQL](../docs/security.md).\n14. [NestJS](../docs/nestjs.md).\n    - [Query complexity](../docs/nestjs.md#query-complexity).\n    - [Query depth and complexity in one package](../docs/best-practices/query-depth-and-complexity.md).\n15. [Subscription](../docs/subscription.md).\n16. [Best practices](../docs/best-practices/index.md).\n    - [Serve over HTTP](../docs/best-practices/serve-over-http.md).\n    - [Compress your request/response with GZIP](../docs/best-practices/compress-your-req-res-with-gzip.md).\n    - [Avoid versioning](../docs/best-practices/avoid-versioning.md).\n    - [Most of the times fields are nullable](../docs/best-practices/most-of-the-times-fields-are-nullable.md).\n    - [Pagination](../docs/best-practices/pagination.md).\n    - [Communication with a GraphQL service](../docs/best-practices/communication-with-a-graphql-service.md).\n    - [Batching](../docs/best-practices/batching.md).\n    - [Caching](../docs/best-practices/caching.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkasir-barati%2Fgraphql-js-ts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkasir-barati%2Fgraphql-js-ts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkasir-barati%2Fgraphql-js-ts/lists"}