Add state to task

Signed-off-by: gearnode <bryan@frimin.fr>
This commit is contained in:
gearnode
2025-01-30 15:00:24 -08:00
parent 51f87c7501
commit a054fae323
7 changed files with 202 additions and 0 deletions

View File

@@ -20,6 +20,10 @@ enum ControlState {
IMPLEMENTED
}
enum TaskState {
TODO
DONE
}
type PageInfo {
hasNextPage: Boolean!
@@ -186,6 +190,7 @@ type Task implements Node {
id: ID!
name: String!
description: String!
state: TaskState!
evidences(
first: Int