You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, one can either allowAllFilters on graph level (which affects all queries), or allowAllFilters on model level (which affects resolving nested fields of that model).
I would like to allow filters on a certain model itself. Say if enable it for Book model, all queries to books (root queries and when books are a nested field of some other model) should be allowed to be filtered.
Proposed syntax:
exportconstBook=r.table(db.book,{filters: true})
The text was updated successfully, but these errors were encountered:
Currently, one can either
allowAllFilters
on graph level (which affects all queries), orallowAllFilters
on model level (which affects resolving nested fields of that model).I would like to allow filters on a certain model itself. Say if enable it for Book model, all queries to books (root queries and when books are a nested field of some other model) should be allowed to be filtered.
Proposed syntax:
The text was updated successfully, but these errors were encountered: