Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/advanced-algorithms.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Dynamic graph algorithms are a part of [Memgraph Enterprise
license](/database-management/enabling-memgraph-enterprise).

For more algorithms, check the **Memgraph Advanced Graph Extensions** (**MAGE**)
library. It is part of the [Memgraph GitHub repository](https://github.com/memgraph/memgraph/tree/master/mage)
library. It is part of the [Memgraph GitHub repository](https://github.com/memgraph/memgraph/tree/master/src/mage)
that contains [graph algorithms](/advanced-algorithms/available-algorithms)
written by the team behind Memgraph and its users in the form of query modules.
The project aims to give everyone the tools they need to tackle the most
Expand Down
2 changes: 1 addition & 1 deletion pages/advanced-algorithms/available-algorithms.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ If you want to know more and learn how this affects you, read our [announcement]
| [nodes](/advanced-algorithms/available-algorithms/nodes) | C++ | A module that provides a comprehensive toolkit for managing multiple graph nodes, enabling linking, updating, type deduction and more. |
| [periodic](/advanced-algorithms/available-algorithms/periodic) | C++ | A module containing procedures for periodically running difficult and/or memory/time consuming queries. |
| [refactor](/advanced-algorithms/available-algorithms/refactor) | C++ | The refactor module provides utilities for changing nodes and relationships. |
| [rust_example](https://github.com/memgraph/memgraph/tree/master/mage/rust/rsmgp-example) | Rust | Example of a basic module with input parameters forwarding, made in Rust. |
| [rust_example](https://github.com/memgraph/memgraph/tree/master/src/mage/rust/rsmgp-example) | Rust | Example of a basic module with input parameters forwarding, made in Rust. |
| [set_property](/advanced-algorithms/available-algorithms/set_property) | C++ | A module for dynamical access and editing of node and relationship properties. |
| [temporal](/advanced-algorithms/available-algorithms/temporal) | Python | A module that provides functions to handle temporal (time-related) operations and offers extended capabilities compared to the date module. |
| [text](/advanced-algorithms/available-algorithms/text) | C++ | The `text` module offers a toolkit for manipulating strings. |
Expand Down
2 changes: 1 addition & 1 deletion pages/advanced-algorithms/available-algorithms/algo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ enabling users to perform complex graph-based operations and computations, such
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/algo_module/algo_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/algo_module/algo_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Centrality"](http://www.uvm.edu/pdodds/research/papers/others/2001/brandes2001a.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/betweenness_centrality_module/betweenness_centrality_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/betweenness_centrality_module/betweenness_centrality_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ reflective of real-time changes.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/betweenness_centrality_module/betweenness_centrality_online_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/betweenness_centrality_module/betweenness_centrality_online_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The algorithm works by finding articulation points, and then traversing from the
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/biconnected_components_module/biconnected_components_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/biconnected_components_module/biconnected_components_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ set of edges (relationships).
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/bipartite_matching_module/bipartite_matching_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/bipartite_matching_module/bipartite_matching_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ valuable to detect it on time.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/bridges_module/bridges_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/bridges_module/bridges_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ using the `CALL` subclause.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/collections_module/collections_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/collections_module/collections_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ preserving communities.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/community_detection_module/community_detection_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/community_detection_module/community_detection_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ model, manipulate, and query complex graph data.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/create_module/create_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/create_module/create_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ procedure has been replaced by the more general [`cross_database.bolt()`](#bolt)
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/cross_database.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/cross_database.py"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ It allows users to create and delete CSV files directly from the database enviro
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/csv_utils_module/csv_utils_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/csv_utils_module/csv_utils_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ wrappers for most of the algorithms present in the
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/cugraph_module"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/cugraph_module"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set of nodes (vertices) of the given graph.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/cycles_module/cycles_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/cycles_module/cycles_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ a_{i,k}$ or in matrix form: $y = A 1$.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/degree_centrality_module/degree_centrality_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/degree_centrality_module/degree_centrality_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ this:
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/distance_calculator/distance_calculator.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/distance_calculator/distance_calculator.cpp"
/>
</Cards>

Expand Down
2 changes: 1 addition & 1 deletion pages/advanced-algorithms/available-algorithms/do.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ that will control query execution.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/do_module/do_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/do_module/do_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ create new ones with custom schema**. Indexing can be performed in two ways:
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/elastic_search_serialization.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/elastic_search_serialization.py"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ credentials.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/embeddings.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/embeddings.py"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Currently, this module supports:
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/export_util.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/export_util.py"
/>
</Cards>

Expand Down
2 changes: 1 addition & 1 deletion pages/advanced-algorithms/available-algorithms/gnn.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Typical workflow:
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/gnn.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/gnn.py"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ representations by aggregating the representations of node neighbors and their
representation from the previous iteration. Such properties make **graph neural
networks** a great tool for various problems we in Memgraph encounter. If your
graph is evolving in time, check [TGN
model](https://github.com/memgraph/memgraph/blob/master/mage/python/tgn.py) that Memgraph
model](https://github.com/memgraph/memgraph/blob/master/src/mage/python/tgn.py) that Memgraph
engineers have already developed.

In this includes the following features:
Expand Down Expand Up @@ -92,7 +92,7 @@ For the underlying **GNN** training Memgraph uses the [DGL library](https://gith
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/link_prediction.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/link_prediction.py"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ useful.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/node_classification.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/node_classification.py"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ converging to local minimums too early.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/graph_coloring.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/graph_coloring.py"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ manipulation tools to accelerate development.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/graph_util_module/graph_util_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/graph_util_module/graph_util_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ stream the native database graph directly, significantly lowering memory usage.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/igraphalg.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/igraphalg.py"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ supports the import of JSON and graphML file formats.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/import_util.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/import_util.py"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ and if it is a map, the module loads it as a single value.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/json_util.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/json_util.py"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ resulting centralities will be correct.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/katz_centrality_module/katz_centrality_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/katz_centrality_module/katz_centrality_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sum-of-squares.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/kmeans.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/kmeans.py"
/>
</Cards>

Expand Down
2 changes: 1 addition & 1 deletion pages/advanced-algorithms/available-algorithms/knn.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ finding nodes with similar embeddings, features, or other vector-based propertie
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/knn_module/knn_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/knn_module/knn_module.cpp"
/>
</Cards>

Expand Down
2 changes: 1 addition & 1 deletion pages/advanced-algorithms/available-algorithms/label.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ to check the existence of a label within the node.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/label_module/label_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/label_module/label_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ space complexity if $\mathcal{O}(VE)$ for $V$ nodes and $E$ edges.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/leiden_community_detection_module/leiden_community_detection_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/leiden_community_detection_module/leiden_community_detection_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ developing applications powered by language models.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/llm_util.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/llm_util.py"
/>
</Cards>

Expand Down
2 changes: 1 addition & 1 deletion pages/advanced-algorithms/available-algorithms/map.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ context.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/map_module/map_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/map_module/map_module.cpp"
/>
</Cards>

Expand Down
2 changes: 1 addition & 1 deletion pages/advanced-algorithms/available-algorithms/math.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The `math` module provides essential mathematical operations for precise numeric
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/math_module/math_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/math_module/math_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ returning max flow value is 0.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/max_flow.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/max_flow.py"
/>
</Cards>

Expand Down
2 changes: 1 addition & 1 deletion pages/advanced-algorithms/available-algorithms/merge.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ It ensures precision and coherence in managing interconnected data structures.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/merge_module/merge_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/merge_module/merge_module.cpp"
/>
</Cards>

Expand Down
2 changes: 1 addition & 1 deletion pages/advanced-algorithms/available-algorithms/meta.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The **meta** module provides a set of procedures for generating metadata about t
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/meta_module/meta_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/meta_module/meta_module.cpp"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ A module that contains procedures describing graphs on a meta-level.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/python/meta_util.py"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/python/meta_util.py"
/>
</Cards>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ network structure and connectivity.
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/neighbors_module/neighbors_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/neighbors_module/neighbors_module.cpp"
/>
</Cards>

Expand Down
2 changes: 1 addition & 1 deletion pages/advanced-algorithms/available-algorithms/node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The `node` module provides a comprehensive toolkit for managing graph nodes, ena
<Cards.Card
icon={<GitHub />}
title="Source code"
href="https://github.com/memgraph/memgraph/blob/master/mage/cpp/node_module/node_module.cpp"
href="https://github.com/memgraph/memgraph/blob/master/src/mage/cpp/node_module/node_module.cpp"
/>
</Cards>

Expand Down
Loading