Skip to content

Commit 183989f

Browse files
authored
Update README.md
1 parent 4e23c19 commit 183989f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To help you get started, here are a set of quick start cypher queries for the mo
3030
The following query will allow you to find principals with full control access to a share
3131

3232
```cypher
33-
MATCH (p:Principal)-[r]->(s:NetworkShareSMB)
33+
MATCH (p)-[r]->(s:NetworkShareSMB)
3434
WHERE (p)-[:CanDelete]->(s)
3535
AND (p)-[:CanDsControlAccess]->(s)
3636
AND (p)-[:CanDsCreateChild]->(s)
@@ -71,7 +71,7 @@ graph LR
7171
The following query will allow you to find files by name (case insensitive)
7272

7373
```cypher
74-
MATCH x=(p:Principal)-[r:CanWriteDacl|CanWriteOwner|CanDsWriteProperty|CanDsWriteExtendedProperties]->(s:NetworkShareSMB)
74+
MATCH x=(p)-[r:CanWriteDacl|CanWriteOwner|CanDsWriteProperty|CanDsWriteExtendedProperties]->(s:NetworkShareSMB)
7575
RETURN x
7676
```
7777

0 commit comments

Comments
 (0)