You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating query groups directly after the where-directive the groups are not created correctly, but if adding some dummy filter before adding groups it works as expected (examples below).
Steps to Reproduce
In my case I have a collection of products with name and brand (and some other fields). I have a use-case where I want to search for a tokenised string, for instance "first second" and look for matches in either name or brand for each word in the string.
The idea was to create an Isar query that resembles the following pseudo SQL:
WHERE
(name CONTAINS 'first'OR brand CONTAINS 'first')
AND
(name CONTAINS 'second'OR brand CONTAINS 'second')
The generated query however is equivalent to the following pseudo SQL:
WHERE
name CONTAINS 'first'OR (
brand CONTAINS 'first'AND (
name CONTAINS 'second'OR brand CONTAINS 'second'
)
)
Code sample
Code that does not give the expected result:
final result = isar.products
.where()
.group((q) => q.nameContains('first').or().brandContains('first'))
.and()
.group((q) => q.nameContains('second').or().brandContains('second'))
.findAll();
Workaround (note the added nameIsNotEmpty()):
final result = isar.products
.where()
.nameIsNotEmpty()
.group((q) => q.nameContains('first').or().brandContains('first'))
.and()
.group((q) => q.nameContains('second').or().brandContains('second'))
.findAll();
In my case it was easy to create the workaround because the name will never be empty, so it's like adding a 1 = 1 in SQL.
Details
Platform: moto g(9) plus (XT2087-2), Android
Flutter version: 3.22.2
Isar version: 4.0.3
The text was updated successfully, but these errors were encountered:
When creating query groups directly after the where-directive the groups are not created correctly, but if adding some dummy filter before adding groups it works as expected (examples below).
Steps to Reproduce
In my case I have a collection of products with name and brand (and some other fields). I have a use-case where I want to search for a tokenised string, for instance "first second" and look for matches in either name or brand for each word in the string.
The idea was to create an Isar query that resembles the following pseudo SQL:
The generated query however is equivalent to the following pseudo SQL:
Code sample
Code that does not give the expected result:
Workaround (note the added
nameIsNotEmpty()
):In my case it was easy to create the workaround because the name will never be empty, so it's like adding a
1 = 1
in SQL.Details
The text was updated successfully, but these errors were encountered: