To provide some context, when Popoto.js generates a query for a node with a specific label, it includes the label as part of the node identifier, which can lead to queries that are not accepted by the Neo4j database. For example, the generated query looks like this:
MATCH (node::test:`Node::test`) RETURN node::test
As mentioned, this query format is not compatible with the Neo4j database. I am wondering if there is a solution or workaround to customize the query and achieve the desired result. Specifically, I would like to generate a query in the following format:
MATCH (n:`Node::test`) RETURN n
or escape variables and labels that contain special characters:
MATCH (`node::test`:`Node::test`) RETURN `node::test`
PS: i can't remove the '::' from nodes This modified query format would allow me to work with the Neo4j database seamlessly.
I would greatly appreciate any guidance or insights you can provide regarding this issue. Thank you in advance for your assistance.
To provide some context, when Popoto.js generates a query for a node with a specific label, it includes the label as part of the node identifier, which can lead to queries that are not accepted by the Neo4j database. For example, the generated query looks like this:
MATCH (node::test:`Node::test`) RETURN node::test
As mentioned, this query format is not compatible with the Neo4j database. I am wondering if there is a solution or workaround to customize the query and achieve the desired result. Specifically, I would like to generate a query in the following format:
MATCH (n:`Node::test`) RETURN n
or escape variables and labels that contain special characters:
MATCH (`node::test`:`Node::test`) RETURN `node::test`
PS: i can't remove the '::' from nodes This modified query format would allow me to work with the Neo4j database seamlessly.
I would greatly appreciate any guidance or insights you can provide regarding this issue. Thank you in advance for your assistance.