I am having trouble to build a query using that library. In the empty node I just have a disjunct.
Node empty = disjunct("browsers", value("browsername*"));
result = union(empty, whiteScenary, blackScenary);
When i build the query i get the following...
(-@browsers:browsername*|(@browsers:browsername_chrome))
This is not finding anything, it just finds when I add the parenthesis sorrounding the disjunct part.
((-@browsers:browsername*)|(@browsers:browsername_chrome))
Is there any way we can fix this to continue using the queryBuilder?
I am having trouble to build a query using that library. In the empty node I just have a disjunct.
Node empty = disjunct("browsers", value("browsername*"));
result = union(empty, whiteScenary, blackScenary);
When i build the query i get the following...
(-@browsers:browsername*|(@browsers:browsername_chrome))
This is not finding anything, it just finds when I add the parenthesis sorrounding the disjunct part.
((-@browsers:browsername*)|(@browsers:browsername_chrome))
Is there any way we can fix this to continue using the queryBuilder?