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

[This is a query rather than an issue, please close if that's a problem (I can't log-in to gitter as it only supports OAuth and my accounts which support that...

### I followed 'Setup' chapter to modify `config/application.rb`: ```ruby require 'neo4j/ratiltie' ... config.neo4j.session.options = {ssl: false} config.neo4j.session.type = :bolt config.neo4j.session.url = 'bolt://neo4j:neo4j@localhost:7687' ``` ### and make a simple model `Role.rb`...

Currently getting connection failures, which I assume are due to running `9.6.2`, so I'm looking to get this running with the `10.0.x` code Additional information which could be helpful if...

When we preload an association, methods like `.empty?` or `.size` still produce a query It cause an N+1 queries issues when we use this gem together with `fast_jsonapi` gem. See...

Fixes # This pull introduces/changes: * Implementing similar `touch` functionality to [ActiveRecord ](https://apidock.com/rails/ActiveRecord/Timestamp/touch) * Allows specifying column(s) to touch in addition to `updated_at`. * If no attributes are passed, it...

As the title states, the `after_find` ActiveNode callback does not get executed after performing a query that returns a record. Additional information which could be helpful if relevant to your...

I am updating an app to use v10 to be able to use the seabolt adapter, and am running into a problem trying to deploy to a staging environment. I...

### Runtime information: Neo4j database version: neo4j 3.3.1 `neo4j` gem version: neo4j (9.0.7) `neo4j-core` gem version: neo4j-core (8.1.0) `neo4j-rake_tasks` gem version: neo4j-rake_tasks (0.7.18) on `Linux ubuntu 4.4.0-109-generic` I've an error...

user feedback required

Hey guys! Since I'm not going to be doing any more work for the project, I think it's about time that I handed in my keys to the organization and...

According to Neo4j.rb documentation [here](http://neo4jrb.readthedocs.io/en/9.0.x/Querying.html?highlight=save#associations-and-unpersisted-nodes), setting associations saves automatically. In Rails 5, AttributeAssignment was moved from ActiveRecord to ActiveModel as mentioned [here](https://blog.bigbinary.com/2016/05/17/rails-5-moved-assign-attributes-from-activerecord-to-activemodel.html). Therefore, ActiveNode has the following methods: ``` model.assign_attributes()...