All Projects → rse → graphql-tutorial

rse / graphql-tutorial

Licence: other
Tutorial for GraphQL

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to graphql-tutorial

Joi2gql
Conversion of Joi schemas into GraphQL data types
Stars: ✭ 11 (-54.17%)
Mutual labels:  schema, hapi
Real World Grading App
An example of a real-world REST API backend built with TypeScript, Hapi, Prisma, and PostgreSQL.
Stars: ✭ 105 (+337.5%)
Mutual labels:  orm, hapi
Joi
The most powerful data validation library for JS
Stars: ✭ 17,989 (+74854.17%)
Mutual labels:  schema, hapi
Awesome Python Models
A curated list of awesome Python libraries, which implement models, schemas, serializers/deserializers, ODM's/ORM's, Active Records or similar patterns.
Stars: ✭ 124 (+416.67%)
Mutual labels:  schema, orm
Framework
Strongly-typed JavaScript object with support for validation and error handling.
Stars: ✭ 136 (+466.67%)
Mutual labels:  schema, orm
felicity
Javascript object constructors and sample data based on Joi schema.
Stars: ✭ 107 (+345.83%)
Mutual labels:  schema, hapi
reach-schema
Functional schema-driven JavaScript object validation library.
Stars: ✭ 34 (+41.67%)
Mutual labels:  resolver, schema
schemaglue
Naturally breaks down your monolithic graphql schema into bits and pieces and then glue them back together.
Stars: ✭ 117 (+387.5%)
Mutual labels:  resolver, schema
eloquent-mongodb-repository
Eloquent MongoDB Repository Implementation
Stars: ✭ 18 (-25%)
Mutual labels:  orm
Sworm
CoreData based Swift ORM
Stars: ✭ 70 (+191.67%)
Mutual labels:  orm
ormdb
ORM tool for .Net / .Net.Core
Stars: ✭ 14 (-41.67%)
Mutual labels:  orm
haskell-schema
A library for describing Haskell data types and obtain free generators, JSON codecs, pretty printers, etc.
Stars: ✭ 16 (-33.33%)
Mutual labels:  schema
data-models
Collection of various biomedical data models in parseable formats.
Stars: ✭ 23 (-4.17%)
Mutual labels:  schema
sequelize-adapter
Sequelize adapter for Casbin
Stars: ✭ 51 (+112.5%)
Mutual labels:  orm
monalisa-orm
Very Simple ORM
Stars: ✭ 70 (+191.67%)
Mutual labels:  orm
craftql
A CLI tool to visualize GraphQL schemas and to output a graph data structure as a graphviz .dot format
Stars: ✭ 75 (+212.5%)
Mutual labels:  schema
Clockwork
A roleplaying framework developed by Cloud Sixteen for the people.
Stars: ✭ 37 (+54.17%)
Mutual labels:  schema
hapi-cron
🕰️ Cron jobs for internal hapi.js routes
Stars: ✭ 41 (+70.83%)
Mutual labels:  hapi
hapi-acl-auth
Authentication provider agnostic authorization plugin for HapiJS
Stars: ✭ 22 (-8.33%)
Mutual labels:  hapi
storm
🌐⚡️LocalStorage manager library for JavaScript
Stars: ✭ 14 (-41.67%)
Mutual labels:  orm

GraphQL Tutorial

This is a didactic introduction to GraphQL, starting from a simple Hello World to a network-based GraphQL server with a built-in GraphQL UI. It is provided in the form of a tutorial which step-by-step introduces more usage of GraphQL. Each tutorial step XX can be found in the file sample-XX and run with npm run sample-XX. The distinct tutorial steps are:

  1. just plain all-in-one GraphQL "Hello World"
  2. replaces GraphQL schema API calls with GraphQL schema definition language
  3. split GraphQL usage into distinct parts
  4. replace "Hello World" with an entity "OrgUnit" and enable schema/resolver warnings
  5. add "Person" entity and use a separate data store
  6. factor out resolver functionality into generic data access object functions
  7. add QueryEntityOne DAO method for querying particular objects
  8. allow relationships to be queried and be strict on resolvers now
  9. add remaining CRUD operations (create/clone, update, delete) to GraphQL entity types
  10. wrap GraphQL application programming interface (API) with a remote network interface (RNI)
  11. replace built-in client with interactive GraphQL web user interface (GraphiQL)
  12. add descriptions to GraphQL schema for introspection inside GraphiQL
  13. move data into SQLite RDBMS and access it with Sequelize ORM
  14. wrap mutations into a single RDBMS transaction
  15. support also GraphQL over Websocket communication
  16. add GraphQL Subscription support
  17. simplify and migrate to all-in-one GraphQL-IO framework

GraphQL Resources

The steadily growing GraphQL community has many resources. A few selected ones were hand-picked for you here.

GraphQL Community

GraphQL General

Tools

Cloud Services

Server SDK [JavaScript]

Client SDK [JavaScript]

Server or Client SDK [Others]

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].