You can customize your search by using and combining different search operators and terms together.
Operator |
Description |
AND |
A logical operator which joins together two statements that must both be true for a Node to be returned by the search |
OR |
A logical operator which joins together two statements that can either be true for a Node to be returned by the search |
NOT |
A logical operator which tests if something is not true (e.g. NOT department: HR) |
() |
Brackets can be used to group search clauses together |
: |
search in a particular property (e.g.'name: john') |
.. |
Range, the result can be between two numerical values (e.g. 'age: 18..30') |
^ |
Begins with, search for a string that begins with a specific characters |
* |
Wildcard, wildcards are placeholders, which can be replaced by any word or phrase |
AN EXAMPLE: you want to find Nodes where the fullname of the Node begins with "James", age is between 40 and 50 and they are in the country France.
This would be written as:
'fullname: ^James AND age: 40..50 AND country: France'
Comments
0 comments
Please sign in to leave a comment.