Fixed starwars relay tests schema representation

This commit is contained in:
Syrus Akbary 2016-09-08 20:32:24 -07:00
parent 907b34676d
commit c54b495b16

View File

@ -17,9 +17,9 @@ type Faction implements Node {
}
input IntroduceShipInput {
shipName: String!
factionId: String!
clientMutationId: String
factionId: String!
shipName: String!
}
type IntroduceShipPayload {
@ -28,7 +28,7 @@ type IntroduceShipPayload {
}
type Mutation {
introduceShip(input: IntroduceShipInput): IntroduceShipPayload
introduceShip(input: IntroduceShipInput!): IntroduceShipPayload
}
interface Node {