Which Ruby REST API client for neo4j?

后端 未结 7 1713
被撕碎了的回忆
被撕碎了的回忆 2021-02-08 04:19

I wonder what the REST API clients are available for using from Ruby (not JRuby, so native bindings are not an option)?

Ideally, I would want the API similar to the

相关标签:
7条回答
  • 2021-02-08 04:57

    There is also activerecord-neo4j-adapter, but I have no experience with it.

    https://github.com/digitalbias/activerecord-neo4j-adapter

    0 讨论(0)
  • 2021-02-08 04:57

    Another option is Keymaker, which provides ActiveModel support for Neo4j. Problem is, docs are non-existent, so you have to search out slideshows/presentations to find actual examples.

    0 讨论(0)
  • 2021-02-08 05:08

    I have only used Neography which does its job very well. Have not heard about architect4r, but it looks really pragmatic and pleasing - need to check it out!

    /peter

    0 讨论(0)
  • 2021-02-08 05:16

    Have you looked at REST-Client? https://github.com/archiloque/rest-client

    it seems like it might be a very easy to to create and examine the responses from calls to a REST API. but maybe you need more than that?

    (I was searching for answers and found your question, so far rest-client seems like the top candidate for what I need, figured it might help you also.

    0 讨论(0)
  • 2021-02-08 05:17

    The short answer is that there is no any mature ActiveModel-like gems for RESTful neo4j.

    The most common scenario is to just use Neography.

    0 讨论(0)
  • 2021-02-08 05:20

    I know this thread is a little old, but there is activity on the neo4j-core gem geared towards using its API for the standalone database server in addition to the embedded database. Thought this might help people who find this thread when searching around.

    https://github.com/andreasronge/neo4j-core/tree/3.0

    Note: Before anyone yells at me for not making this a comment instead of an answer, I don't have the required reputation for doing so. Sorry.

    0 讨论(0)
提交回复
热议问题