memgraphdb

How to search graph database using Python?

How to search graph database using Python? Question: I want to search graphs inside Python without the burden of having to learn a new query language. I extensively use pydantic library and I wonder if the two can work together. Asked By: KWriter || Source Answers: You can use GQLAlchemy. It is an open source …

Total answers: 1

Finding weakly connected components in Memgraph graph

Finding weakly connected components in Memgraph graph Question: Does Memgraph have and algorithm for finding weakly connected components in graphs? I couldn’t find it among Memgraph built-in algorithms or MAGE algorithms. Asked By: Gaudeamus || Source Answers: You can use weakly_connected_components query modules. Memgraph comes with NetworkX library. NetworkX is a Python package for the …

Total answers: 1

How can I load MAGE query modules in Memgraph?

How can I load MAGE query modules in Memgraph? Question: How can I load MAGE query modules in Memgraph? Is there a difference if a query module is written in Python or C? Asked By: KWriter || Source Answers: Query modules can be written using C API ( .so modules), and Python API ( .py …

Total answers: 1

What is GQLAlchemy and which graph databases does it support?

What is GQLAlchemy and which graph databases does it support? Question: What is GQLAlchemy and is it limited only to Memgraph or can it be used with other graph databases? Asked By: KWriter || Source Answers: GQLAlchemy is a fully open-source Python library that aims to be the go-to Object Graph Mapper (OGM) — a …

Total answers: 1

What are query modules in Memgraph?

What are query modules in Memgraph? Question: I keep coming across the term "query module" in blog posts related to Memgraph. What are query modules and when should I use one? Asked By: KWriter || Source Answers: Memgraph supports extending the query language with user-written procedures in C, C++, Python, and Rust. These procedures are …

Total answers: 1

What programing languages does Memgraph support?

What programing languages does Memgraph support? Question: From which programming languages can I connect to Memgraph? Which protocol is used? I know that Python is for sure supported since there is GQLAlchemy (a fully open-source Python library). What about other languages? Asked By: KWriter || Source Answers: f you want to query Memgraph programmatically, you …

Total answers: 1

Can Memgraph use disk as a storage?

Can Memgraph use disk as a storage? Question: Memgraph is an in-memory graph database. I have a large database with nodes and relationships with metadata that doesn’t need to be used in any graph algorithms that need to be carried out in Memgraph. Is there a way to store that data on the disk rather …

Total answers: 1