Skip to content

Instantly share code, notes, and snippets.

View danstarns's full-sized avatar
🤟

Daniel Starns danstarns

🤟
View GitHub Profile
@danstarns
danstarns / neo4j-graphql-beta-getting-started.js
Last active April 7, 2021 15:11
neo4j-graphql-beta-getting-started
const { Neo4jGraphQL } = require("@neo4j/graphql");
const { ApolloServer } = require("apollo-server");
const neo4j = require("neo4j-driver");
const typeDefs = `
type Person {
name: String!
born: Int!
actedInMovies: [Movie!]! @relationship(type: "ACTED_IN", direction: OUT)
directedMovies: [Movie!]! @relationship(type: "DIRECTED", direction: OUT)
@danstarns
danstarns / neo4j-graphql-beta-getting-started-typedefs.gql
Created April 1, 2021 20:28
neo4j-graphql-beta-getting-started-typedefs
type Person {
name: String!
born: Int!
actedInMovies: [Movie!]! @relationship(type: "ACTED_IN", direction: OUT)
directedMovies: [Movie!]! @relationship(type: "DIRECTED", direction: OUT)
}
type Genre {
name: String!
movies: [Movie!]! @relationship(type: "IN_GENRE", direction: IN)
@danstarns
danstarns / neo4j-graphql-beta-getting-started-create-movie.gql
Last active April 6, 2021 10:29
neo4j-graphql-beta-getting-started-create-movie
mutation {
createMovies(
input: [
{
title: "Forrest Gump"
released: 1994
director: {
connect: {
where: { name: "Robert Zemeckis" }
}
@danstarns
danstarns / neo4j-graphql-beta-getting-started-create-actors.gql
Last active April 6, 2021 11:33
neo4j-graphql-beta-getting-started-create-actors
mutation {
updateMovies(
where: { title: "Forrest Gump" }
create: {
actors: [
{ name: "Tom Hanks", born: 1956 }
{ name: "Robin Wright", born: 1966 }
]
}
) {
@danstarns
danstarns / neo4j-graphql-beta-getting-started-add-genres.gql
Last active April 6, 2021 11:33
neo4j-graphql-beta-getting-started-add-genres
mutation {
updateMovies(
where: { title: "Forrest Gump" }
create: {
genres: [
{ name: "Drama" }
{ name: "Romance" }
]
}
) {
@danstarns
danstarns / neo4j-graphql-beta-getting-started-reading-the-graph.gql
Created April 1, 2021 20:41
neo4j-graphql-beta-getting-started-reading-the-graph
query GetMovie {
movies(where: { title: "Forrest Gump" }) {
title
released
actors {
name
born
}
director {
name
@danstarns
danstarns / neo4j-graphql-beta-getting-started-create-director.gql
Created April 6, 2021 10:30
neo4j-graphql-beta-getting-started-create-director
mutation {
createPeople(
input: [
{ name: "Robert Zemeckis", born: 1951 }
]
) {
people {
name
}
}
@danstarns
danstarns / neo4j-graphql-beta-ogm.js
Last active April 7, 2021 15:10
neo4j-graphql-beta-ogm
const { OGM } = require("@neo4j/graphql-ogm");
const { ApolloServer } = require("apollo-server");
const neo4j = require("neo4j-driver");
const typeDefs = `
type Person {
name: String!
born: Int!
actedInMovies: [Movie!]! @relationship(type: "ACTED_IN", direction: OUT)
@danstarns
danstarns / neo4j-graphql-beta-auth-example.gql
Created April 6, 2021 12:52
neo4j-graphql-beta-auth-example
type Person {
id: ID
name: String!
born: Int!
}
type Movie {
title: String!
released: Int!
director: Person! @relationship(type: "DIRECTED", direction: IN)
@danstarns
danstarns / DGQL-vs-Gremlin.md
Last active April 13, 2021 09:32
DGQL-vs-Gremlin