RedisGraph with GraphQL (gqlgen) playground
# GraphQL schema example
#
# https://gqlgen.com/getting-started/

scalar Map

type Todo {
  id: ID!
  properties: Map!
  user: User!
}

type User {
  id: ID!
  name: String!
}

type Query {
  todos: [Todo!]!
}

input NewTodo {
  text: String!
  userId: String!
}

type Mutation {
  createTodo(input: NewTodo!): Todo!
}