Hi,
i want to search an Vertex with the Graph API. I read that with an Fulltext Index an case insensitive text search is possible, but i don't know how i do that with the Graph API.
It seems like, that it is possible to specify an comparator or matching function, but i dont now how to use it. Where is the EQUALS Object specified?
Is something like the following possible?
conn.getGraph().query().has("class", "LexicalVariant").has("name", CONTAINS, ingredientName)
Or do i have to do it with an SQL-Query through the Document API?
Thanks for your help
Marius