mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 12:16:58 +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
|
|
}
|
|
}
|
|
}
|