Hi all, i'm new in the typesense world. Currently ...
# community-help
r
Hi all, i'm new in the typesense world. Currently i'm implementing the search in shopware 6 and i have got one understanding problem. It is correct, that we can't negate a bracket part? for example:
fieldA:=1 && !(fieldB:=2 && fieldC:=3)
And it is correct, that typesense doesn't support a
NULL
value? Currently i'm using a NULL string for that. Version:
typesense/typesense:0.24.1
k
Correct, there is no negation operator on the whole
( )
block. And
null
values are just not indexed, so it's not possible to filter on them since they don't exist in the index.
1