Product
Hot Chocolate
Version
16.0.2
Link to minimal reproduction
in dev right now
Steps to reproduce
I love this project, however, using HotChocolate.AspNetCore version 16.0.2, the documentation located here (https://chillicream.com/docs/hotchocolate/v16/fetching-data/integrations/extending-filtering/) does not compile. I have changed the code to be like below, but it just doesn't work. Help.
What is expected?
The sample code on the web page should work.
What is actually happening?
Right now, the sample code does not compile.
Relevant log output
Additional context
No response
This does NOT work, but it complies.
protected override void Configure(IFilterConventionDescriptor descriptor)
{
descriptor.AddDefaults();
descriptor.Provider(
new QueryableFilterProvider(
x => x
.AddDefaultFieldHandlers()
.AddFieldHandler(y => new QueryableStringInvariantEqualsHandler(y.InputParser))));
}
}`
Product
Hot Chocolate
Version
16.0.2
Link to minimal reproduction
in dev right now
Steps to reproduce
I love this project, however, using HotChocolate.AspNetCore version 16.0.2, the documentation located here (https://chillicream.com/docs/hotchocolate/v16/fetching-data/integrations/extending-filtering/) does not compile. I have changed the code to be like below, but it just doesn't work. Help.
What is expected?
The sample code on the web page should work.
What is actually happening?
Right now, the sample code does not compile.
Relevant log output
Additional context
No response
This does NOT work, but it complies.