graphql-pouch icon indicating copy to clipboard operation
graphql-pouch copied to clipboard

Support input types in custom query functions

Open MikeBild opened this issue 9 years ago • 0 comments

  • Support for input type in Query type
type Query {
  searchItems(input: SearchObject): [Items]
}

input SearchObject {
  title: String
  year: String
}

MikeBild avatar Dec 20 '16 15:12 MikeBild