Skip to content

AI generator

This tool employs advanced artificial intelligence technologies to translate your natural language input into a corresponding Cypher query, taking into database description, labels, relationships and properties. By describing the data analysis or manipulation you wish to carry out using everyday language, you can generate a Cypher query ready for execution on a graph database. For example, if you input "Show me all the users," the AI generator produces the appropriate Cypher query.

Here's how to do it:

  1. Open the AI Generator.
  2. Enter your analysis or manipulation request in the provided text field.
  3. Click on the Generate button.
  4. The system provides you with a Cypher query that corresponds to your request.

Example:

  • If you input: "Show me all the users"
  • The AI generator outputs:
cypher
"MATCH (n:User)-[r]-(m) RETURN n, r, m".
"MATCH (n:User)-[r]-(m) RETURN n, r, m".

This cypher query can then be used in a Graph Database for desired results.

TIP

The accuracy of the generated query highly depends on how clear and simple your request is. Avoid using technical jargon or vague phrases to achieve the best results.

AI generator