I'm trying to run multiple databases at the same time and query data to and from them.
I successfully created these databases using the following query:
CREATE DATABASE databasename1;
CREATE DATABASE databasename2;
But I am now uncertain about how I should add data to each of these individual databases. For example, if I'd run something like:
CREATE (u:User {name: "John"});
in which database context will this be executed? How to change this context?
Thanks!