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.

futuristnicole
Node Link
since ‎06-15-2019
‎06-01-2022

User Statistics

  • 10 Posts
  • 1 Solutions
  • 4 Kudos given
  • 3 Kudos received

User Activity

I used the GRANDstack starter to make a website. Now I am trying to host it. I was able to host the Neo4j on GCP. However, I am having trouble with the GraphQL API. I notice there is no script for production only test, start and seedDB. I never use...
I build a GRANDStack for my portfolio. I used Neo4j sandbox when building the site. However, I am now ready to host the site and was looking at different ways for hosting. I decided on Neo4j Certified by Bitnami on GCP because I do not what to spe...
I want to use merge instead of create for making nodes. Since GraphQL does not make the merge statement for me, I am trying to make it myself. This is what I am tying. type Mutation { MergeLesson(id: ID!, name: String!, language: String!, dialect:...
I need to get the roll name and roll type in react. Here is my query... import gql from "graphql-tag"; const Person = gql` query Person{ Person{ id name roll { name type } } } `; export default Pe...
schema.graphql type Person { id: ID! name: String! roll: [Roll] @relation(name: "PLAYING", direction: "OUT") } type Roll { id: ID! type: String! name: String! person: [Person] @relation(name: "PLAYING", direction: "IN") } type Query {...