diff --git a/code/graphql/example.js b/code/graphql/example.js index 7b69b9b..991ca09 100644 --- a/code/graphql/example.js +++ b/code/graphql/example.js @@ -45,6 +45,7 @@ type Other { valid_until: String! intermediary_of: [Entity] @relationship(type: "intermediary_of", direction: OUT) + same_name_as: [Entity] @relationship(type: "SAME_NAME_AS", direction: OUT) } type Intermediary { @@ -55,6 +56,7 @@ type Intermediary { sourceID: String! valid_until: String! connected_to: [Entity] @relationship(type: "connected_to", direction: OUT) + same_name_as: [Entity] @relationship(type: "SAME_NAME_AS", direction: OUT) } type Officer { @@ -69,6 +71,8 @@ type Officer { @relationship(type: "registered_address", direction: OUT) officer_of: [Entity] @relationship(type: "officer_of", direction: OUT) connected_to: [Entity] @relationship(type: "connected_to", direction: OUT) + same_name_as: [Entity] @relationship(type: "SAME_NAME_AS", direction: OUT) + same_id_as: [Officer] @relationship(type: "SAME_ID_AS", direction: OUT) num_of_connected_entities: Int @cypher( statement: """ diff --git a/code/javascript/example.js b/code/javascript/example.js index f771186..65c44b9 100644 --- a/code/javascript/example.js +++ b/code/javascript/example.js @@ -3,7 +3,7 @@ const neo4j = require('neo4j-driver'); const driver = neo4j.driver('neo4j://:', neo4j.auth.basic('', ''), - {/* encrypted: 'ENCRYPTION_OFF' */}); + {}); const query = ` diff --git a/code/python/example.py b/code/python/example.py index 9b0cb9b..19c8ddf 100644 --- a/code/python/example.py +++ b/code/python/example.py @@ -1,4 +1,4 @@ -# pip3 install neo4j-driver +# pip3 install neo4j # python3 example.py from neo4j import GraphDatabase, basic_auth