Darrel O'Pry
Darrel O'Pry
When querying sites { pages {} } grapple enforces a hard limit on the number of responses returned. When you get a response there is not indication that there are...
I just ran into an issue with https://github.com/wagtail/wagtail/pull/9605 I have a field definition like ``` categories = graphene.List(SnippetTypes.get_object_type()) ``` My graphql interface started spitting out the error ``` lib\site-packages\graphene\types\schema.py", line...
Add parameters for search_operator and search_fields when search is enabled on a query.
Headless builders typically represent a single site and they know which site that is. Currently headless sites need to parse url_path to stripe out the 'site path' from a given...
Initially I foundy myself confused by the difference between grapple and wagtail grapple. I had to pip install wagtail-grapple, but then import grapple in my code. It would be nice...
The structures PositiveInt, QuerySetList, TagList, PaginationType, BasePaginatedType and type factory PaginatedQuerySet should be documented in docs/general-usage/graphql-types.rst and how they are used by the decorators should be documented in docs/general-usage/decorators.rst. This...
In wagtail I have a site, `example.com`, setup. The root page is Example located at `/example.` When I query the pages over graphql they all come back with the urlPath...
I as passing a qs.sort('date') to grapple, but hadn't added FilterField("date") to the model and I was getting a response with none, rather than raising an error. An exception was...
Many of the tests are currently organized around the features of the example site (test_blog, test_general, etc) and not really around the features of the grapple library. There are multiple...
It would be nice to be able to query the [annotated search score](https://docs.wagtail.org/en/stable/topics/search/searching.html#annotating-results-with-score) on queries like `{ pages(searchQuery: "keyword") { ... } }` When searchQuery isn't provided it would return...