graphql-pouch
graphql-pouch copied to clipboard
Support input types in custom query functions
- Support for input type in Query type
type Query {
searchItems(input: SearchObject): [Items]
}
input SearchObject {
title: String
year: String
}