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 pull introduces/changes: * Add possibility to set login, password, encryption on/off for using migration in non-Rails projects

I'm trying to produce a query similar to the following via method chaining. It gets the top five friends, ordered by name, of each user. ``` MATCH (user:User)-[:friend_of]->(friend:User) WITH user,...

This is a straw man solution for #1639 I do not expect this is ultimately how we want to solve it, but rather, opening this PR as an example that...

When we experience e.g. a constraint validation failure, we're getting `Neo4j::Driver::Exceptions::ClientException` instead of the expected error class, `ActiveGraph::Core::SchemaErrors::ConstraintValidationFailedError`. Upon digging deeper, it appears to me that the `ActiveGraph::Core::SchemaErrors::CypherError` family of...

I'm trying to upgrade to v10 (for neo4j 4.0 support) and got a lot of issues while setting up the project. # repro 1. create a blank new rails app...

I get this when running `rails neo4j:migrate` locally: ``` Neo4j::Driver::Exceptions::DatabaseException: Could not initialize class org.eclipse.collections.impl.utility.LazyIterate ``` The neo4j-server is installed with: ``` rails neo4j:install[community-latest] ``` My Gemfile is: ``` gem...

hi, When trying to run `bundle exec rake neo4j:migrate` in a project that is not Rails, I get the following error: ``` rake aborted! LoadError: cannot load such file --...

When I add a node property existence constraint to the database and try to create invalid node using the ActiveNode model, there is no error and new object is returned....

does this gem support ActiveStorage? got examples? Or if not, what is the solution for file attachments? Thanks!

We use a sidekiq process with 3 threads in order to synchronize between postgresql and neo4j DB. Until migrating to v10 this worked flawlessly, but now, it seems that whenever...