Skip to content

Instantly share code, notes, and snippets.

@danstarns
Created January 7, 2022 13:18
Show Gist options
  • Select an option

  • Save danstarns/fed2137cc1b44e2e30a0eb7b93f069c1 to your computer and use it in GitHub Desktop.

Select an option

Save danstarns/fed2137cc1b44e2e30a0eb7b93f069c1 to your computer and use it in GitHub Desktop.
Neo4j-GraphQL-Code-Challenge

Neo4j-GraphQL-Code-Challenge

In this project, connect to or start a Neo4j database and seed data, run your own Neo4j GraphQL API, and make a HTTP call to your Neo4j GraphQL API using Javascript in the browser.

Objectives

  1. Connect to or start a Neo4j database and seed data
  2. Build a Neo4j GraphQL API to interact with the seeded data
  3. Make a http call to your Neo4j GraphQL API using Javascript in the browser

Seed Data

CREATE (m:Movie {title: "Forrest Gump"})
MERGE (m)<-[:ACTED_IN {screenTime: 100}]-(:Person {name: "Tom Hanks"})

To show completion:

  • Push your API and Browser code to a private Github repo
  • In your private repo, add Github users @darrellwarde, @angrykoala, @danstarns

Please do not make a public repo or pull request with your project.

References

  1. Neo4j GraphQL Github
  2. Neo4j Desktop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment