diff --git a/ChangeLog.md b/ChangeLog.md index 55900686..88d31037 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,6 +4,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd ## Upcoming - Fixed broken `--help` option for `%%gremlin` ([Link to PR](https://github.com/aws/graph-notebook/pull/630)) +- Fixed openCypher query bug regression in the [`01-About-the-Neptune-Notebook`](https://github.com/aws/graph-notebook/blob/main/src/graph_notebook/notebooks/01-Getting-Started/01-About-the-Neptune-Notebook.ipynb) sample ([Link to PR](https://github.com/aws/graph-notebook/pull/631)) ## Release 4.4.2 (June 18, 2024) - Set Gremlin `connection_protocol` defaults based on Neptune service when generating configuration via arguments ([Link to PR](https://github.com/aws/graph-notebook/pull/626)) diff --git a/src/graph_notebook/notebooks/01-Neptune-Database/01-Getting-Started/01-About-the-Neptune-Notebook.ipynb b/src/graph_notebook/notebooks/01-Neptune-Database/01-Getting-Started/01-About-the-Neptune-Notebook.ipynb index c05b2141..eb81b9fb 100644 --- a/src/graph_notebook/notebooks/01-Neptune-Database/01-Getting-Started/01-About-the-Neptune-Notebook.ipynb +++ b/src/graph_notebook/notebooks/01-Neptune-Database/01-Getting-Started/01-About-the-Neptune-Notebook.ipynb @@ -279,9 +279,9 @@ "source": [ "%%oc\n", "\n", - "CREATE (n:Language {name:\"Gremlin\"})\n", - "CREATE (n:Language {name:\"Cypher\"})\n", - "CREATE (n:Language {name:\"SPARQL\"})" + "CREATE (a:Language {name:\"Gremlin\"})\n", + "CREATE (b:Language {name:\"Cypher\"})\n", + "CREATE (c:Language {name:\"SPARQL\"})" ] }, {