All Projects โ†’ Novvum โ†’ 36 Graphql Concepts

Novvum / 36 Graphql Concepts

๐Ÿ“œ 36 concepts every GraphQL developer should know.

Projects that are alternatives of or similar to 36 Graphql Concepts

Morpheus Graphql
Haskell GraphQL Api, Client and Tools
Stars: โœญ 285 (+36.36%)
Mutual labels:  graphql, graphql-server, graphql-api, graphql-subscriptions, graphql-client
Hotchocolate
Welcome to the home of the Hot Chocolate GraphQL server for .NET, the Strawberry Shake GraphQL client for .NET and Banana Cake Pop the awesome Monaco based GraphQL IDE.
Stars: โœญ 3,009 (+1339.71%)
Mutual labels:  graphql, graphql-server, graphql-schema, graphql-client
Fullstack Graphql
๐ŸŒˆ Simple Fullstack GraphQL Application. API built with Express + GraphQL + Sequelize (supports MySQL, Postgres, Sqlite and MSSQL). WebApp built with React + Redux to access the API. Written in ES6 using Babel + Webpack.
Stars: โœญ 955 (+356.94%)
Mutual labels:  graphql, graphql-server, graphql-schema, graphql-client
Graphql2rest
GraphQL to REST converter: automatically generate a RESTful API from your existing GraphQL API
Stars: โœญ 181 (-13.4%)
Mutual labels:  graphql, graphql-server, graphql-api, graphql-schema
Grial
A Node.js framework for creating GraphQL API servers easily and without a lot of boilerplate.
Stars: โœญ 194 (-7.18%)
Mutual labels:  graphql, graphql-server, graphql-api, graphql-subscriptions
Altair
โœจโšก๏ธ A beautiful feature-rich GraphQL Client for all platforms.
Stars: โœญ 3,827 (+1731.1%)
Mutual labels:  graphql, graphql-server, graphql-subscriptions, graphql-client
Gqlify
[NOT MAINTAINED]An API integration framework using GraphQL
Stars: โœญ 182 (-12.92%)
Mutual labels:  graphql, graphql-server, graphql-api, graphql-client
Typegql
Create GraphQL schema with TypeScript classes.
Stars: โœญ 415 (+98.56%)
Mutual labels:  graphql, graphql-server, graphql-api, graphql-schema
Graphql Stack
A visual explanation of how the various tools in the GraphQL ecosystem fit together.
Stars: โœญ 117 (-44.02%)
Mutual labels:  graphql, graphql-server, graphql-api, graphql-client
Graphql Spqr Spring Boot Starter
Spring Boot 2 starter powered by GraphQL SPQR
Stars: โœญ 187 (-10.53%)
Mutual labels:  graphql, graphql-server, graphql-api
Storefront Api
Storefront GraphQL API Gateway. Modular architecture. ElasticSearch included. Works great with Magento1, Magento2, Spree, OpenCart, Pimcore and custom backends
Stars: โœญ 180 (-13.88%)
Mutual labels:  graphql, graphql-server, graphql-api
Gramps Legacy
The core data source combination engine of GrAMPS.
Stars: โœญ 198 (-5.26%)
Mutual labels:  graphql, graphql-server, graphql-schema
Rails Devise Graphql
A Rails 6 boilerplate to create your next Saas product. Preloaded with graphQL, devise, JWT, CanCanCan, RailsAdmin, Rubocop, Rspec, i18n and more.
Stars: โœญ 199 (-4.78%)
Mutual labels:  graphql, graphql-server, graphql-api
Graphql Transform Schema
Transform, filter & alias resolvers of a GraphQL schema
Stars: โœญ 84 (-59.81%)
Mutual labels:  graphql, graphql-server, graphql-schema
Daptin
Daptin - Backend As A Service - GraphQL/JSON-API Headless CMS
Stars: โœญ 1,195 (+471.77%)
Mutual labels:  graphql, graphql-server, graphql-api
Locksmith
Want to use GraphQL with Clojure/script but don't want keBab or snake_keys everywhere? Use locksmith to change all the keys!
Stars: โœญ 59 (-71.77%)
Mutual labels:  graphql, graphql-server, graphql-client
Graphql Log
Add logging to your GraphQL resolvers so you know what's going on in your app.
Stars: โœญ 94 (-55.02%)
Mutual labels:  graphql, graphql-server, graphql-schema
Qlens
QLens is an electron app which dynamically generates GraphQL Schemas and Mongo Schema visualization. QLens significantly cuts development time by automating the formation of their GraphQL schemas based on information fetched from their non-relational database.
Stars: โœญ 110 (-47.37%)
Mutual labels:  graphql, graphql-server, graphql-client
Go Proto Gql
Protobuff plugins for generating graphql schema and golang to graphql bindings. Also supports a graphql gateway (Alpha)
Stars: โœญ 127 (-39.23%)
Mutual labels:  graphql, graphql-server, graphql-schema
Hangzhou Graphql Party
ๆญๅทž GraphQLParty ๅพ€ๆœŸ่ฎฐๅฝ•๏ผˆslide๏ผŒ็…ง็‰‡๏ผŒ้ข„ๅ‘Š๏ผŒ่ง†้ข‘็ญ‰๏ผ‰
Stars: โœญ 142 (-32.06%)
Mutual labels:  graphql, graphql-server, graphql-api



36 Concepts Every GraphQL Developer Should Know

Introduction

This repository was created with the intention of helping developers master their concepts in GraphQL. It is not a requirement, but a guide for future studies.

Credit to @leonardomso's 33 JS Concepts Project for the inspiration.

Thanks to @kelseyyim for getting this started!

Community

Feel free to submit a PR adding a link to your own recaps or reviews. If you want to translate the repo into your native language, please feel free to do so.

All the translations for this repo will be listed below:


Table of Contents

Specs

  1. Queries
  2. Mutations
  3. Subscriptions
  4. Types
  5. Fields
  6. Root Field
  7. Relationships
  8. Introspection
  9. Arguments
  10. Union Types
  11. Interface Types
  12. Directives
  13. Type Extensions
  14. Relay Specification
  15. Schema Definition Language
  16. GraphQLSchema Object

Server

  1. Setting up a server
  2. Schema
  3. Resolvers
  4. Context
  5. Info Object
  6. Databases
  7. Dataloader
  8. Entry Points
  9. Schema Stitching
  10. SDL First
  11. Code First
  12. Middleware

Client

  1. Fetching
  2. Fragments
  3. Variables
  4. Alias
  5. Polling
  6. Cache

Best Practices

  1. Schema Design
  2. Pagination
  3. Logging

Specs

1. Queries

Articles

Videos

โฌ† Back to Top

2. Mutations

Articles

Videos

โฌ† Back to Top

3. Subscriptions

Articles

Videos

โฌ† Back to Top

4. Types

Articles

Videos

โฌ† Back to Top

5. Fields

Articles

โฌ† Back to Top

6. Root Field

Articles

Videos

โฌ† Back to Top

7. Relationships

Articles

Videos

โฌ† Back to Top

8. Introspection

Articles

โฌ† Back to Top

9. Arguments

Articles

Videos

โฌ† Back to Top

10. Union Types

Articles

โฌ† Back to Top

11. Interface Types

Articles

โฌ† Back to Top

12. Directives

Articles

Videos

โฌ† Back to Top

13. Type Extension

Articles

Videos

โฌ† Back to Top

14. Relay Specification

Articles

โฌ† Back to Top

15. Schema Definition Language - SDL

Articles

โฌ† Back to Top

16. GraphQLSchema object

Articles

โฌ† Back to Top


Server

17. Setting Up a Server

Articles

Videos

โฌ† Back to Top

18. Schema

Articles

Videos

โฌ† Back to Top

19. Resolvers

Articles

Videos

โฌ† Back to Top

20. Context

Articles

โฌ† Back to Top

21. Info Object

Articles

โฌ† Back to Top

22. Databases

Articles

Videos

โฌ† Back to Top

23. Dataloader

Articles

Videos

โฌ† Back to Top

24. Entry Points

Articles

Videos

โฌ† Back to Top

25. Schema Stitching

Articles

Videos

โฌ† Back to Top

26. SDL First

Articles

Videos

โฌ† Back to Top

27. Code First

Articles

โฌ† Back to Top

28. Middleware

Articles

Videos

โฌ† Back to Top


Client

29. Fetching

Articles

Videos

โฌ† Back to Top

30. Fragments

Articles

Videos

โฌ† Back to Top

31. Variables

Articles

Videos

โฌ† Back to Top

32. Alias

Articles

Videos

โฌ† Back to Top

33. Polling

Articles

โฌ† Back to Top

34. Cache

Articles

Videos

โฌ† Back to Top


Best Practices

35. Schema Design

Articles

Videos

โฌ† Back to Top

36. Pagination

Articles

โฌ† Back to Top

37. Logging

Articles

โฌ† Back to Top

Contributors

Thanks goes to these wonderful people (emoji key):

Kelsey Yim
Kelsey Yim

๐Ÿšง
Rohit Ravikoti
Rohit Ravikoti

๐Ÿšง
Alli Colyer
Alli Colyer

๐Ÿ–‹
Raj K Singh
Raj K Singh

๐Ÿ–‹
Jorge Carlos
Jorge Carlos

๐Ÿ–‹
Henry Yang
Henry Yang

๐Ÿ–‹
TrevHeath
TrevHeath

๐Ÿ–‹

This project follows the all-contributors specification. Contributions of any kind welcome!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].