-
Notifications
You must be signed in to change notification settings - Fork 468
Open
Labels
override-staleTo keep issues/PRs untouched from stale actionTo keep issues/PRs untouched from stale actionquestionFurther information is requestedFurther information is requested
Description
Hi, how do I run this?
SELECT * FROM cypher('playground', $$
MATCH (n:Movie|Person)
RETURN n
$$) AS (v agtype)I get
Query 1 ERROR at Line 31: : ERROR: syntax error at or near "|"
LINE 2: MATCH (n:Movie|Person)
^Is this the only way to get what I want?
SELECT * FROM cypher('playground', $$
MATCH (n)
WHERE label(n) = 'Movie' or label(n) = 'Person'
RETURN n
$$) AS (v agtype)mingfang
Metadata
Metadata
Assignees
Labels
override-staleTo keep issues/PRs untouched from stale actionTo keep issues/PRs untouched from stale actionquestionFurther information is requestedFurther information is requested