1

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?

KWriter
  • 1,024
  • 4
  • 22

1 Answers1

1

f you want to query Memgraph programmatically, you can do so using the Bolt protocol. The Bolt protocol was designed for efficient communication with graph databases and Memgraph supports versions 1 and 4 of the protocol. You can use the Bolt protocol drivers for the following programming languages:

KWriter
  • 1,024
  • 4
  • 22