Skip to content

Commit 21e14c6

Browse files
FlorentinDMats-SX
andcommitted
Add tip to use Aura Graph Analytics Serverless to tutorials
Co-authored-by: Mats Rydberg <[email protected]>
1 parent a4e363b commit 21e14c6

10 files changed

+37
-7
lines changed

doc/modules/ROOT/pages/tutorials/centrality-algorithms.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ graph dataset.
2626
We start by importing our dependencies and setting up our GDS client
2727
connection to the database.
2828

29+
TIP: Alternatively, you can use
30+
https://neo4j.com/docs/graph-data-science-client/current/graph-analytics-serverless/[Aura
31+
Graph Analytics Serverless] and skip the whole Setup section below.
32+
2933
[source, python, role=no-test]
3034
----
3135
# Install necessary dependencies

doc/modules/ROOT/pages/tutorials/community-detection.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ detection on the largest component using the Louvain algorithm.
2626
We start by importing our dependencies and setting up our GDS client
2727
connection to the database.
2828

29+
TIP: Alternatively, you can use
30+
https://neo4j.com/docs/graph-data-science-client/current/graph-analytics-serverless/[Aura
31+
Graph Analytics Serverless] and skip the whole Setup section below.
32+
2933
[source, python, role=no-test]
3034
----
3135
# Install necessary dependencies

doc/modules/ROOT/pages/tutorials/fastrp-and-knn.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ installation instructions].
4646
We start by installing and importing our dependencies, and setting up
4747
our GDS client connection to the database.
4848

49+
TIP: Alternatively, you can use
50+
https://neo4j.com/docs/graph-data-science-client/current/graph-analytics-serverless/[Aura
51+
Graph Analytics Serverless] and skip the whole Setup section below.
52+
4953
[source, python, role=no-test]
5054
----
5155
# Install necessary dependencies

doc/modules/ROOT/pages/tutorials/import-sample-export-gnn.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ docs] for installation instructions)
4949
We start by importing our dependencies and setting up our GDS client
5050
connection to the database.
5151

52+
TIP: Alternatively, you can use
53+
https://neo4j.com/docs/graph-data-science-client/current/graph-analytics-serverless/[Aura
54+
Graph Analytics Serverless] and skip the whole Setup section below.
55+
5256
[source, python, role=no-test]
5357
----
5458
# Install necessary dependencies

doc/modules/ROOT/pages/tutorials/load-data-via-graph-construction.adoc

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,18 @@ in the Neo4j Graph Data Science Client Github repository.
1414
The notebook shows the usage of the `gds.graph.construct` method
1515
(available only in GDS 2.1{plus}) to build a graph directly in memory.
1616

17-
NOTE: If you are using AuraDS, it is currently not possible to write the
18-
projected graph back to Neo4j.
17+
NOTE: If you are using AuraDS, it is currently not possible to export
18+
the projected graph back to Neo4j.
1919

2020
== Setup
2121

2222
We need an environment where Neo4j and GDS are available, for example
2323
AuraDS (which comes with GDS preinstalled) or Neo4j Desktop.
2424

25+
TIP: Alternatively, you can use
26+
https://neo4j.com/docs/graph-data-science-client/current/graph-analytics-serverless/[Aura
27+
Graph Analytics Serverless] and skip the whole Setup section below.
28+
2529
Once the credentials to this environment are available, we can install
2630
the `graphdatascience` package and import the client class.
2731

examples/centrality-algorithms.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
"\n",
3333
"## Setup\n",
3434
"\n",
35-
"We start by importing our dependencies and setting up our GDS client connection to the database."
35+
"We start by importing our dependencies and setting up our GDS client connection to the database.\n",
36+
"\n",
37+
"TIP: Alternatively, you can use [Aura Graph Analytics Serverless](https://neo4j.com/docs/graph-data-science-client/current/graph-analytics-serverless/) and skip the whole Setup section below. "
3638
]
3739
},
3840
{

examples/community-detection.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
"\n",
3636
"## Setup\n",
3737
"\n",
38-
"We start by importing our dependencies and setting up our GDS client connection to the database."
38+
"We start by importing our dependencies and setting up our GDS client connection to the database.\n",
39+
"\n",
40+
"TIP: Alternatively, you can use [Aura Graph Analytics Serverless](https://neo4j.com/docs/graph-data-science-client/current/graph-analytics-serverless/) and skip the whole Setup section below. "
3941
]
4042
},
4143
{

examples/fastrp-and-knn.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@
5555
"source": [
5656
"## Setup\n",
5757
"\n",
58-
"We start by installing and importing our dependencies, and setting up our GDS client connection to the database."
58+
"We start by installing and importing our dependencies, and setting up our GDS client connection to the database.\n",
59+
"\n",
60+
"TIP: Alternatively, you can use [Aura Graph Analytics Serverless](https://neo4j.com/docs/graph-data-science-client/current/graph-analytics-serverless/) and skip the whole Setup section below. "
5961
]
6062
},
6163
{

examples/import-sample-export-gnn.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@
6161
"source": [
6262
"## Setup\n",
6363
"\n",
64-
"We start by importing our dependencies and setting up our GDS client connection to the database."
64+
"We start by importing our dependencies and setting up our GDS client connection to the database.\n",
65+
"\n",
66+
"TIP: Alternatively, you can use [Aura Graph Analytics Serverless](https://neo4j.com/docs/graph-data-science-client/current/graph-analytics-serverless/) and skip the whole Setup section below. "
6567
]
6668
},
6769
{

examples/load-data-via-graph-construction.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"\n",
2828
"The notebook shows the usage of the `gds.graph.construct` method (available only in GDS 2.1+) to build a graph directly in memory.\n",
2929
"\n",
30-
"NOTE: If you are using AuraDS, it is currently not possible to write the projected graph back to Neo4j."
30+
"NOTE: If you are using AuraDS, it is currently not possible to export the projected graph back to Neo4j."
3131
]
3232
},
3333
{
@@ -40,6 +40,8 @@
4040
"\n",
4141
"We need an environment where Neo4j and GDS are available, for example AuraDS (which comes with GDS preinstalled) or Neo4j Desktop. \n",
4242
"\n",
43+
"TIP: Alternatively, you can use [Aura Graph Analytics Serverless](https://neo4j.com/docs/graph-data-science-client/current/graph-analytics-serverless/) and skip the whole Setup section below. \n",
44+
"\n",
4345
"Once the credentials to this environment are available, we can install the `graphdatascience` package and import the client class."
4446
]
4547
},

0 commit comments

Comments
 (0)