type Kwery {
ping: Pong
}
enum Pong {
Yes
NO
}
type Myutation {
recordScore(score: Int): Boolean
}
# --- #
schema {
query: Kwery
mutation: Myutation
}
type Kwery {
ping: Pong
}
enum Pong {
Yes
NO
}
type Myutation {
recordScore(score: Int): Boolean
}