dgraph-todo/schema.graphql

13 lines
172 B
GraphQL

type Task {
id: ID!
title: String!
completed: Boolean!
user: User!
}
type User {
username: String! @id
name: String
tasks: [Task] @hasInverse(field: user)
}