Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

i have a node like this: (:a{name:'',lname:'',listNumb:[1,3,9]}) i want to select when 1 is in the array

this is what itried to do match (:a ) where a.listNumb=1 return a ; or match (:a {listNumb=1})

question from:https://stackoverflow.com/questions/65929497/neo4j-match-using-a-list

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
931 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can use IN to check if a value is present in the array/list.

MATCH (n:a) 
WHERE 1 IN n.listNumb  
RETURN n;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...