14 lines
134 B
GraphQL
Raw Normal View History

2017-07-07 20:26:01 +01:00
schema {
query: Query
mutation: Calc
}
type Calc {
sum(x: Int, y: Int): Int
}
type Query {
echo(message: String): String
}