From 634278247ee755b321f27f6a59aefcd86c96d655 Mon Sep 17 00:00:00 2001 From: Richard Sill Date: Fri, 17 Oct 2025 15:27:38 +0200 Subject: [PATCH 1/2] pascal case wording --- modules/ROOT/pages/syntax/naming.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/syntax/naming.adoc b/modules/ROOT/pages/syntax/naming.adoc index 23108b2f3..d7cb7d000 100644 --- a/modules/ROOT/pages/syntax/naming.adoc +++ b/modules/ROOT/pages/syntax/naming.adoc @@ -62,8 +62,8 @@ Some techniques to mitigate this are: Here are the recommended naming conventions: |=== -| Node labels | Camel-case, beginning with an upper-case character | `:VehicleOwner` rather than `:vehicle_owner` etc. -| Relationship types | Upper-case, using underscore to separate words | `:OWNS_VEHICLE` rather than `:ownsVehicle` etc. +| Node labels | Pascal case, which is similar to camel case but beginning with an upper-case character | `:VehicleOwner` rather than `:vehicle_owner` etc. +| Relationship types | Upper case, using underscore to separate words | `:OWNS_VEHICLE` rather than `:ownsVehicle` etc. |=== [[identifier-length-limit]] From 5a638ecb2c460750a40252af68509ed78ef15fd8 Mon Sep 17 00:00:00 2001 From: Richard Sill <156673635+rsill-neo4j@users.noreply.github.com> Date: Thu, 6 Nov 2025 16:24:28 +0100 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Jessica Wright <49636617+AlexicaWright@users.noreply.github.com> --- modules/ROOT/pages/syntax/naming.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/syntax/naming.adoc b/modules/ROOT/pages/syntax/naming.adoc index d7cb7d000..e86f0ccfe 100644 --- a/modules/ROOT/pages/syntax/naming.adoc +++ b/modules/ROOT/pages/syntax/naming.adoc @@ -62,7 +62,7 @@ Some techniques to mitigate this are: Here are the recommended naming conventions: |=== -| Node labels | Pascal case, which is similar to camel case but beginning with an upper-case character | `:VehicleOwner` rather than `:vehicle_owner` etc. +| Node labels | Pascal case, capitalized words using no spaces or separators | `:VehicleOwner` rather than `:vehicle_owner` etc. | Relationship types | Upper case, using underscore to separate words | `:OWNS_VEHICLE` rather than `:ownsVehicle` etc. |===