Skip to content

Commit d30ad33

Browse files
authored
Use “query language” instead of “graph type” (#1474)
1 parent 206b9a6 commit d30ad33

File tree

13 files changed

+88
-28
lines changed

13 files changed

+88
-28
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ defaults, and their descriptions.
9898
[Add a New Connection](#connections-ui)
9999
- Optional
100100
- `GRAPH_TYPE` - `None` - If not specified, multiple connections will be
101-
created for every available graph type / query language. See
101+
created for every available query language. See
102102
[Add a New Connection](#connections-ui)
103103
- `USING_PROXY_SERVER` - `False` - See [Add a New Connection](#connections-ui)
104104
- `IAM` - `False` - See [Add a New Connection](#connections-ui)

additionaldocs/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ manager used for the project is consistent.
3030
corepack enable
3131
```
3232

33-
### Supported Graph Types
33+
### Supported Graph Data Models and Query Languages
3434

3535
- Labelled Property Graph (PG) using Gremlin or openCypher
3636
- Resource Description Framework (RDF) using SPARQL

additionaldocs/features/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ to add a new connection. You can also edit and delete connections.
3535

3636
- **Add a new connection:**
3737
- **Name:** Enter a name for your connection (e.g., `MyNeptuneCluster`).
38-
- **Graph Type:** Choose a graph data model that corresponds to your graph
38+
- **Query Language:** Choose a query language that corresponds to your graph
3939
database.
4040
- **Public or proxy endpoint:** Provide the publicly accessible endpoint URL
4141
for a graph database, e.g., Gremlin Server. If connecting to Amazon Neptune,

additionaldocs/getting-started/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ It comes with a very small graph dataset.
9191
```
9292
3. Open Graph Explorer and add a new connection
9393
- Name: `Gremlin Server`
94-
- Graph Type: `Gremlin`
94+
- Query Language: `Gremlin`
9595
- Public or Proxy Endpoint: `https://localhost`
9696
- Using Proxy Server: `true`
9797
- Graph Connection URL: `http://localhost:8182`

packages/graph-explorer/src/hooks/translations/gremlin-translations.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"target-type": "Target Label",
1616
"property": "Property",
1717
"properties": "Properties",
18-
"graph-type": "PG-Gremlin",
18+
"query-language": "PG-Gremlin",
1919

2020
"nodes-styling": {
2121
"title": "Node Label Styling"

packages/graph-explorer/src/hooks/translations/openCypher-translations.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"target-type": "Target Label",
1616
"property": "Property",
1717
"properties": "Properties",
18-
"graph-type": "PG-openCypher",
18+
"query-language": "PG-openCypher",
1919

2020
"nodes-styling": {
2121
"title": "Node Label Styling"

packages/graph-explorer/src/hooks/translations/sparql-translations.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"target-type": "Target Class",
1616
"property": "Datatype Property",
1717
"properties": "Datatype Properties",
18-
"graph-type": "RDF-SPARQL",
18+
"query-language": "RDF-SPARQL",
1919

2020
"nodes-styling": {
2121
"title": "Resource Styling"

packages/graph-explorer/src/modules/AvailableConnections/ConnectionRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function ConnectionRow({
3131
: null;
3232

3333
const graphType = t(
34-
"graph-type",
34+
"query-language",
3535
connection.connection?.queryEngine || "gremlin",
3636
);
3737

packages/graph-explorer/src/modules/ConnectionDetail/ConnectionDetail.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ function ConnectionDetail({ config }: ConnectionDetailProps) {
131131
<GlobeIcon />
132132
</InfoItemIcon>
133133
<InfoItemContent>
134-
<InfoItemLabel>Graph Type</InfoItemLabel>
135-
<InfoItemValue>{t("graph-type")}</InfoItemValue>
134+
<InfoItemLabel>Query Language</InfoItemLabel>
135+
<InfoItemValue>{t("query-language")}</InfoItemValue>
136136
</InfoItemContent>
137137
</InfoItem>
138138
<InfoItem>

packages/graph-explorer/src/modules/CreateConnection/CreateConnection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ const CreateConnection = ({
260260
/>
261261
</FormItem>
262262
<FormItem>
263-
<Label>Graph Type</Label>
263+
<Label>Query Language</Label>
264264
<SelectField
265265
options={CONNECTIONS_OP}
266266
value={form.queryEngine}

0 commit comments

Comments
 (0)