Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,23 @@ CALL (i) {
This option applies an exponential delay between retries for transaction batches failing due to transient errors, with an optional maximum retry duration, and handles failure based on a specified fallback error mode if the transaction does not succeed within the given time.
For more information, see xref:subqueries/subqueries-in-transactions#on-error-retry[`CALL` subqueries in transactions -> `ON ERROR RETRY`].

a|
label:functionality[]
label:new[]
[source, cypher, role=noheader]
----
GRANT READ {*} ON GRAPH * FOR ()-[r]-() WHERE r.securityLevel > 3 TO regularUsers
----
[source, cypher, role=noheader]
----
GRANT TRAVERSE ON GRAPH * FOR ()-[r:Knows]-() WHERE r.classification IS NULL TO regularUsers
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the examples could follow the neo4j syntax recommendations https://neo4j.com/docs/cypher-manual/current/syntax/naming/#_recommendations :KNOWS

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just out of curiosity, do you know why the naming convention is camel-case for labels and uppercase for relationship types?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's a good question :) I don't have the answer.

----
[source, cypher, role=noheader]
----
DENY MATCH {*} ON GRAPH * FOR ()-[r]-() WHERE r.classification <> 'UNCLASSIFIED' TO regularUsers
----
| Property-based access control for relationships is now supported in Enterprise Edition. For more information, see link:{neo4j-docs-base-uri}/operations-manual/current/authentication-authorization/property-based-access-control[property-based access control]

|===

[[cypher-deprecations-additions-removals-2025.01]]
Expand Down