kuzudb / kuzu-docs

http://docs.kuzudb.com/
Creative Commons Attribution Share Alike 4.0 International
2 stars 10 forks source link

Add document for using unwind parameter in where clause #268

Open acquamarin opened 4 hours ago

acquamarin commented 4 hours ago

We currrently don't support using unwind parameters directly in the where clause: For example:

match (n:Item) unwind n.descriptions as desc where size(desc) < 25 return descq

is not allowed. The user should use a with clause in such case:

match (n:Item) unwind n.descriptions as desc with desc where size(desc) < 25 return descq
prrao87 commented 3 hours ago

Sounds good, will take a look as to where this fits in and update 👍🏽