By Kevin Greene
Facebook has all of our data
(but with GraphQL)
This would be very easy to hold
type User {
name: String!
memberOf: [Meetup]!
}
type Meetup {
name: String!
}Official GraphQL Syntax
Types::ProfileType = GraphQL::ObjectType.define do
name "Profile"
field :id, !types.ID
field :name, !types.String
field :avatar, Types::PhotoType
endProgramming Language Specific Syntax
npm install -g postgraphile
postgraphileJust a DB!
Relay
Here's Jason Swett!