68 lines
888 B
GraphQL
68 lines
888 B
GraphQL
query findTask($taskID: UUID!) {
|
|
findTask(input: {taskID: $taskID}) {
|
|
id
|
|
name
|
|
description
|
|
dueDate
|
|
position
|
|
complete
|
|
taskGroup {
|
|
id
|
|
name
|
|
}
|
|
badges {
|
|
checklist {
|
|
total
|
|
complete
|
|
}
|
|
}
|
|
checklists {
|
|
id
|
|
name
|
|
position
|
|
items {
|
|
id
|
|
name
|
|
taskChecklistID
|
|
complete
|
|
position
|
|
}
|
|
}
|
|
labels {
|
|
id
|
|
assignedDate
|
|
projectLabel {
|
|
id
|
|
name
|
|
createdDate
|
|
labelColor {
|
|
id
|
|
colorHex
|
|
position
|
|
name
|
|
}
|
|
}
|
|
}
|
|
assigned {
|
|
id
|
|
fullName
|
|
profileIcon {
|
|
url
|
|
initials
|
|
bgColor
|
|
}
|
|
}
|
|
}
|
|
me {
|
|
user {
|
|
id
|
|
fullName
|
|
profileIcon {
|
|
initials
|
|
bgColor
|
|
url
|
|
}
|
|
}
|
|
}
|
|
}
|