cyberdyne-ventures / skynet-data

Data Layer For the Skynet Project, Including Sample Data
Other
0 stars 0 forks source link

Queries #2

Open randomuserid opened 4 months ago

randomuserid commented 4 months ago

Primary View:

MATCH (n:ENTITY)-[r]->(m) where n.view = 1 and m.view = 1 return n,r,m

Decision view:

MATCH (n:ENTITY)-[r]->(m) where n.view = 1 and m.view = 1 and n.hostname = "conor" return n,r,m

Investigate view:

MATCH path = (n:ENTITY)-[r*]->(m:SEVERITY_CLUSTER) WHERE n.view = 2 RETURN path