Breakdown: History and about/why it matters General concepts Short Demo - how to get started Other tools of interest.
- Schema
- Subscription
- Mutations
- Queries
https://hasura.io/ Just to get us moving quickly. Sets up a GraphQL endpoint on a Postgres database.
We're going to use Heroku... Follow the instructions here (set up a Heroku account if you don't already have one): https://docs.hasura.io/1.0/graphql/manual/getting-started/heroku-simple.html
Post deployment: Example: https://gql-postgres.herokuapp.com/console
var express = require('express');
var app = express();
//adding the apolloServer
const { ApolloServer, gql } = require('apollo-server-express');
//schema
const typeDefs = gql`
type Query {
books:[Book]
book: Book
}
type Book {
title: String!
author: String!
published: Int!
}
`;
// resolvers - this is the function that says how to get the data!
const resolvers = {
Query: {
books: () => books,
book: () => {
return {
title: 'A System Of Logic',
author: 'John Stewart Mill',
published: 1876
}
}
}
}
// this is the Apollo server - passing the typeDefs (i.e. Schema, and resolvers)
const server = new ApolloServer({
typeDefs,
resolvers
});
//use the middleware to attach
server.applyMiddleware( {app} );
Types (scalar):
- ID
- Int
- Float
- String
- Boolean
Types can also be Objects... (Examples):
- People
- Car
- Book
These types can have modifiers:
-
String = nullable string
-
String! = non-nullable
-
[String] = List of nullables
-
[String]! = non-nullable list of nullable strings 😊
-
[String!]! = non-nullable list of non-nullable strings
Lets Build a Schema (typeDef in Apollo Server language):
This is a Query...
/* remember - resolvers are the functions to
tell you how to get your data
*/
const resolvers = {}
gql`
Query: {
books: () => books
}
This is the Type...
Type User {
Id: ID
Name: String!
Email: String!
}
`
-
Code Sandbox: https://codesandbox.io/s/apollo-server [ build queries w/ hasura.io backend]
-
http://localhost:3000/graphql (expressjs) - this is with Apollo – Graphqli
-
https://developer.github.com/v4/ | https://developer.github.com/v4/explorer/
-
Awesome GraphQL: https://github.com/chentsulin/awesome-graphql
-
Spacecloud: https://github.com/edmooney/space-cloud create Graphgl resources from an existing database. Supports: Postgres, Mongo, MySQL
-
Swagger to GraphQL: https://github.com/yarax/swagger-to-graphql
-
Alternatives: Vulcain (REST Push model) : https://github.com/dunglas/vulcain
-
Netflix Falcor: https://netflix.github.io/falcor/
-
Moving from REST to GraphQL: https://medium.com/open-graphql/moving-existing-api-from-rest-to-graphql-205bab22c184
-
GraphQL Core Concepts: https://www.howtographql.com/basics/2-core-concepts/
-
GraphQL data sources: https://github.com/APIs-guru/graphql-apis
-
Apollo Tutorial: Apollo Tutorial: https://www.apollographql.com/docs/tutorial/introduction/
-
GraphQL Playground: https://github.com/prisma-labs/graphql-playground
-
Using a Database - Just one of the options: https://typeorm.io/
-
Implement your REST interface in graphql: https://www.roytuts.com/wrap-rest-api-with-graphql-in-node-js/
-
GraphQL Conf: https://www.youtube.com/watch?reload=9&v=AIMOkj1ohaU&feature=youtu.be&t=461
-
GraphQL history: https://www.youtube.com/watch?v=783ccP__No8