packages feed

morpheus-graphql-0.14.0: test/Rendering/schema.gql

enum TestEnum {
  EnumA
  EnumB
  EnumC
}

type Address {
  street: [[[[String!]!]!]]
}

input Coordinates {
  latitude: TestScalar!
  longitude: Int!
}

type User {
  type: String!
  address(coordinates: Coordinates!, type: String): Int!
  friend(id: ID!, cityID: TestEnum): User!
}

union TestUnion = User | Address

scalar TestScalar

type Query {
  user: User!
  testUnion: TestUnion
}