You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
540 B

# This file was generated based on ".graphqlconfig". Do not edit manually.
schema {
query: Query
mutation: Mutation
}
type Mutation {
addTask(description: String!, title: String!): TaskType!
changeDone(taskId: ID!): TaskType!
deleteTask(taskId: ID!): Boolean!
signIn(password: String!, username: String!): String!
signUp(password: String!, username: String!): Boolean!
}
type Query {
getTasks: [TaskType!]!
}
type TaskType {
description: String!
id: ID!
isDone: Boolean!
title: String!
}