feature: UI changes
This commit is contained in:
@ -8,6 +8,7 @@ query findProject($projectId: String!) {
|
||||
profileIcon {
|
||||
url
|
||||
initials
|
||||
bgColor
|
||||
}
|
||||
}
|
||||
taskGroups {
|
||||
@ -19,6 +20,16 @@ query findProject($projectId: String!) {
|
||||
name
|
||||
position
|
||||
description
|
||||
assigned {
|
||||
userID
|
||||
firstName
|
||||
lastName
|
||||
profileIcon {
|
||||
url
|
||||
initials
|
||||
bgColor
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -14,6 +14,7 @@ query findTask($taskID: UUID!) {
|
||||
profileIcon {
|
||||
url
|
||||
initials
|
||||
bgColor
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -4,6 +4,7 @@ query me {
|
||||
lastName
|
||||
profileIcon {
|
||||
initials
|
||||
bgColor
|
||||
}
|
||||
}
|
||||
}
|
||||
|
10
web/src/shared/graphql/unassignTask.graphqls
Normal file
10
web/src/shared/graphql/unassignTask.graphqls
Normal file
@ -0,0 +1,10 @@
|
||||
mutation unassignTask($taskID: UUID!, $userID: UUID!) {
|
||||
unassignTask(input: {taskID: $taskID, userID: $userID}) {
|
||||
assigned {
|
||||
userID
|
||||
firstName
|
||||
lastName
|
||||
}
|
||||
taskID
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user