Procedure
-
Double-click tNeo4jv4Connection_1 to open its
Basic settings view and do the following:
- Enter the connection URI of the Neo4jv4 database server in the Connection URI field ("neo4j://localhost:7687" in this example).
-
Enter user name and password in the Username and
Password fields.
To enter the password, click the [...] button next to the Password field and enter the password in the dialog box that appears.
- Leave the other options as they are.
This component establishes a connection to the Neo4jv4 database.
-
Double-click tNeo4jv4Row_2 to open its Basic
settings view and do the following:
- Select the Use an existing connection option and select tNeo4jv4Connection_1 from the Component List drop-down list.
-
Add two rows in the Query field and enter the
following two clauses.
"CREATE CONSTRAINT uniq_Person IF NOT EXISTS FOR (p:Person) REQUIRE p.id IS UNIQUE" "CREATE CONSTRAINT uniq_Account IF NOT EXISTS FOR (p:Account) REQUIRE p.id IS UNIQUE"
- Leave the other options as they are.
This component makes sure all the nodes created are unique. For more information about the CREATE CONSTRAINT command, see Constraints.