graphql-api
graphql-api copied to clipboard
Example for field with interface type
There is no example for a field with an interface type, like
type Human implements Sentient {
name: String!
favouritePet: Pet
}
How must a handler for this be implemented?