MikeBild / graphql-pouch

GraphQL runtime using PouchDB
MIT License
204 stars 13 forks source link

Support input types in custom query functions #21

Open MikeBild opened 7 years ago

MikeBild commented 7 years ago
type Query {
  searchItems(input: SearchObject): [Items]
}

input SearchObject {
  title: String
  year: String
}