cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

r_chevalier335
Graph Buddy
since ‎10-11-2019
‎06-01-2022

User Statistics

  • 46 Posts
  • 2 Solutions
  • 1 Kudos given
  • 2 Kudos received

User Activity

How do I write a server schema that will return two nodes and the relationship between them in my client? I have a tree hierarchy made up of only two types. # a node type Node { ID: ID! name: String } # the relationship between two Node type Br...
I have a simple tree structure consisting of Nodes and "CHILD_OF_NODE" relationships (Node)<-[CHILD_OF_NODE]-(Node) My Server Schema: type Node { ID: ID! name: String } type branch @relation(name: "CHILD_OF_NODE"){ from:[Node] to:[Node] ID:Stri...
I'm trying to get a Vue CLI app with Apollographql Server to connect to Neo4j. I've used neo4j-graphql-js and the app can sucessfully connect to the Grandstack Server I have setup. grand-stack\api\src\index.js const driver = neo4j.driver( process.en...
I have a bunch of parts with child features. There are many versions(instances) of each part. Each instance will have a different value for each feature. I want to display each instance and it's values as a column in a table. I can return all the ...
I have been running Neo4J V 3.5.19 with this docker script docker run \ --publish=7474:7474 --publish=7687:7687 \ --volume=$HOME/neo4j/data:/data \ --volume=$HOME/neo4j/logs:/logs \ --env NEO4JLABS_PLUGINS='["apoc"]' \ --env NEO4J_AUTH=neo4j/test \ -...
Kudos from
Kudos given to