refactor: split resolver into multiple files based on domain

This commit is contained in:
Jordan Knott
2021-10-25 17:42:57 -05:00
parent fe90631df5
commit cf63783174
37 changed files with 4180 additions and 4220 deletions

View File

@ -0,0 +1,8 @@
type TaskGroup {
id: ID!
projectID: String!
createdAt: Time!
name: String!
position: Float!
tasks: [Task!]!
}