Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/webonyx/graphql-php/examples/02-shorthand/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/webonyx/graphql-php/examples/02-shorthand/schema.graphqls

schema {
  query: Query
  mutation: Calc
}

type Calc {
  sum(x: Int, y: Int): Int
}

type Query {
  echo(message: String): String
}