Substitutes
: Links starting with or containing "kuzu" are sometimes used by community members (such as on
# Insert data conn.execute("CREATE (:Person id: 1, name: 'Alice')") conn.execute("CREATE (:City id: 100, name: 'Paris')") conn.execute("MATCH (a:Person), (c:City) WHERE a.id = 1 AND c.id = 100 CREATE (a)-[:LivesIn since: '2020-01-01']->(c)")