Reputation: 25
We are trying to write PGQL select query on PG View(version 21.4) to retrieve all nodes using label.
We had being using the following link as our PGQL guideline. https://pgql-lang.org/spec/1.4/#writing-simple-queries
Node Table:
Example select query: SELECT n.* FROM MATCH (n:DATA) ON GRAPH
ERROR: vertex label does not exist.
It will return result if :DATA is remove. What would had cause the error since it was working on PGS. Any solution or workaround would be appreciated.
Upvotes: 0
Views: 59