You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add support for seeding from external files
* Modify datasets test
* Improve widget option switching, add unit tests
* Remove debug
* Support Cypher query datasets, use separate --language and --model options depending on source type
* Update seed command documentation
* Update languages for clarity
* Remove lowercasing of file path, status statements
* Modify Cypher error handling
* Revise notebooks for seed changes
* Fix for test failure
* Update Changelog
* Manually verify that queries are insert type
* Remove hard-coded prefix checks
* Add file browser UI
* More file selection changes
* Disable language widget on submit
* Support individual seed file paths
* Usability improvements and documentation
* Remove --source-type option, more refactoring
* Update sample notebooks and README
* Add single file load unit tests
* remove remaining references to source_type
* Add option for Gremlin full-file queries
* Modify full-file query option to also support Cypher
* More graceful handling for invalid args
* Preserve widget states when switching between options
* Fix switching source back to custom with no current language value
* Fix query progress displaying incorrectly
* Load samples from S3
* Support loading custom datafiles from any S3 URI
* Revert to using pre-packaged sample data
* Handle invalid local paths
* update changelog
---------
Co-authored-by: Michael Chin <chnmch@amazon.com>
- Added openCypher and local file path support to `%seed` ([Link to PR](https://github.com/aws/graph-notebook/pull/292))
9
+
- Added S3 support to `%seed` ([Link to PR](https://github.com/aws/graph-notebook/pull/488))
9
10
- Added `%toggle_traceback` line magic ([Link to PR](https://github.com/aws/graph-notebook/pull/486))
10
11
- Added support for setting `%graph_notebook_vis_options` from a variable ([Link to PR](https://github.com/aws/graph-notebook/pull/487))
11
12
- Pinned JupyterLab<4.x to fix Python 3.8/3.10 builds ([Link to PR](https://github.com/aws/graph-notebook/pull/490))
@@ -151,6 +152,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd
151
152
- Updated the airports property graph seed files to the latest level and suffixed all doubles with 'd'. ([Link to PR](https://github.com/aws/graph-notebook/pull/257))
152
153
- Added grouping by depth for Gremlin and openCypher queries ([PR #1](https://github.com/aws/graph-notebook/pull/241))([PR #2](https://github.com/aws/graph-notebook/pull/251))
153
154
- Added grouping by raw node results ([Link to PR](https://github.com/aws/graph-notebook/pull/253))
155
+
- Added loading from file path with `%seed` ([Link to PR](https://github.com/aws/graph-notebook/pull/247))
154
156
- Added `--no-scroll` option for disabling truncation of query result pages ([Link to PR](https://github.com/aws/graph-notebook/pull/243))
155
157
- Added `--results-per-page` option ([Link to PR](https://github.com/aws/graph-notebook/pull/242))
156
158
- Added relaxed seed command error handling ([Link to PR](https://github.com/aws/graph-notebook/pull/246))
Copy file name to clipboardExpand all lines: src/graph_notebook/notebooks/03-Sample-Applications/01-Fraud-Graphs/01-Building-a-Fraud-Graph-Application.ipynb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@
57
57
"source": [
58
58
"### Load data\n",
59
59
"\n",
60
-
"The cell below loads the example fraud graph into your Neptune cluster. When you run the cell you will be prompted to select a `Data Model` and a `Data set`. Select `Property_Graph` and `fraud_graph` respectively. The graph takes about 5 minutes to load."
60
+
"The cell below loads the example fraud graph into your Neptune cluster. When you run the cell you will be prompted to select a `Source type`, a `Data Model`, and a `Data set`. Select `samples`, `Property_Graph`, and `fraud_graph`, respectively. The graph takes about 5 minutes to load."
0 commit comments