Using Neo4j from inside delphi

any idea how to interact with Neo4J from delphi 2010?

Thanks.

+4
source share
2 answers

Neo4J offers a REST API . Thus, you can use any HTTP client library for Delphi (Indy, Synapse ...) and use HTTP GET / POST / DELETE to read / insert / delete records.

+4
source

The REST API implemented through the Synopse library is a direct answer to this question.
Peter's film was my favorite introduction to GraphDB.
Thank you guys love so

+1
source

Source: https://habr.com/ru/post/1439856/


All Articles