Skip to main content Skip to complementary content

Executing the Job

Procedure

  1. Press Ctrl+S to save the Job.
  2. Press F6 to run the Job.
  3. Query nodes on the Neo4j console by executing the following statement in Neo4j console.
    MATCH (n) RETURN n;

    The following figure shows the nodes and relationships created.

  4. You can also check the nodes that are connected with the relationship HAS_ACCOUNT by executing the following statement in Neo4j console.
    MATCH (n:Person)-[r:HAS_ACCOUNT]-(m:Account) RETURN n,r,m;

    The following figure shows the execution result of the above statement.

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!