Skip to content

Commit dca980e

Browse files
committed
Proofreading
1 parent 95819b5 commit dca980e

8 files changed

Lines changed: 14 additions & 14 deletions

File tree

content/en/docs/partners/altair/altair-graph-studio.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: "Describes how to use graph data from Altair Graph Studio in your M
88

99
## Introduction
1010

11-
Altair Graph Studio provides you a highly scalable graph database suitable for analytical queries, offering access to data from different backend systems. It is an extremely powerful tool to unify data from multiple backend systems and link it from different sources into one unified data model. Graph Studio provides both virtualized and replicated access to data, with powerful data ingestion facilities to ingest, transform, clean, and correlate data from different sources.
11+
Altair Graph Studio (AGS) provides a highly scalable graph database suitable for analytical queries, offering access to data from different backend systems. It is an extremely powerful tool to unify data from multiple backend systems and link it from different sources into one unified data model. Graph Studio provides both virtualized and replicated access to data, with powerful data ingestion facilities to ingest, transform, clean, and correlate data from different sources.
1212

1313
This guide helps you understand the process of creating a graphmart in the Altair Graph Studio, loading data, and querying that data from a Mendix application using OData REST endpoints and SPARQL queries.
1414

@@ -36,7 +36,7 @@ A source layer allows you to import data from various sources or start from a JS
3636
* Transform and map data to your ontology
3737
* Keep data synchronized with source systems
3838

39-
{{< figure src="/attachments/partners/altair/howto-ags/ags-2.png" class="no-border" >}}
39+
{{< figure src="/attachments/partners/altair/howto-ags/add-layer.png" >}}
4040

4141
### Uploading and Validating JSON Data
4242

@@ -46,14 +46,14 @@ Upload the JSON source data into the source layer.
4646

4747
You can review the JSON structure and the data in the file you just uploaded in Graph Studio. It will show you a tree structure of your JSON file, data types, and sample values.
4848

49-
{{< figure src="/attachments/partners/altair/howto-ags/ags-5.png" class="no-border" >}}
49+
{{< figure src="/attachments/partners/altair/howto-ags/sample-data-plm.png" class="no-border" >}}
5050

5151
### Reviewing the Generated Ontology
5252

5353
When you save the source layer, an ontology will be automatically generated based on the JSON structure. You can review it in:
5454

5555
* The **Graph** tab for visual representation
56-
* The **Ontology Models** section for detailed class and property definitions
56+
* The **Ontology Models** section provides detailed class and property definitions
5757

5858
{{% alert color="info" %}}
5959
You can customize the generated ontology by adding descriptions, constraints, and relationships between classes to better model your domain.
@@ -67,7 +67,7 @@ Now that you have data and an ontology in Graph Studio, create a SPARQL query to
6767

6868
Create a new query in the Query Playground. Enter the SPARQL query and test the result.
6969

70-
{{< figure src="/attachments/partners/altair/howto-ags/ags-7.png" class="no-border" >}}
70+
{{< figure src="/attachments/partners/altair/howto-ags/sparql.png" >}}
7171

7272
The following is an example SPARQL query for customers:
7373

@@ -93,25 +93,25 @@ Replace `YOUR_SOURCE_ID` with your actual source layer ID. You can find this ID
9393

9494
You now have a graph ontology in Altair Graph Studio with data and a SPARQL query that returns customers.
9595

96-
Altair Graph Studio allows you to do much more, such as ingesting data from data lakes or APIs and linking siloed data into one unified ontology, but for now you can focus on this basic graph.
96+
Altair Graph Studio allows you to do much more, such as ingesting data from data lakes or APIs and linking siloed data into one unified ontology, but for now, you can focus on this basic graph.
9797

9898
## Exposing Graph Data in the Mendix Application
9999

100-
Altair Graph Studio (AGS) allows you to store and retrieve graph data structures. Using either OData REST endpoints or SPARQL queries via the SPARQL API endpoint, you can retrieve this data into your Mendix application.
100+
Altair Graph Studio allows you to store and retrieve graph data structures. Using either OData REST endpoints or SPARQL queries via the SPARQL API endpoint, you can retrieve this data into your Mendix application.
101101

102-
The OData approach provides the easiest integration with automatic entity mapping and association handling, while the SPARQL approach offers more control for complex graph queries. Both methods enable you to build powerful applications that leverage the scalability and flexibility of graph databases.
102+
The [OData](#odata-rest-endpoint) approach provides the easiest integration with automatic entity mapping and association handling, while the [SPARQL](#query-sparql) approach offers more control for complex graph queries. Both methods enable you to build powerful applications that leverage the scalability and flexibility of graph databases.
103103

104-
### Exposing the Data via an OData REST Endpoint
104+
### Exposing the Data via an OData REST Endpoint {#odata-rest-endpoint}
105105

106-
The simplest way to use Graph data in a Mendix application is by using an OData endpoint. In Altair Graph Studio, you can export an entire graph via OData. This will create an OData endpoint allowing flexible OData queries on the data in your graph database.
106+
The simplest way to use graph data in a Mendix application is by using an OData endpoint. In Altair Graph Studio, you can export an entire graph via OData. This will create an OData endpoint allowing flexible OData queries on the data in your graph database.
107107

108108
#### Creating an OData API in Graph Studio
109109

110110
Create a new OData API in your graphmart. To do this, follow the steps below.
111111

112112
1. Go **Graphmarts** > **Exports** and select **Create OData REST Endpoint**.
113113

114-
{{< figure src="/attachments/partners/altair/howto-ags/ags-17.png" class="no-border" >}}
114+
{{< figure src="/attachments/partners/altair/howto-ags/create-odata-rest.png" >}}
115115

116116
2. Choose **Auto generated Endpoint**. This is a one-click method to expose your entire graph through an OData API.
117117

@@ -165,13 +165,13 @@ Altair Graph Studio automatically provides associations for linked entities in y
165165

166166
{{< figure src="/attachments/partners/altair/howto-ags/ags-26.png" class="no-border" >}}
167167

168-
This example page shows a tree that retrieves BOMs from the graph database. It will only load required data: first, the top-level BOMs, then when you open one, its components will be retrieved over the association. Only when you open a component will it load the subcomponents.
168+
This example page shows a tree that retrieves BOMs from the graph database. It will only load required data: first, the top-level BOMs, then, when you open one, its components will be retrieved over the association. Only when you open a component will it load the subcomponents.
169169

170170
This is done automatically when you set the external entities as the data source for the widgets in your tree.
171171

172172
{{< figure src="/attachments/partners/altair/howto-ags/ags-27.png" class="no-border" >}}
173173

174-
### Query SPARQL in Mendix
174+
### Query SPARQL in Mendix {#query-sparql}
175175

176176
If you need full control over your graph queries, you can use [consumed REST services](/refguide/consumed-rest-service/) to execute SPARQL queries in your graph database.
177177

@@ -227,6 +227,6 @@ You can now run your application to validate the result. It should have a data g
227227

228228
{{< figure src="/attachments/partners/altair/howto-ags/ags-15.png" class="no-border" >}}
229229

230-
You should also see detail pages that show data from a single concept in your graph database:
230+
You should also see the detail pages that show data from a single concept in your graph database:
231231

232232
{{< figure src="/attachments/partners/altair/howto-ags/ags-16.png" class="no-border" >}}

static/attachments/partners/altair/howto-ags/ags-2.png renamed to static/attachments/partners/altair/howto-ags/add-layer.png

File renamed without changes.
-315 KB
Binary file not shown.
-216 KB
Binary file not shown.
-608 KB
Binary file not shown.
237 KB
Loading
204 KB
Loading
461 KB
Loading

0 commit comments

Comments
 (0)