GraphQL
[!TIP]
Just for those curious minds who always jump from one branch to another like mine:
You can find a good definition usually in glossary.
- Intro.
- Data types.
- A simple todo app written with GraphQL + ReactJS + Relay:
- Queries and mutations in depth.
- Let’s breakdown the query language a bit more.
- Functions provided by
graphql. - Document your GraphQL service API.
- GraphQL request lifecycle.
- Code-first approach.
- Auth.
- How to query information about a GraphQL schema.
- Improve developer experience.
- Security in GraphQL.
- NestJS.
- Query complexity.
- Query depth and complexity in one package.
- Write E2E tests for GraphQL.
- Nested field validation with
class-validatorin a GraphQL mutation. - In GraphQL we do not have union types, instead you can use
@oneOfdirective, learn more about it here. To see how you can do it in NestJS you can check mytestOneOfAPI.
- Subscription.
- Best practices.