mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-13 13:16:49 +03:00
21 lines
213 B
GraphQL
21 lines
213 B
GraphQL
|
query {
|
||
|
empire {
|
||
|
id
|
||
|
name
|
||
|
ships(first:2) {
|
||
|
edges {
|
||
|
node {
|
||
|
id
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
node(id:"U2hpcDo4") {
|
||
|
id
|
||
|
... on Ship {
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
}
|