5 lines
88 B
Plaintext
5 lines
88 B
Plaintext
MATCH (n:Document)
|
|
WHERE n.content CONTAINS "余额"
|
|
RETURN n.title, n.content
|
|
LIMIT 5;
|