packages feed

morpheus-graphql-client-0.20.1: test/Case/Enum/schema.gql

enum City {
  Athens
  Sparta
  Corinth
  # test lowercase enum
  delphi
  argos
}

enum Planet {
  Earth
}

type Query {
  city(city: City!): City!
  cities: [City!]!
  planets: [Planet!]!
}