ALEX DUVAL
17 - 09 -2019
GDG in the Alps
GRAph Query Language
Github - Coursera - Yelp - NY Times - Twitter - Shopify ...
XML
JSON
JSON
perf.
type Book {
title: String
author: Author
}
type Author {
name: String
books: [Book]
}
ID
String
Int
Boolean
Type
JSON
Date
...
get
post
websocket
fieldName:(root, args, context, info) => { result }
hello: () => {
return 'Hello world!';
},
type Tag {
title: String
tickets: [Ticket]
}
type Ticket {
name: String
tags: [Tag]
}
type Query{
allTags: [Tag]
post(id: ID): Tag
}
type Mutation {
createTag(title: String, ticket: String): Tag
}