activegraph icon indicating copy to clipboard operation
activegraph copied to clipboard

An active model wrapper for the Neo4j Graph Database for Ruby.

Results 113 activegraph issues
Sort by recently updated
recently updated
newest added

To use the seabolt adapter with neo4jrb, on Rails, one needs to add the line ``` config.neo4j.session.options = { adaptor_class: Neo4j::Core::CypherSession::Adaptors::Driver } ``` to `config/application.rb`; but it seems that doing-so...

Is there a way to have an ActiveNode inherit from a base class that is not Node? Additional information which could be helpful if relevant to your issue: ### Code...

Additional information which could be helpful if relevant to your issue: ### Code example (inline, gist, or repo) ``` class Color include Neo4j::ActiveNode property :name, type: String property :code, type:...

### Code example (inline, gist, or repo) ``` class Category include Neo4j::ActiveNode id_property :uid, on: :next_id property :name, type: String property :description, type: String property :main, type: Boolean scope :main,...

According to the docs: > You can define a global or per-model generation methods if you do not want to use the default. I'd like to know how to do...

Additional information which could be helpful if relevant to your issue: ### Code example (inline, gist, or repo) `rake neo4j:install[community-latest,dev] --trace` ### Runtime information: Neo4j database version: `neo4j` gem version:...

Additional information which could be helpful if relevant to your issue: ### Code example (inline, gist, or repo) Following spec in `spec/e2e/association_proxy_spec.rb` fails, ``` it 'does not fetches duplicate nodes...

bug

It seems to me that bolt is significantly slower than http. I setup my test app as described in the docs: ``` rails new myapp -m http://neo4jrb.io/neo4j/neo4j.rb -O cd myapp...

Neo4j 3.4 introduced temporal types, including `datetime` and `local_datetime`. The `neo4j` gem does not yet support these: it converts Ruby Date, Time, DateTime types into an integer, and duration types...