Skip to content

Commit

Permalink
adding property rules to 5.21 additions (#1046)
Browse files Browse the repository at this point in the history
Co-authored-by: Jens Pryce-Åklundh <112686610+JPryce-Aklundh@users.noreply.github.com>
  • Loading branch information
phil198 and JPryce-Aklundh committed Sep 25, 2024
1 parent 686e67c commit 5792289
Showing 1 changed file with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,23 @@ The column is a `STRING` value specifying a replacement function/procedure if th
| Feature
| Details

a|
label:functionality[]
label:new[]
[source, cypher, role=noheader]
----
GRANT READ {*} ON GRAPH * FOR (n) WHERE n.securityLevel > 3 TO regularUsers
----
[source, cypher, role=noheader]
----
GRANT TRAVERSE ON GRAPH * FOR (n:Email) WHERE n.classification IS NULL TO regularUsers
----
[source, cypher, role=noheader]
----
DENY MATCH {*} ON GRAPH * FOR (n) WHERE n.classification <> 'UNCLASSIFIED' TO regularUsers
----
| Introduction of link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/property-based-access-control[property-based access control] for read privileges. The ability to read, traverse and match nodes based on node property values is now supported in Enterprise Edition.

a|
label:functionality[]
label:new[]
Expand All @@ -156,7 +173,6 @@ RETURN a.name, a.year
----
| Extension of the xref:clauses/load-csv.adoc#import-from-cloud-uris[LOAD CSV] clause to allow loading CSV files from Google Cloud Storage URIs.


a|
label:functionality[]
label:new[]
Expand Down

0 comments on commit 5792289

Please sign in to comment.