1
Fork 0

Remove unnecessary files.

This commit is contained in:
Peter - Ubuntu dual boot 2021-09-19 20:24:44 +01:00
parent f530e90d27
commit e0176b2cf8
1 changed files with 0 additions and 28 deletions

View File

@ -1,28 +0,0 @@
# GraphQL schema example
#
# https://gqlgen.com/getting-started/
type Todo {
id: ID!
text: String!
done: Boolean!
user: User!
}
type User {
id: ID!
name: String!
}
type Query {
todos: [Todo!]!
}
input NewTodo {
text: String!
userId: String!
}
type Mutation {
createTodo(input: NewTodo!): Todo!
}