cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Query don't return a node with multi label value

HELLO everyone
i have a node that have this labels as array
rdfs__label: mimo relay@en,relais mimo@f

when i execute this query
MATCH (n:Resource {rdfs__label :"mimo relay@en"}) RETURN n
i d'ont't get anything

thank's for help

3 REPLIES 3

ameyasoft
Graph Maven
Try this:
MATCH (n:Resource)
WHERE n.rdfs_label STARTS WITH ("mimo relay@en")
RETURN n

not working but thank you

Try this:

MATCH (n:Resource)
WHERE "mimo relay@en" IN n.rdfs_label
RETURN n