Why do I get a “Cartesian Product” warning?
I am still trying to understand why I get a cartesian product warning for a certain format for a query in neo4j and not for another. This is how I set up my database: CREATE (q:Form {version: "1.0"}) CREATE (q:Question {text: "Sector de la empresa", active: true}) I then tried the following query: MATCH (f:Form {version: "1.0"}), (q:Question {text: "Sector de la empresa"}) CREATE (f)-[:asks]->(q) RETURN f, q However, I get the following warning: This query builds a cartesian product between disconnected patterns. If a part of a query contains multiple disconnected patterns, this will build a