taskcafe/web/src/shared/graphql/findTask.graphqls

22 lines
288 B
GraphQL
Raw Normal View History

2020-04-20 05:02:55 +02:00
query findTask($taskID: UUID!) {
findTask(input: {taskID: $taskID}) {
2020-05-27 02:53:31 +02:00
id
2020-04-20 05:02:55 +02:00
name
description
position
taskGroup {
2020-05-27 02:53:31 +02:00
id
2020-04-20 05:02:55 +02:00
}
assigned {
2020-05-27 02:53:31 +02:00
id
2020-04-20 05:02:55 +02:00
firstName
lastName
profileIcon {
url
initials
2020-04-21 01:04:27 +02:00
bgColor
2020-04-20 05:02:55 +02:00
}
}
}
}