Hello,
I try to match some nodes with the following statement:
MATCH (e:event)
WHERE e.process_PID = "433"
RETURN e.process_PID
LIMIT 10
RESPONSE:
(no changes, no records)
If I try this WITHOUT the where statement:
MATCH (e:event)
RETURN e.process_PID
LIMIT 10
RESPONSE:
╒═══════════════╕
│"e.process_PID"│
╞═══════════════╡
│433 │
├───────────────┤
│743 │
├───────────────┤
│916 │
├───────────────┤
│935 │
├───────────────┤
│1062 │
├───────────────┤
│1081 │
├───────────────┤
│1093 │
├───────────────┤
│1145 │
├───────────────┤
│1160 │
├───────────────┤
│1177 │
└───────────────┘
How could I use the where statement to find the 433 e.process_PID for example?
Greetings Sebastian