-
Notifications
You must be signed in to change notification settings - Fork 276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NoMethodError (undefined method `to_sym' for nil:NilClass) when fetching Node #1663
Comments
Might be related, |
@michalkorzawski Is there any specific INDEX in DB which is causing this issue? |
We are also running into this issue on Neo4j 4.4.0 (a co-workers instance), but I don't seem to have the issue running 4.2.1. We are going to attempt to downgrade to 4.2.12 on the co-workers instance. |
I also ran into this issue and the underlying issue is the 2 seemingly default indexes in the neo4j db. I'm not sure exactly what creates these indexes, if they're necessary/default etc? But these are in the default neo4j docker image database, and in my neo4j desktop generated db as well. Should activegraph be able to assume these to be empty? / for the label to be nil? |
Any idea when it will? I'm having the same issue trying to connect to AuraDB and I'm DYING to use Neo4j in my Rails 7 app. Please help :) Can I downgrade to a version that is supported with AuraDB? I have bolt installed too. Just can't figure this out. |
I assume this has been fixed with #1669 |
Can I confirm that this gem is not supported on AuraDB with v4? Using the connection string like:
Is this only for JRuby and not MRI development? |
@amitsuryavanshi switching to |
Hi
I have an issue with fetching data - all operation like Model.first, Model.last, Model.find_by(name: 'some name') ends up with error NoMethodError (undefined method `to_sym' for nil:NilClass)
BUT when I copy/paste
ActiveGraph::Core::Schema
from activegraph source code to my app and in application.rb I'm loading this code like this:everything is working fine
label(keys, row)
from below's method is causing this error (only then I'm not including this code in my rails app)I run neo4j db as a docker image
Do you know why could it be?
The text was updated successfully, but these errors were encountered: