-
-
Notifications
You must be signed in to change notification settings - Fork 747
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filter Visitor Queryable Boolean and Comparable #861
Conversation
Expression.Property(instance, operation.Property); | ||
var parsedValue = type.ParseLiteral(value); | ||
|
||
if (operation.Property.PropertyType |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@PascalSenn I added this converse here since the scalar value might not match the property type.
@@ -7,18 +7,45 @@ namespace HotChocolate.Types.Filters | |||
{ | |||
public static class FilterObjectFieldDescriptorExtensions | |||
{ | |||
public static IObjectFieldDescriptor<T> UseFilter<T>( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I also added a new UseFilter here that now is able to infer the type from the property.
Adds Queryable support for Boolean and Comparables.
Also adds missing string filters