MuhammadTahaNaveed opened a new pull request, #1737:
URL: https://github.com/apache/age/pull/1737

   Adds the OpenCypher spec for List Comprehension to AGE. Also added a commit 
to remove shift/reduce conflict in grammar.
   
   ### Syntax
   ```
   [
        <variable>   // variable to assume values from list
        IN <list>      // a list or something that creates one
        WHERE <condition>    // optional condition using the above variable
        | <mapping>     // optional mapping function
   ]
   ```
   ### Example
   ```
   [u IN [1,2,3] WHERE u>1 | u^2]
   ```
   ### Known Issue
   List comprehension as property constraint of MERGE clause errors out. 
Created issue #1611 for that.
   
   Co-authored-by:
   John Jemignani
   Zainab Saad
   Muhammad Taha Naveed


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to