Skip to content

Commit

Permalink
fix: ILIKE is no valid MySQL syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Silas Rosenkranz committed May 26, 2023
1 parent 327300e commit 8f86c1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/filters-deep/e2e/users.resolver.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,20 +104,20 @@ describe('UsersResolver (filters-deep - e2e)', () => {
filter: {
# "John Doe", "Jane Doe", "Post 1 Only", "Post 2 Only", "Post 3 Only", "Post 4 Only", "Post 5 Only", "Post 6 Only"
firstName: {
iLike: "%%"
like: "%"
}
# "John Doe", "Jane Doe", "Post 1 Only", "Post 2 Only", "Post 3 Only", "Post 4 Only", "Post 5 Only", "Post 6 Only"
and: [
{
lastName: {
iLike: "%%"
like: "%"
}
},
{
firstName: {
iLike: "%%"
like: "%"
}
}
]
Expand Down

0 comments on commit 8f86c1b

Please sign in to comment.