-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(GraphQL): Added error for case when multiple filter functions are…
… used in filter. (#7368) we were having indeterministic behavior in the filter when we have multiple filter functions as below . query { queryFoo(filter:{value:{eq:2 le:2}}) { value } } It was because we were selecting the first filter function from the list of functions whose order is not guaranteed. Now we are returning an error for this. (cherry picked from commit de2f4ab)
- Loading branch information
1 parent
c86ca46
commit cc35e41
Showing
3 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters