graphene/docs/playground/examples/starwars_relay.graphql

21 lines
213 B
GraphQL
Raw Normal View History

2015-11-30 13:31:17 +03:00
query {
empire {
id
name
ships(first:2) {
edges {
node {
id
name
}
}
}
}
node(id:"U2hpcDo4") {
id
... on Ship {
name
}
}
}