feature: add ability to assign tasks

This commit is contained in:
Jordan Knott
2020-04-19 22:02:55 -05:00
parent beaa215bc2
commit c38024e692
60 changed files with 2871 additions and 790 deletions

View File

@ -1,6 +1,15 @@
query findProject($projectId: String!) {
findProject(input: { projectId: $projectId }) {
name
members {
userID
firstName
lastName
profileIcon {
url
initials
}
}
taskGroups {
taskGroupID
name
@ -9,6 +18,7 @@ query findProject($projectId: String!) {
taskID
name
position
description
}
}
}