mage
mage copied to clipboard
MAGE - Memgraph Advanced Graph Extensions :crystal_ball:
This module was created for an upcoming MAGE tutorial on [memgraph.com/docs](https://memgraph.com/docs). - [x] Add algorithm implementation. - [x] Add `InsertPathValueResult` function to `mg_utils.hpp`. - [x] Add e2e test.
From Memgraph Lab start import of the [Marvel dataset](https://download.memgraph.com/datasets/marvel-cinematic-universe/marvel-cinematic-universe.cypherl.gz) with the following initial setup ``` CREATE TRIGGER pagerank_online BEFORE COMMIT EXECUTE CALL pagerank_online.update(createdVertices, createdEdges, deletedVertices, deletedEdges) YIELD *; CALL pagerank_online.set(100,...
**Describe the bug** For C++ query modules with a floating-point parameter, passing an integer value as an argument without adding `.0` returns the following: `Error: Query failed: '{QUERY_MODULE}' argument named...
It would be easier to work on dynamic algorithms if `Nodes` and `Neighbours` in `mg_utility/data_structures` were maps (containing the real ID a node has inside the database) instead of vectors.
Includes easy to use C++ wrapper code which should be improved in the future iterations
I'd like to be able to quickly assess the quality of the algorithm by knowing exactly which version of the algorithm is implemented.
Add a module for mage to be able to send data to kafka. - [ ] test - [ ] return the same data to the user - [ ]...
This is a mock pull request to get a feel of the experience when creating a new module. - [x] create the module - [x] add code documentation - [x]...