Skip to content

Commit

Permalink
Fix openCypher query regression in 01-About-the-Neptune-Notebook sa…
Browse files Browse the repository at this point in the history
…mple (#631)

* Fix regression in OC sample

* update changelog
  • Loading branch information
michaelnchin committed Jun 22, 2024
1 parent 06421f8 commit f723b3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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\"})"
]
},
{
Expand Down

0 comments on commit f723b3d

Please sign in to comment.