diff --git a/docs/how-to-guides/ogm.md b/docs/how-to-guides/ogm.md index 2001483b..a75da273 100644 --- a/docs/how-to-guides/ogm.md +++ b/docs/how-to-guides/ogm.md @@ -7,7 +7,8 @@ db = Neo4j(host="localhost", port="7687", username="neo4j", password="test") ``` -Through this guide, you will learn how to use GQLAlchemy object graph mapper to: +Through this guide, you will learn how to use the GQLAlchemy object graph mapper to: + - [**Map nodes and relationships**](#map-nodes-and-relationships) - [**Save nodes and relationships**](#save-nodes-and-relationships) - [**Load nodes and relationships**](#load-nodes-and-relationships) diff --git a/docs/how-to-guides/query-builder.md b/docs/how-to-guides/query-builder.md index 536b0119..e248c422 100644 --- a/docs/how-to-guides/query-builder.md +++ b/docs/how-to-guides/query-builder.md @@ -3,7 +3,8 @@ import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; -Through this guide, you will learn how to use GQLAlchemy query builder to: +Through this guide, you will learn how to use the GQLAlchemy query builder to: + - [**Create nodes and relationships**](#create-nodes-and-relationships) - [**Create a node**](#create-a-node) - [**Create a relationship**](#create-a-relationship) diff --git a/docs/how-to-guides/translators/export-python-graphs.md b/docs/how-to-guides/translators/export-python-graphs.md index cff451e4..33a044b3 100644 --- a/docs/how-to-guides/translators/export-python-graphs.md +++ b/docs/how-to-guides/translators/export-python-graphs.md @@ -8,6 +8,7 @@ GQLAlchemy holds translators that can export Memgraph graphs into Python graphs hood](https://img.shields.io/static/v1?label=Related&message=Under%20the%20hood&color=orange&style=for-the-badge)](../../under-the-hood/python-graph-translators.md) In this guide you will learn how to: + - [**Export data from Memgraph into NetworkX graph**](#export-data-from-memgraph-into-networkx-graph) - [**Export data from Memgraph into PyG graph**](#import-pyg-graph-into-memgraph) - [**Export data from Memgraph into DGL graph**](#import-dgl-graph-into-memgraph) diff --git a/docs/how-to-guides/translators/import-python-graphs.md b/docs/how-to-guides/translators/import-python-graphs.md index 270b6d68..30b2a4c7 100644 --- a/docs/how-to-guides/translators/import-python-graphs.md +++ b/docs/how-to-guides/translators/import-python-graphs.md @@ -8,6 +8,7 @@ GQLAlchemy holds translators that can import Python graphs ([NetworkX](https://n hood](https://img.shields.io/static/v1?label=Related&message=Under%20the%20hood&color=orange&style=for-the-badge)](../../under-the-hood/python-graph-translators.md) In this guide you will learn how to: + - [**Import NetworkX graph into Memgraph**](#import-networkx-graph-into-memgraph) - [**Import PyG graph into Memgraph**](#import-pyg-graph-into-memgraph) - [**Import DGL graph into Memgraph**](#import-dgl-graph-into-memgraph) diff --git a/docs/how-to-guides/triggers/triggers.md b/docs/how-to-guides/triggers/triggers.md index 7b27e413..02952abb 100644 --- a/docs/how-to-guides/triggers/triggers.md +++ b/docs/how-to-guides/triggers/triggers.md @@ -16,6 +16,7 @@ triggers. To set up the trigger, first, create a `MemgraphTrigger` object with all the required arguments: + - `name: str` ➡ The name of the trigger. - `event_type: TriggerEventType` ➡ The type of event that will trigger the execution. The options are: `TriggerEventType.CREATE`, diff --git a/docs/import-data.md b/docs/import-data.md index 2636e8c2..3943d8ec 100644 --- a/docs/import-data.md +++ b/docs/import-data.md @@ -1,6 +1,7 @@ # Import data You can import data in the following formats: + - [**CSV**](#csv) - [**JSON**](#json) - [**Parquet, ORC or IPC/Feather/Arrow**](#parquet-orc-or-ipcfeatherarrow)