Skip to content

Commit

Permalink
Indicate query language on connections' graph type (#164)
Browse files Browse the repository at this point in the history
* Indicate language on connections

* merge and update changelog
  • Loading branch information
michaelnchin committed Aug 17, 2023
1 parent 80afb44 commit fe4c614
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The next release will include the following feature enhancements and bug fixes:

**Features**
- Added Default Connection support (https://github.com/aws/graph-explorer/pull/108)
- Added query language indicators to created connections (https://github.com/aws/graph-explorer/pull/164)

## Release 1.3.1

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"available-connections": {
"graph-type": "PG"
"graph-type": "PG-Gremlin"
},
"graph-viewer": {
"node": "Node",
"edge": "Edge"
},
"connection-detail": {
"graph-type": "PG",
"graph-type": "PG-Gremlin",
"nodes": "Nodes",
"edges": "Edges",
"search-placeholder": "Search for Node Type",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"available-connections": {
"graph-type": "PG"
"graph-type": "PG-openCypher"
},
"graph-viewer": {
"node": "Node",
"edge": "Edge"
},
"connection-detail": {
"graph-type": "PG",
"graph-type": "PG-openCypher",
"nodes": "Nodes",
"edges": "Edges",
"search-placeholder": "Search for Node Type",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"available-connections": {
"graph-type": "RDF"
"graph-type": "RDF-SPARQL"
},
"graph-viewer": {
"node": "Resource",
"edge": "Predicate"
},
"connection-detail": {
"graph-type": "RDF",
"graph-type": "RDF-SPARQL",
"nodes": "Resources",
"edges": "Predicates",
"search-placeholder": "Search for Classes",
Expand Down

0 comments on commit fe4c614

Please sign in to comment.