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

||

Answers:

You can use GQLAlchemy. It is an open source object graph mapper, and it is created using the pydantic library. You can check the implementation at GiHub repo.

GQLAlchemy lets you connect with Memgraph more easily and helps you if you’re not familiar with Cypher query language.

Here is an example of how to build a robust app with GQLAlchemy.

Answered By: KWriter
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.