In Cypher, when I create a relationship, I use CREATE clause. To show that there is a connection between the two cities, I would use something like:
CREATE (:City {name: 'London'})-[:CONNECTED_WITH]->(:City {name: 'Dublin'});
How can this be done in Python using GQLAlchemy?