schema.graphqls 134 B

12345678910111213
  1. schema {
  2. query: Query
  3. mutation: Calc
  4. }
  5. type Calc {
  6. sum(x: Int, y: Int): Int
  7. }
  8. type Query {
  9. echo(message: String): String
  10. }