cherls

Results 2 comments of cherls

``` class Query(graphene.ObjectType): search = graphene.Field( SearchResult, query=graphene.String(required=True), filters=graphene.Argument(Filters, default_value={}) ) ``` Seems to work and produces ``` type Query { search(query: String!, filters: Filters = {}): SearchResult } ```...

@tlinhart Execution works fine for me with the following code. Note that the `filters` argument is missing on the `search` field. I think the error is something else in your...