morpheus-graphql-0.4.0: test/Rendering/schema.gql
enum TestEnum {
EnumA
EnumB
EnumC
}
input Coordinates {
latitude: TestScalar!
longitude: Int!
}
union TestUnion = User | Address
type Address {
street: [[[[String!]!]!]]
}
type User {
type: String!
address(coordinates: Coordinates!, type: String): Int!
friend(id: ID! , cityID: TestEnum): User!
}
type Query {
user: User!
testUnion: TestUnion
}