Cypher Queries
In addition to the visual Query Builder, GraphPolaris allows you to write queries directly using Cypher, the native query language for graph databases.
This mode gives you full control over query structure and is ideal when:
- You already know Cypher
- You want to write complex or highly optimized queries
- You prefer working directly with text-based queries
Writing Cypher Queries
To switch to cypher mode, select the Cypher query mode when right clicking a query tab.
You can then type or paste a Cypher query directly into the editor.
Once executed, the query results are displayed in the Visualization panel, just like with visual queries.
Example:
MATCH (c:Customer)-[:PURCHASED]->(p:Product)
RETURN c.name, p.name
LIMIT 50