Questions tagged [graphenedb]
57 questions
0
votes
1 answer
neo4j uuid is not created
class Client
include Neo4j::ActiveNode
end
> client = Client.new
=> #
My expectation is that the…

Satchel
- 16,414
- 23
- 106
- 192
0
votes
0 answers
Graphaware Framework and UUID not starting on Neo4j GrapheneDB
I am trying to get the Graphaware Framework and UUID running on a GrapheneDB instance. I have followed the instructions to zip the JAR and neo4j.properties files and uploaded using the GrapheneDB Web Interface but UUID's are not added when I create…

n4nite
- 459
- 4
- 19
0
votes
1 answer
Missing some APOC procedures after installing latest APOC onto Neo4j 3.1.1
I installed the Neo4j APOC Stored Procedures but I only seem have access to some of the procedures. For example when I run "CALL apoc.convert.toJson([1,2,3])" I receive an error message:
There is no procedure with the name apoc.convert.toJson…

n4nite
- 459
- 4
- 19
0
votes
2 answers
Neo4j/graphenedb on Heroku Node.js/Ember.js WebSocket ERR_CONNECTION_RESET issue
I am using Neo4j database as graphenedb on Heroku connecting using Ember.js framework. The application is being run locally through Node.js (Not being run through Heroku server).
On a call to driver.session(); I receive this error:
WebSocket…

Ragnar
- 4,292
- 4
- 31
- 41
0
votes
1 answer
H12 request timeout on grapheneDB Neo4j connection
Needless to say I am new to both Heroku and GrapheneDB. I have a Nodejs app using Neo4j that runs fine on my local machine. I moved it to Heroku and used GrapheneDB to connect the neo4j DB to the app. When I run the app on Heroku I get a H12 Request…

MichaelE
- 757
- 14
- 42
0
votes
1 answer
Unable to insert data into GrapheneDB using curl from PHP
I am using GrapheneDB and I tried re-using the code which I used to use it to connect to Neo4J server from AWS server. But It is not inserting data into GrapheneDB and I have no idea what is wrong here. Previously, I used used localhost:7474 but now…

jason
- 3,932
- 11
- 52
- 123
0
votes
1 answer
Can't load CSV data into GrapheneDB Instance
I'm using GrapheneDB to host my Neo4j instance, and am using Readify's Neo4jClient nuget library to connect to it from my locally-running MVC application, like so:
var uri = new…

thesheps
- 635
- 4
- 11
0
votes
1 answer
Python Graphene Interface + InlineFragment seems doesn't resolve ObjectType fields
I try to resolve ObjectType fields with InlineFragment on a ObjectType that inherit from an Interface but it seems doesn't work.
Here is my schema:
@schema.register
class BundleInterface(graphene.Interface):
id = graphene.ID()
identifier =…

akira-dev
- 11
- 3
0
votes
2 answers
graphenedb_url connection error
My graphebedb_url is gotten from heroku to access my neo4j database online. It is correct but when I initiate db connection. It returns error 403.which is forbidden request.

Oladapo Adebowale
- 59
- 1
- 9
0
votes
1 answer
Setting up Heroku for Neo4J
When I use the command heroku addons create:graphenedb --version v195. It gives error "No app specified , Run this command from an app folder or specify which app to use." I am new to Heroku and I do not understand which app folder it is talking…

Oladapo Adebowale
- 59
- 1
- 9
0
votes
1 answer
Heroku PHP GrapheneDB Connection Issue
cant seem to connect php to graphenedb...
my code as below. i used the sample code as provided in the documentation but no use.

user4891653
- 3
- 1
-2
votes
1 answer
Load csv with Graphenedb
I tried to import files to the localhost with the following Clause and has been successful:
USING PERIODIC COMMIT
LOAD CSV WITH HEADERS FROM 'file:/Users/studio/Desktop/nodiToscana.csv' AS row
CREATE (:Startup {startupName: row.Startup});
when I…