packages feed

morpheus-graphql-client-0.20.0: test/Case/LocalGlobal/schema.gql

enum City {
  Athens
  Sparta
  Corinth
  delphi
  Argos
  Ithaca
}

input UserInput {
  name: ID!
}

type User {
  name: String!
  home: City
}

type Query {
  user(user: UserInput): User
  city(city: City!): City!
  cities: [City!]!
}