MironAtHome commented on issue #2002:
URL: https://github.com/apache/age/issues/2002#issuecomment-2267079781

   Not quite what you are expecting, but it does the same thing.
   -- Query 1
   ```
   SELECT *
   FROM cypher('test_graph', $$
   MATCH (v)
       where label(v)  IN (['car', 'pet'])
            return v
   $$) AS t(a agtype);
   ```
   -- Query 2
   ```
   SELECT *
   FROM cypher('test_graph', $$
              MATCH (v:pet) return v
   UNION  ALL MATCH (v:car) return v
   $$) AS t(a agtype);
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to