Feature Idea (one per thread):
Add additional type to predicate to enable query by boolean value in .NET Core package. Currently the Predicate only only accepts string. This functionality appears to be available for ReactJS (https://prismic.io/docs/reactjs/query-the-api/query-by-a-field) but not .NET (https://prismic.io/docs/dotnet/query-the-api/how-to-query-the-api-dotnet)
Code will look like below when implemented.
prismic.Predicates.at('my.post.switch', true),
Issue that it solves:
Reduces payload from the Api and reduces number of articles pulled into memory which then need to be filtered out from the results.