mirror of
https://github.com/graphql-python/graphene.git
synced 2025-03-10 15:05:47 +03:00
Fixed snapshot
This commit is contained in:
parent
7f33fbe638
commit
eff882e5a5
|
@ -63,20 +63,20 @@ type Faction implements Node {
|
||||||
ships(before: String, after: String, first: Int, last: Int): ShipConnection
|
ships(before: String, after: String, first: Int, last: Int): ShipConnection
|
||||||
}
|
}
|
||||||
|
|
||||||
type IntroduceShip {
|
|
||||||
ship: Ship
|
|
||||||
faction: Faction
|
|
||||||
clientMutationId: String
|
|
||||||
}
|
|
||||||
|
|
||||||
input IntroduceShipInput {
|
input IntroduceShipInput {
|
||||||
shipName: String!
|
shipName: String!
|
||||||
factionId: String!
|
factionId: String!
|
||||||
clientMutationId: String
|
clientMutationId: String
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type IntroduceShipPayload {
|
||||||
|
ship: Ship
|
||||||
|
faction: Faction
|
||||||
|
clientMutationId: String
|
||||||
|
}
|
||||||
|
|
||||||
type Mutation {
|
type Mutation {
|
||||||
introduceShip(input: IntroduceShipInput!): IntroduceShip
|
introduceShip(input: IntroduceShipInput!): IntroduceShipPayload
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Node {
|
interface Node {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user