We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Neography::Node.create(x: nil, y: 1).neo_id # => nil Neography::Node.create(x: 0, y: 1).neo_id # => "1"
Should reject nils from the hash if that's a problem.
data.reject { |k, v| v.nil? }
Anyway if there's an error it should be raised.
The text was updated successfully, but these errors were encountered:
Update:
Looks like Neo4j server returns 500:
RestClient.post('http://localhost:7474/db/data/node/', {x:nil})
and HTTParty's post returns nil. I checked their docs and it should return a response object with .code. Any idea why?
post
.code
Sorry, something went wrong.
In evaluate_response I log errors but return nil.
78766b1
Merge pull request maxdemarzi#23 from blizkreeg/models
9fef1c0
always return end node
No branches or pull requests
Should reject nils from the hash if that's a problem.
Anyway if there's an error it should be raised.
The text was updated successfully, but these errors were encountered: