Executing the Job - Cloud - 8.0

Neo4j

Version
Cloud
8.0
Language
English
Product
Talend Big Data
Talend Big Data Platform
Talend Data Fabric
Talend Data Integration
Talend Data Management Platform
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Real-Time Big Data Platform
Module
Talend Studio
Content
Data Governance > Third-party systems > NoSQL components > Neo4j components
Data Quality and Preparation > Third-party systems > NoSQL components > Neo4j components
Design and Development > Third-party systems > NoSQL components > Neo4j components
Last publication date
2024-02-20

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.