Add ControlState type

Signed-off-by: gearnode <bryan@frimin.fr>
This commit is contained in:
gearnode
2025-01-27 18:18:43 +01:00
parent 422c96a250
commit 6631543824
5 changed files with 169 additions and 7 deletions

View File

@@ -13,6 +13,14 @@ interface Node {
id: ID!
}
enum ControlState {
NotStarted
InProgress
NotApplicable
Implemented
}
type PageInfo {
hasNextPage: Boolean!
hasPreviousPage: Boolean!
@@ -75,7 +83,7 @@ type Control implements Node {
id: ID!
name: String!
description: String!
state: String!
state: ControlState!
tasks(
first: Int