@@ -100,7 +100,7 @@ Given an example node such as `(:Pokemon { weight: 8.5, height: 0.6, hp: 39 })`,
100100[[arrow-node-schema]]
101101[opts=header,cols="1,1,1,1,1"]
102102|===
103- | node_id | label | weight | height | hp
103+ | nodeId | label | weight | height | hp
104104| 0 | "Pokemon" | 8.5 | 0.6 | 39
105105|===
106106
@@ -110,7 +110,7 @@ The following table describes the node columns with reserved names.
110110[opts=header,cols="1m,1,1,1,1"]
111111|===
112112| Name | Type | Optional | Nullable | Description
113- | node_id | Integer | No | No | Unique 64-bit node identifiers for the in-memory graph. Must be positive values.
113+ | nodeId | Integer | No | No | Unique 64-bit node identifiers for the in-memory graph. Must be positive values.
114114| label | String or Integer | Yes | No | Single node label. Either a string literal or a dictionary encoded number.
115115|===
116116
@@ -159,7 +159,7 @@ For example, given the relationship `(a)-[:EVOLVES_TO { at_level: 16 }]->(b)` an
159159[[arrow-relationship-schema]]
160160[opts=header,cols="1,1,1,1"]
161161|===
162- | source_id | target_id | type | at_level
162+ | sourceId | targetId | type | at_level
163163| 0 | 1 | "EVOLVES_TO" | 16
164164|===
165165
@@ -169,8 +169,8 @@ The following table describes the node columns with reserved names.
169169[opts=header,cols="1m,1,1,1,1"]
170170|===
171171| Name | Type | Optional | Nullable | Description
172- | source_id | Integer | No | No | Unique 64-bit source node identifiers. Must be positive values and present in the imported nodes.
173- | target_id | Integer | No | No | Unique 64-bit target node identifiers. Must be positive values and present in the imported nodes.
172+ | sourceId | Integer | No | No | Unique 64-bit source node identifiers. Must be positive values and present in the imported nodes.
173+ | targetId | Integer | No | No | Unique 64-bit target node identifiers. Must be positive values and present in the imported nodes.
174174| type | String or Integer | Yes | No | Single relationship type. Either a string literal or a dictionary encoded number.
175175|===
176176
0 commit comments