Executing the Job and checking the result - Cloud - 8.0

Neo4j

Version
Cloud
8.0
Language
日本語
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 Open Studio for Big Data
Talend Real-Time Big Data Platform
Module
Talend Studio
Content
ジョブデザインと開発 > サードパーティーシステム > NoSQLコンポーネント > Neo4j
データガバナンス > サードパーティーシステム > NoSQLコンポーネント > Neo4j
データクオリティとプレパレーション > サードパーティーシステム > NoSQLコンポーネント > Neo4j
Last publication date
2023-09-14

Procedure

  1. Press Ctrl+S to save the Job, and press F6 or click Run on the Run tab to run the Job.
  2. In the address bar of your Web browser, enter the URL of the Neo4j database browser, http://localhost:7474/ in this example, and enter the following Cypher query in the command line to view the Person and Family nodes linked via the relationship From:
    MATCH (a:Person)-[:`From`]->(b:Family) RETURN a,b;
    As shown in the graphic view, nodes labeled Family and Person have been created and the nodes of persons from the same families are linked with the relevant Family nodes via the relationship From.