Ayoub Hidri

Results 13 comments of Ayoub Hidri

@aseemk I actually tried to call the `query()` method first but I got an exception `TypeError: undefined is not a function`, than I used a simple console.log() to print out...

@royipressburger you are right I was calling `GraphDB.query()` instead of `GraphDB.cypher()` Now I am having another error here is what I am calling: ``` GraphDB.cypher({ query: 'MATCH (n) RETURN n',...

@royipressburger thank you for your patience here is what I am actually doing ``` const neo4j = require('neo4j'); const GraphDB = new neo4j.GraphDatabase('http://neo4j:neo4j@localhost:7474'); function callback(err, results) { console.log('callback'); if (err)...

@royipressburger sorry for the delay, I have the 2.0.0-RC2 version and the GraphDatabase.js calls a `http` method

@ShadaW11 I am interested in the article can I make the updates or it has to be the original author who makes it ?

Hello @ShadaW11 I am interested in updating this article. I am already registered in the writing for the community program.

I am also interested in this topic. IMHO it has to be splitted in multiple articles.

According to the documentation we should be able to create Relations using the api http://docs.neo4j.org/chunked/stable/rest-api-relationships.html#rest-api-create-relationship

I am just beginning to learn neo4j, so I don't know much about custom relationships sorry, but without going into these custom relationships, is it possible to just pass an...

okay thanks for the answer, I'll try to look more into the code to understand how it works.