Skip to content

Commit

Permalink
fix(filters): GraphQL Custom Filter Operator could be anything (#1562)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Jun 8, 2024
1 parent 7c61846 commit 5430486
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export interface GraphqlCustomFilteringOption {
field: string;

/** Custom Operator to use when filtering. Please note that any new Custom Operator must be implemented in your GraphQL Schema. */
operator: OperatorType | OperatorString;
operator: any;

/** Value to use when filtering */
value: any | any[];
Expand Down

0 comments on commit 5430486

Please sign in to comment.