Skip to content

Commit

Permalink
[main < 286-markdown-lists...] Update Markdown code for the lists (#269)
Browse files Browse the repository at this point in the history
* Update Markdown code for the lists

* Update docs/how-to-guides/ogm.md

Co-authored-by: Ante Pušić <[email protected]>

* Update docs/how-to-guides/query-builder.md

Co-authored-by: Ante Pušić <[email protected]>

---------

Co-authored-by: Ante Pušić <[email protected]>
  • Loading branch information
kgolubic and antepusic authored Sep 15, 2023
1 parent 7681e99 commit 026b2d6
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/how-to-guides/ogm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 2 additions & 1 deletion docs/how-to-guides/query-builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions docs/how-to-guides/translators/export-python-graphs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions docs/how-to-guides/translators/import-python-graphs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions docs/how-to-guides/triggers/triggers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`,
Expand Down
1 change: 1 addition & 0 deletions docs/import-data.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 026b2d6

Please sign in to comment.