Closed as not planned
Description
Product
Hot Chocolate
Version
13.9.1
Link to minimal reproduction
tbd
Steps to reproduce
public class MyTypeFilterType : FilterInputType<MyType>
{
protected override void Configure(IFilterInputTypeDescriptor<MyType> descriptor)
{
descriptor.Ignore(DefaultFilterOperations.Equals); // not working
descriptor.Operation(DefaultFilterOperations.Equals).Type<StringType>().Ignore(); // not working
descriptor.Operation(DefaultFilterOperations.Equals).Type<StringOperationFilterInputType>().Ignore(); // not working
}
}
What is expected?
I would like to be able to ignore operations in the filter definition.
What is actually happening?
Operations are not ignored.
Relevant log output
No response
Additional context
No response