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
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
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