Hi all, this is my query:
match(n)-[r]->(m) where not m.name in ['JANSSEN','PFIZER\BIONTECH','ANOFI PASTEUR','Hospital','Recovered'] and not n.name in ['JANSSEN','PFIZER\BIONTECH','ANOFI PASTEUR','Hospital','Recovered'] return n,r,m
The result of the query will be a subgraph. How can I save this subgraph for future use or use it in some other query?
Thanks in advance