+1 vote
in Databases by (40.5k points)
I want to fetch unique rows from a node in a Neo4J knowledge graph. What Cypher query should I use for it?

1 Answer

+1 vote
by (71.8k points)
selected by
 
Best answer

To fetch unique rows from a node in a Neo4j knowledge graph, you can use the DISTINCT keyword in your Cypher query. 

Here's an example of a Cypher query:

MATCH (c:Compound) 

RETURN DISTINCT c.node_label

Related questions


...