Skip to content

Commit 9574521

Browse files
Add colons to the end of each example caption
- Points out that the caption is for the example that follows Co-authored-by: David Oliver <[email protected]>
1 parent ace3144 commit 9574521

File tree

6 files changed

+51
-51
lines changed

6 files changed

+51
-51
lines changed

doc/asciidoc/migration-graph-ops.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The most significant change in memory estimation is that in GDS to estimate an o
3131
[opts=header,cols="1a,1a"]
3232
|===
3333
|Graph Algorithms v3.5 |Graph Data Science v1.0
34-
2+| Native Projections
34+
2+| Native Projections:
3535
|
3636
[source, cypher]
3737
----
@@ -49,7 +49,7 @@ CALL gds.graph.create.estimate(
4949
'MY_RELATIONSHIP_TYPE'
5050
)
5151
----
52-
2+| Cypher Projections
52+
2+| Cypher Projections:
5353
|
5454
[source, cypher]
5555
----
@@ -101,7 +101,7 @@ CALL gds.graph.create.cypher.estimate(
101101
[opts=header,cols="1a,1a"]
102102
|===
103103
|Graph Algorithms v3.5 |Graph Data Science v1.0
104-
2+| Minimal Native Projection
104+
2+| Minimal Native Projection:
105105
|
106106
[source, cypher]
107107
----
@@ -120,7 +120,7 @@ CALL gds.graph.create(
120120
'MY_RELATIONSHIP_TYPE'
121121
)
122122
----
123-
2+| Native Projection with additional properties
123+
2+| Native Projection with additional properties:
124124
|
125125
[source, cypher]
126126
----
@@ -151,7 +151,7 @@ CALL gds.graph.create(
151151
}
152152
)
153153
----
154-
2+|[[direction-both-example]]Native Projection with `direction: 'BOTH'`
154+
2+|[[direction-both-example]]Native Projection with `direction: 'BOTH'`:
155155
|
156156
[source, cypher]
157157
----
@@ -183,7 +183,7 @@ CALL gds.graph.create(
183183
}
184184
)
185185
----
186-
2+| Undirected Native Projection
186+
2+| Undirected Native Projection:
187187
|
188188
[source, cypher]
189189
----
@@ -219,7 +219,7 @@ CALL gds.graph.create(
219219
[opts=header,cols="1a,1a"]
220220
|===
221221
|Graph Algorithms v3.5 |Graph Data Science v1.0
222-
2+| Basic Cypher queries, defining source and target
222+
2+| Basic Cypher queries, defining source and target:
223223
|
224224
[source, cypher]
225225
----
@@ -245,7 +245,7 @@ CALL gds.graph.create.cypher(
245245
RETURN id(s) AS source, id(t) AS target'
246246
)
247247
----
248-
2+| With concurrency property and Cypher query with relationship property
248+
2+| With concurrency property and Cypher query with relationship property:
249249
|
250250
[source, cypher]
251251
----
@@ -344,7 +344,7 @@ CALL gds.graph.list()
344344
[opts=header,cols="1a,1a"]
345345
|===
346346
|Graph Algorithms v3.5 |Graph Data Science v1.0
347-
2+| View information for a Named graph
347+
2+| View information for a Named graph:
348348
|
349349
[source, cypher]
350350
----
@@ -355,7 +355,7 @@ CALL algo.graph.info('myGraph')
355355
----
356356
CALL gds.graph.list('myGraph')
357357
----
358-
2+| Check graph existence
358+
2+| Check graph existence:
359359
|
360360
[source, cypher]
361361
----
@@ -366,7 +366,7 @@ CALL algo.graph.info('myGraph') YIELD exists
366366
----
367367
CALL gds.graph.exists('myGraph') YIELD exists
368368
----
369-
2+| View graph statistics
369+
2+| View graph statistics:
370370
|
371371
[source, cypher]
372372
----

doc/asciidoc/migration-louvain.adoc

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
[opts=header,cols="1a,1a"]
5050
|===
5151
|Graph Algorithms v3.5 |Graph Data Science v1.0
52-
2+|Minimalistic streaming over named graph
52+
2+|Minimalistic streaming over named graph:
5353
|
5454
[source, cypher]
5555
----
@@ -62,7 +62,7 @@ YIELD nodeId, community, communities
6262
CALL gds.louvain.stream('myGraph')
6363
YIELD nodeId, communityId, communityIds
6464
----
65-
2+|Streaming over named graph using additional properties - `maxLevels` and `maxIterations`
65+
2+|Streaming over named graph using additional properties - `maxLevels` and `maxIterations`:
6666
|
6767
[source, cypher]
6868
----
@@ -87,7 +87,7 @@ CALL gds.louvain.stream(
8787
}
8888
)
8989
----
90-
2+| Streaming over named graph with weight property
90+
2+| Streaming over named graph with weight property:
9191
|
9292
[source, cypher]
9393
----
@@ -110,7 +110,7 @@ CALL gds.louvain.stream(
110110
}
111111
)
112112
----
113-
2+| Minimalistic streaming over anonymous graph
113+
2+| Minimalistic streaming over anonymous graph:
114114
|
115115
[source, cypher]
116116
----
@@ -127,7 +127,7 @@ CALL gds.louvain.stream({
127127
relationshipProjection: 'MY_RELATIONSHIP_TYPE'
128128
})
129129
----
130-
2+| Streaming over anonymous graph with `REVERSE` relationship projection
130+
2+| Streaming over anonymous graph with `REVERSE` relationship projection:
131131
|
132132
[source, cypher]
133133
----
@@ -149,7 +149,7 @@ CALL gds.louvain.stream({
149149
}
150150
})
151151
----
152-
2+| Streaming over anonymous graph using two way relationships footnote:[Not algorithm specific. This is also possible with named graphs. The graph has to be created with two relationship projections - one for each direction]
152+
2+| Streaming over anonymous graph using two way relationships footnote:[Not algorithm specific. This is also possible with named graphs. The graph has to be created with two relationship projections - one for each direction]:
153153
|
154154
[source, cypher]
155155
----
@@ -182,7 +182,7 @@ CALL gds.louvain.stream({
182182
[opts=header,cols="1a,1a"]
183183
|===
184184
|Graph Algorithms v3.5 |Graph Data Science v1.0
185-
2+| Minimalistic write with just `writeProperty`
185+
2+| Minimalistic write with just `writeProperty`:
186186
|
187187
[source, cypher]
188188
----
@@ -225,7 +225,7 @@ RETURN
225225
cd.p1 AS p1,
226226
conf.writeProperty AS writeProperty
227227
----
228-
2+| Running in `write` mode over weighted graph
228+
2+| Running in `write` mode over weighted graph:
229229
|
230230
[source, cypher]
231231
----
@@ -251,7 +251,7 @@ CALL gds.louvain.write(
251251
}
252252
)
253253
----
254-
2+| Memory estimation of the algorithm
254+
2+| Memory estimation of the algorithm:
255255
|
256256
[source, cypher]
257257
----

doc/asciidoc/migration-lpa.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
[opts=header,cols="1a,1a"]
4545
|===
4646
|Graph Algorithms v3.5 |Graph Data Science v1.0
47-
2+| Streaming over a named graph
47+
2+| Streaming over a named graph:
4848
|
4949
[source, cypher]
5050
----
@@ -57,7 +57,7 @@ YIELD nodeId, label
5757
CALL gds.labelPropagation.stream('myGraph')
5858
YIELD nodeId, communityId
5959
----
60-
2+| Streaming over a named graph using configuration for iterations and relationship weight property
60+
2+| Streaming over a named graph using configuration for iterations and relationship weight property:
6161
|
6262
[source, cypher]
6363
----
@@ -82,7 +82,7 @@ CALL gds.labelPropagation.stream(
8282
}
8383
)
8484
----
85-
2+| Streaming over anonymous graph
85+
2+| Streaming over anonymous graph:
8686
|
8787
[source, cypher]
8888
----
@@ -99,7 +99,7 @@ CALL gds.labelPropagation.stream({
9999
relationshipProjection: 'MY_RELATIONSHIP_TYPE'
100100
})
101101
----
102-
2+| Streaming over anonymous graph using relationship with `REVERSE` projection
102+
2+| Streaming over anonymous graph using relationship with `REVERSE` projection:
103103
|
104104
[source, cypher]
105105
----
@@ -121,7 +121,7 @@ CALL gds.labelPropagation.stream({
121121
}
122122
})
123123
----
124-
2+| Streaming over anonymous graph using two way relationships footnote:[Not algorithm specific. This is also possible with named graphs. The graph has to be created with two relationship projections - one for each direction]
124+
2+| Streaming over anonymous graph using two way relationships footnote:[Not algorithm specific. This is also possible with named graphs. The graph has to be created with two relationship projections - one for each direction]:
125125
|
126126
[source, cypher]
127127
----
@@ -154,7 +154,7 @@ CALL gds.labelPropagation.stream({
154154
[opts=header,cols="1a,1a"]
155155
|===
156156
|Graph Algorithms v3.5 |Graph Data Science v1.0
157-
2+|Minimalistic write
157+
2+|Minimalistic write:
158158
|
159159
[source, cypher]
160160
----
@@ -191,7 +191,7 @@ RETURN
191191
cd.p1 AS p1,
192192
conf.writeProperty AS writeProperty
193193
----
194-
2+|Write using weight properties footnote:lpa-write-weighted[In GA the weightProperty is for Nodes and Relationships while in GDS there are separate properties ]
194+
2+|Write using weight properties footnote:lpa-write-weighted[In GA the weightProperty is for Nodes and Relationships while in GDS there are separate properties]:
195195
|
196196
[source, cypher]
197197
----
@@ -218,7 +218,7 @@ CALL gds.labelPropagation.write(
218218
}
219219
)
220220
----
221-
2+|Memory estimation of the algorithm
221+
2+|Memory estimation of the algorithm:
222222
|
223223
[source, cypher]
224224
----

doc/asciidoc/migration-node-sim.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
[opts=header,cols="1a,1a"]
4747
|===
4848
|Graph Algorithms v3.5 |Graph Data Science v1.0
49-
2+| Minimalistic streaming over named graph
49+
2+| Minimalistic streaming over named graph:
5050
|
5151
[source, cypher]
5252
----
@@ -59,7 +59,7 @@ YIELD node1, node2, similarity
5959
CALL gds.nodeSimilarity.stream('myGraph')
6060
YIELD node1, node2, similarity
6161
----
62-
2+| Streaming over named graph using `topK` and `similarityCutoff` configuration properties
62+
2+| Streaming over named graph using `topK` and `similarityCutoff` configuration properties:
6363
|
6464
[source, cypher]
6565
----
@@ -84,7 +84,7 @@ CALL gds.nodeSimilarity.stream(
8484
}
8585
)
8686
----
87-
2+| Streaming over named graph using `bottomK` configuration property
87+
2+| Streaming over named graph using `bottomK` configuration property:
8888
|
8989
[source, cypher]
9090
----
@@ -107,7 +107,7 @@ CALL gds.nodeSimilarity.stream(
107107
}
108108
)
109109
----
110-
2+| Minimalistic streaming over anonymous graph
110+
2+| Minimalistic streaming over anonymous graph:
111111
|
112112
[source, cypher]
113113
----
@@ -124,7 +124,7 @@ CALL gds.nodeSimilarity.stream({
124124
relationshipProjection: 'MY_RELATIONSHIP_TYPE'
125125
})
126126
----
127-
2+| Streaming over anonymous graph using `REVERSE` relationship projection
127+
2+| Streaming over anonymous graph using `REVERSE` relationship projection:
128128
|
129129
[source, cypher]
130130
----
@@ -146,7 +146,7 @@ CALL gds.nodeSimilarity.stream({
146146
}
147147
})
148148
----
149-
2+| Streaming over anonymous graph using two way relationships footnote:[Not algorithm specific. This is also possible with named graphs. The graph has to be created with two relationship projections - one for each direction]
149+
2+| Streaming over anonymous graph using two way relationships footnote:[Not algorithm specific. This is also possible with named graphs. The graph has to be created with two relationship projections - one for each direction]:
150150
|
151151
[source, cypher]
152152
----
@@ -179,7 +179,7 @@ CALL gds.nodeSimilarity.stream({
179179
[opts=header,cols="1a,1a"]
180180
|===
181181
|Graph Algorithms v3.5 |Graph Data Science v1.0
182-
2+|Minimalistic `write` with `writeRelationshipType` and `writeProperty`
182+
2+|Minimalistic `write` with `writeRelationshipType` and `writeProperty`:
183183
|
184184
[source, cypher]
185185
----
@@ -226,7 +226,7 @@ RETURN
226226
sd.p1 AS p1,
227227
conf.writeProperty AS writeProperty
228228
----
229-
2+| Memory estimation of the algorithm
229+
2+| Memory estimation of the algorithm:
230230
|
231231
[source, cypher]
232232
----

doc/asciidoc/migration-page-rank.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
[opts=header,cols="1a,1a"]
4343
|===
4444
|Graph Algorithms v3.5 |Graph Data Science v1.0
45-
2+|Minimalistic stream over named graph
45+
2+|Minimalistic stream over named graph:
4646
|
4747
[source, cypher]
4848
----
@@ -55,7 +55,7 @@ YIELD nodeId, score
5555
CALL gds.pageRank.stream('myGraph')
5656
YIELD nodeId, score
5757
----
58-
2+| Streaming over named graph with iteration limit
58+
2+| Streaming over named graph with iteration limit:
5959
|
6060
[source, cypher]
6161
----
@@ -78,7 +78,7 @@ CALL gds.pageRank.stream(
7878
}
7979
)
8080
----
81-
2+| Minimalistic streaming over anonymous graph
81+
2+| Minimalistic streaming over anonymous graph:
8282
|
8383
[source, cypher]
8484
----
@@ -95,7 +95,7 @@ CALL gds.pageRank.stream({
9595
relationshipProjection: 'MY_RELATIONSHIP_TYPE'
9696
})
9797
----
98-
2+| Streaming over anonymous graph with `REVERSE` relationship projection
98+
2+| Streaming over anonymous graph with `REVERSE` relationship projection:
9999
|
100100
[source, cypher]
101101
----
@@ -117,7 +117,7 @@ CALL gds.pageRank.stream({
117117
}
118118
})
119119
----
120-
2+| Streaming over anonymous graph with relationship weight property, assigning it a default value in case the property doesn't have value
120+
2+| Streaming over anonymous graph with relationship weight property, assigning it a default value in case the property doesn't have value:
121121
|
122122
[source, cypher]
123123
----
@@ -152,7 +152,7 @@ CALL gds.pageRank.stream({
152152
[opts=header,cols="1a,1a"]
153153
|===
154154
|Graph Algorithms v3.5 |Graph Data Science v1.0
155-
2+| Running `write` mode on named graph
155+
2+| Running `write` mode on named graph:
156156
|
157157
[source, cypher]
158158
----
@@ -192,7 +192,7 @@ RETURN
192192
ranIterations,
193193
conf.writeProperty AS writeProperty
194194
----
195-
2+| Memory estimation of the algorithm
195+
2+| Memory estimation of the algorithm:
196196
|
197197
[source, cypher]
198198
----

0 commit comments

Comments
 (0)