2020-04-10 04:40:22 +02:00
|
|
|
scalar Time
|
|
|
|
scalar UUID
|
2020-06-13 00:21:58 +02:00
|
|
|
scalar Upload
|
2020-04-10 04:40:22 +02:00
|
|
|
|
2020-07-05 01:02:57 +02:00
|
|
|
enum RoleCode {
|
|
|
|
owner
|
|
|
|
admin
|
|
|
|
member
|
|
|
|
observer
|
|
|
|
}
|
|
|
|
|
2020-04-21 01:04:27 +02:00
|
|
|
type ProjectLabel {
|
2020-05-27 02:53:31 +02:00
|
|
|
id: ID!
|
2020-04-21 01:04:27 +02:00
|
|
|
createdDate: Time!
|
2020-05-27 23:18:50 +02:00
|
|
|
labelColor: LabelColor!
|
2020-04-21 01:04:27 +02:00
|
|
|
name: String
|
|
|
|
}
|
|
|
|
|
2020-05-27 23:18:50 +02:00
|
|
|
type LabelColor {
|
|
|
|
id: ID!
|
|
|
|
name: String!
|
|
|
|
position: Float!
|
|
|
|
colorHex: String!
|
|
|
|
}
|
|
|
|
|
2020-04-20 05:02:55 +02:00
|
|
|
type TaskLabel {
|
2020-05-27 02:53:31 +02:00
|
|
|
id: ID!
|
2020-05-31 06:11:19 +02:00
|
|
|
projectLabel: ProjectLabel!
|
2020-04-21 01:04:27 +02:00
|
|
|
assignedDate: Time!
|
2020-04-20 05:02:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type ProfileIcon {
|
|
|
|
url: String
|
|
|
|
initials: String
|
2020-04-21 01:04:27 +02:00
|
|
|
bgColor: String
|
2020-04-20 05:02:55 +02:00
|
|
|
}
|
|
|
|
|
2020-07-05 01:02:57 +02:00
|
|
|
type Member {
|
2020-05-27 02:53:31 +02:00
|
|
|
id: ID!
|
2020-07-05 01:02:57 +02:00
|
|
|
role: Role!
|
2020-06-13 00:21:58 +02:00
|
|
|
fullName: String!
|
2020-07-05 01:02:57 +02:00
|
|
|
username: String!
|
2020-04-20 05:02:55 +02:00
|
|
|
profileIcon: ProfileIcon!
|
|
|
|
}
|
|
|
|
|
2020-04-10 04:40:22 +02:00
|
|
|
type RefreshToken {
|
2020-05-27 02:53:31 +02:00
|
|
|
id: ID!
|
2020-04-10 04:40:22 +02:00
|
|
|
userId: UUID!
|
|
|
|
expiresAt: Time!
|
|
|
|
createdAt: Time!
|
|
|
|
}
|
|
|
|
|
2020-07-05 01:02:57 +02:00
|
|
|
type Role {
|
|
|
|
code: String!
|
|
|
|
name: String!
|
|
|
|
}
|
|
|
|
|
2020-04-10 04:40:22 +02:00
|
|
|
type UserAccount {
|
2020-05-27 02:53:31 +02:00
|
|
|
id: ID!
|
2020-04-10 04:40:22 +02:00
|
|
|
email: String!
|
|
|
|
createdAt: Time!
|
2020-06-13 00:21:58 +02:00
|
|
|
fullName: String!
|
|
|
|
initials: String!
|
2020-07-05 01:02:57 +02:00
|
|
|
role: Role!
|
2020-04-10 04:40:22 +02:00
|
|
|
username: String!
|
2020-04-20 05:02:55 +02:00
|
|
|
profileIcon: ProfileIcon!
|
2020-04-10 04:40:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type Team {
|
2020-05-27 02:53:31 +02:00
|
|
|
id: ID!
|
2020-04-10 04:40:22 +02:00
|
|
|
createdAt: Time!
|
|
|
|
name: String!
|
2020-07-05 01:02:57 +02:00
|
|
|
members: [Member!]!
|
2020-04-10 04:40:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type Project {
|
2020-05-27 02:53:31 +02:00
|
|
|
id: ID!
|
2020-04-10 04:40:22 +02:00
|
|
|
createdAt: Time!
|
|
|
|
name: String!
|
2020-04-20 05:02:55 +02:00
|
|
|
team: Team!
|
2020-07-05 01:02:57 +02:00
|
|
|
owner: Member!
|
2020-04-10 04:40:22 +02:00
|
|
|
taskGroups: [TaskGroup!]!
|
2020-07-05 01:02:57 +02:00
|
|
|
members: [Member!]!
|
2020-04-21 01:04:27 +02:00
|
|
|
labels: [ProjectLabel!]!
|
2020-04-10 04:40:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type TaskGroup {
|
2020-05-27 02:53:31 +02:00
|
|
|
id: ID!
|
2020-04-10 04:40:22 +02:00
|
|
|
projectID: String!
|
|
|
|
createdAt: Time!
|
|
|
|
name: String!
|
|
|
|
position: Float!
|
|
|
|
tasks: [Task!]!
|
|
|
|
}
|
|
|
|
|
2020-06-19 01:12:15 +02:00
|
|
|
type ChecklistBadge {
|
|
|
|
complete: Int!
|
|
|
|
total: Int!
|
|
|
|
}
|
|
|
|
|
|
|
|
type TaskBadges {
|
|
|
|
checklist: ChecklistBadge
|
|
|
|
}
|
|
|
|
|
2020-04-10 04:40:22 +02:00
|
|
|
type Task {
|
2020-05-27 02:53:31 +02:00
|
|
|
id: ID!
|
2020-04-11 04:22:22 +02:00
|
|
|
taskGroup: TaskGroup!
|
2020-04-10 04:40:22 +02:00
|
|
|
createdAt: Time!
|
|
|
|
name: String!
|
|
|
|
position: Float!
|
2020-04-20 05:02:55 +02:00
|
|
|
description: String
|
2020-06-16 00:36:59 +02:00
|
|
|
dueDate: Time
|
2020-06-19 01:12:15 +02:00
|
|
|
complete: Boolean!
|
2020-07-05 01:02:57 +02:00
|
|
|
assigned: [Member!]!
|
2020-04-20 05:02:55 +02:00
|
|
|
labels: [TaskLabel!]!
|
2020-06-19 01:12:15 +02:00
|
|
|
checklists: [TaskChecklist!]!
|
|
|
|
badges: TaskBadges!
|
2020-04-10 04:40:22 +02:00
|
|
|
}
|
|
|
|
|
2020-07-05 01:02:57 +02:00
|
|
|
input ProjectsFilter {
|
|
|
|
teamID: UUID
|
|
|
|
}
|
|
|
|
|
|
|
|
input FindUser {
|
|
|
|
userId: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
input FindProject {
|
|
|
|
projectId: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
input FindTask {
|
|
|
|
taskID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
type Organization {
|
|
|
|
id: ID!
|
|
|
|
name: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-10 04:40:22 +02:00
|
|
|
input ProjectsFilter {
|
2020-06-23 22:20:53 +02:00
|
|
|
teamID: UUID
|
2020-04-10 04:40:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input FindUser {
|
|
|
|
userId: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
input FindProject {
|
|
|
|
projectId: String!
|
|
|
|
}
|
|
|
|
|
2020-04-20 05:02:55 +02:00
|
|
|
input FindTask {
|
|
|
|
taskID: UUID!
|
|
|
|
}
|
|
|
|
|
2020-06-21 00:49:11 +02:00
|
|
|
type Organization {
|
|
|
|
id: ID!
|
|
|
|
name: String!
|
|
|
|
}
|
|
|
|
|
2020-06-23 22:20:53 +02:00
|
|
|
input FindTeam {
|
|
|
|
teamID: UUID!
|
|
|
|
}
|
|
|
|
|
2020-04-10 04:40:22 +02:00
|
|
|
type Query {
|
2020-06-21 00:49:11 +02:00
|
|
|
organizations: [Organization!]!
|
2020-04-10 04:40:22 +02:00
|
|
|
users: [UserAccount!]!
|
|
|
|
findUser(input: FindUser!): UserAccount!
|
|
|
|
findProject(input: FindProject!): Project!
|
2020-04-20 05:02:55 +02:00
|
|
|
findTask(input: FindTask!): Task!
|
2020-04-10 04:40:22 +02:00
|
|
|
projects(input: ProjectsFilter): [Project!]!
|
2020-06-23 22:20:53 +02:00
|
|
|
findTeam(input: FindTeam!): Team!
|
2020-06-01 04:20:03 +02:00
|
|
|
teams: [Team!]!
|
2020-05-27 23:18:50 +02:00
|
|
|
labelColors: [LabelColor!]!
|
2020-04-10 04:40:22 +02:00
|
|
|
taskGroups: [TaskGroup!]!
|
2020-04-20 05:02:55 +02:00
|
|
|
me: UserAccount!
|
2020-04-10 04:40:22 +02:00
|
|
|
}
|
|
|
|
|
2020-07-05 01:02:57 +02:00
|
|
|
type Mutation {}
|
|
|
|
|
|
|
|
extend type Mutation {
|
|
|
|
createTask(input: NewTask!): Task!
|
|
|
|
deleteTask(input: DeleteTaskInput!): DeleteTaskPayload!
|
|
|
|
|
|
|
|
updateTaskDescription(input: UpdateTaskDescriptionInput!): Task!
|
|
|
|
updateTaskLocation(input: NewTaskLocation!): UpdateTaskLocationPayload!
|
|
|
|
updateTaskName(input: UpdateTaskName!): Task!
|
|
|
|
setTaskComplete(input: SetTaskComplete!): Task!
|
|
|
|
updateTaskDueDate(input: UpdateTaskDueDate!): Task!
|
|
|
|
|
|
|
|
assignTask(input: AssignTaskInput): Task!
|
|
|
|
unassignTask(input: UnassignTaskInput): Task!
|
|
|
|
}
|
|
|
|
|
2020-04-10 04:40:22 +02:00
|
|
|
input NewRefreshToken {
|
|
|
|
userId: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
input NewUserAccount {
|
|
|
|
username: String!
|
|
|
|
email: String!
|
2020-06-13 00:21:58 +02:00
|
|
|
fullName: String!
|
|
|
|
initials: String!
|
2020-04-10 04:40:22 +02:00
|
|
|
password: String!
|
2020-07-05 01:02:57 +02:00
|
|
|
roleCode: String!
|
2020-04-10 04:40:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input NewTeam {
|
|
|
|
name: String!
|
2020-06-21 00:49:11 +02:00
|
|
|
organizationID: UUID!
|
2020-04-10 04:40:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input NewProject {
|
2020-04-20 05:02:55 +02:00
|
|
|
userID: UUID!
|
|
|
|
teamID: UUID!
|
2020-04-10 04:40:22 +02:00
|
|
|
name: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
input NewTaskGroup {
|
|
|
|
projectID: String!
|
|
|
|
name: String!
|
|
|
|
position: Float!
|
|
|
|
}
|
|
|
|
|
|
|
|
input LogoutUser {
|
|
|
|
userID: String!
|
|
|
|
}
|
|
|
|
input NewTask {
|
|
|
|
taskGroupID: String!
|
|
|
|
name: String!
|
|
|
|
position: Float!
|
|
|
|
}
|
|
|
|
input NewTaskLocation {
|
2020-06-01 04:20:03 +02:00
|
|
|
taskID: UUID!
|
|
|
|
taskGroupID: UUID!
|
2020-04-10 04:40:22 +02:00
|
|
|
position: Float!
|
|
|
|
}
|
|
|
|
|
|
|
|
input DeleteTaskInput {
|
|
|
|
taskID: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
type DeleteTaskPayload {
|
|
|
|
taskID: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
input UpdateTaskName {
|
|
|
|
taskID: String!
|
|
|
|
name: String!
|
|
|
|
}
|
|
|
|
|
2020-04-11 04:47:43 +02:00
|
|
|
input NewTaskGroupLocation {
|
|
|
|
taskGroupID: UUID!
|
|
|
|
position: Float!
|
|
|
|
}
|
|
|
|
|
2020-04-11 21:24:45 +02:00
|
|
|
input DeleteTaskGroupInput {
|
|
|
|
taskGroupID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
type DeleteTaskGroupPayload {
|
|
|
|
ok: Boolean!
|
|
|
|
affectedRows: Int!
|
|
|
|
taskGroup: TaskGroup!
|
|
|
|
}
|
|
|
|
|
2020-06-19 01:12:15 +02:00
|
|
|
type DeleteTaskChecklistItemPayload {
|
|
|
|
ok: Boolean!
|
|
|
|
taskChecklistItem: TaskChecklistItem!
|
|
|
|
}
|
|
|
|
|
|
|
|
type TaskChecklistItem {
|
|
|
|
id: ID!
|
|
|
|
name: String!
|
|
|
|
taskChecklistID: UUID!
|
|
|
|
complete: Boolean!
|
|
|
|
position: Float!
|
|
|
|
dueDate: Time!
|
|
|
|
}
|
|
|
|
|
|
|
|
type TaskChecklist {
|
|
|
|
id: ID!
|
|
|
|
name: String!
|
|
|
|
position: Float!
|
|
|
|
items: [TaskChecklistItem!]!
|
|
|
|
}
|
|
|
|
|
2020-04-20 05:02:55 +02:00
|
|
|
input AssignTaskInput {
|
|
|
|
taskID: UUID!
|
|
|
|
userID: UUID!
|
|
|
|
}
|
|
|
|
|
2020-04-21 01:04:27 +02:00
|
|
|
input UnassignTaskInput {
|
|
|
|
taskID: UUID!
|
|
|
|
userID: UUID!
|
|
|
|
}
|
2020-04-20 05:02:55 +02:00
|
|
|
input UpdateTaskDescriptionInput {
|
|
|
|
taskID: UUID!
|
|
|
|
description: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
input AddTaskLabelInput {
|
|
|
|
taskID: UUID!
|
2020-05-31 06:11:19 +02:00
|
|
|
projectLabelID: UUID!
|
2020-04-20 05:02:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input RemoveTaskLabelInput {
|
|
|
|
taskLabelID: UUID!
|
|
|
|
}
|
|
|
|
|
2020-04-21 01:04:27 +02:00
|
|
|
input NewProjectLabel {
|
|
|
|
projectID: UUID!
|
|
|
|
labelColorID: UUID!
|
|
|
|
name: String
|
|
|
|
}
|
|
|
|
|
2020-05-28 03:12:50 +02:00
|
|
|
input DeleteProjectLabel {
|
|
|
|
projectLabelID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
input UpdateProjectLabelName {
|
|
|
|
projectLabelID: UUID!
|
|
|
|
name: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
input UpdateProjectLabel {
|
|
|
|
projectLabelID: UUID!
|
|
|
|
labelColorID: UUID!
|
|
|
|
name: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
input UpdateProjectLabelColor {
|
|
|
|
projectLabelID: UUID!
|
|
|
|
labelColorID: UUID!
|
|
|
|
}
|
|
|
|
|
2020-05-31 06:11:19 +02:00
|
|
|
input ToggleTaskLabelInput {
|
|
|
|
taskID: UUID!
|
|
|
|
projectLabelID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
type ToggleTaskLabelPayload {
|
|
|
|
active: Boolean!
|
|
|
|
task: Task!
|
|
|
|
}
|
|
|
|
|
|
|
|
input UpdateProjectName {
|
|
|
|
projectID: UUID!
|
|
|
|
name: String!
|
|
|
|
}
|
|
|
|
|
2020-06-01 04:20:03 +02:00
|
|
|
type UpdateTaskLocationPayload {
|
|
|
|
previousTaskGroupID: UUID!
|
|
|
|
task: Task!
|
|
|
|
}
|
2020-06-13 00:21:58 +02:00
|
|
|
|
|
|
|
input UpdateTaskGroupName {
|
|
|
|
taskGroupID: UUID!
|
|
|
|
name: String!
|
|
|
|
}
|
|
|
|
|
2020-06-16 00:36:59 +02:00
|
|
|
input UpdateTaskDueDate {
|
|
|
|
taskID: UUID!
|
|
|
|
dueDate: Time
|
|
|
|
}
|
|
|
|
|
2020-06-19 01:12:15 +02:00
|
|
|
input SetTaskComplete {
|
|
|
|
taskID: UUID!
|
|
|
|
complete: Boolean!
|
|
|
|
}
|
|
|
|
|
|
|
|
input CreateTaskChecklist {
|
|
|
|
taskID: UUID!
|
|
|
|
name: String!
|
|
|
|
position: Float!
|
|
|
|
}
|
|
|
|
|
|
|
|
input CreateTaskChecklistItem {
|
|
|
|
taskChecklistID: UUID!
|
|
|
|
name: String!
|
|
|
|
position: Float!
|
|
|
|
}
|
|
|
|
|
|
|
|
input SetTaskChecklistItemComplete {
|
|
|
|
taskChecklistItemID: UUID!
|
|
|
|
complete: Boolean!
|
|
|
|
}
|
|
|
|
input DeleteTaskChecklistItem {
|
|
|
|
taskChecklistItemID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
input UpdateTaskChecklistItemName {
|
|
|
|
taskChecklistItemID: UUID!
|
|
|
|
name: String!
|
|
|
|
}
|
|
|
|
|
2020-06-21 00:49:11 +02:00
|
|
|
input CreateTeamMember {
|
|
|
|
userID: UUID!
|
|
|
|
teamID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
type CreateTeamMemberPayload {
|
|
|
|
team: Team!
|
2020-07-05 01:02:57 +02:00
|
|
|
teamMember: Member!
|
2020-06-21 00:49:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input DeleteProject {
|
|
|
|
projectID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
type DeleteProjectPayload {
|
|
|
|
ok: Boolean!
|
|
|
|
project: Project!
|
|
|
|
}
|
|
|
|
|
2020-06-23 22:20:53 +02:00
|
|
|
input DeleteTeam {
|
|
|
|
teamID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
type DeleteTeamPayload {
|
|
|
|
ok: Boolean!
|
|
|
|
team: Team!
|
|
|
|
projects: [Project!]!
|
|
|
|
}
|
|
|
|
|
|
|
|
input DeleteUserAccount {
|
|
|
|
userID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
type DeleteUserAccountPayload {
|
|
|
|
ok: Boolean!
|
|
|
|
userAccount: UserAccount!
|
|
|
|
}
|
|
|
|
|
|
|
|
input UpdateTaskChecklistName {
|
|
|
|
taskChecklistID: UUID!
|
|
|
|
name: String!
|
|
|
|
}
|
|
|
|
input DeleteTaskChecklist {
|
|
|
|
taskChecklistID: UUID!
|
|
|
|
}
|
|
|
|
type DeleteTaskChecklistPayload {
|
|
|
|
ok: Boolean!
|
|
|
|
taskChecklist: TaskChecklist!
|
|
|
|
}
|
2020-07-05 01:02:57 +02:00
|
|
|
|
|
|
|
input CreateProjectMember {
|
|
|
|
projectID: UUID!
|
|
|
|
userID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
type CreateProjectMemberPayload {
|
|
|
|
ok: Boolean!
|
|
|
|
member: Member!
|
|
|
|
}
|
|
|
|
|
|
|
|
input DeleteProjectMember {
|
|
|
|
projectID: UUID!
|
|
|
|
userID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
type DeleteProjectMemberPayload {
|
|
|
|
ok: Boolean!
|
|
|
|
member: Member!
|
|
|
|
projectID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
input UpdateProjectMemberRole {
|
|
|
|
projectID: UUID!
|
|
|
|
userID: UUID!
|
|
|
|
roleCode: RoleCode!
|
|
|
|
}
|
|
|
|
|
|
|
|
type UpdateProjectMemberRolePayload {
|
|
|
|
ok: Boolean!
|
|
|
|
member: Member!
|
|
|
|
}
|
|
|
|
|
|
|
|
input SetProjectOwner {
|
|
|
|
projectID: UUID!
|
|
|
|
ownerID: UUID!
|
|
|
|
}
|
|
|
|
type SetProjectOwnerPayload {
|
|
|
|
ok: Boolean!
|
|
|
|
prevOwner: Member!
|
|
|
|
newOwner: Member!
|
|
|
|
}
|
|
|
|
|
|
|
|
input UpdateTeamMemberRole {
|
|
|
|
teamID: UUID!
|
|
|
|
userID: UUID!
|
|
|
|
roleCode: RoleCode!
|
|
|
|
}
|
|
|
|
|
|
|
|
type UpdateTeamMemberRolePayload {
|
|
|
|
ok: Boolean!
|
|
|
|
member: Member!
|
|
|
|
}
|
|
|
|
|
|
|
|
input SetTeamOwner {
|
|
|
|
teamID: UUID!
|
|
|
|
userID: UUID!
|
|
|
|
}
|
|
|
|
|
|
|
|
type SetTeamOwnerPayload {
|
|
|
|
ok: Boolean!
|
|
|
|
prevOwner: Member!
|
|
|
|
newOwner: Member!
|
|
|
|
}
|
|
|
|
|
2020-04-10 04:40:22 +02:00
|
|
|
type Mutation {
|
|
|
|
createRefreshToken(input: NewRefreshToken!): RefreshToken!
|
2020-04-11 21:24:45 +02:00
|
|
|
|
2020-04-10 04:40:22 +02:00
|
|
|
createUserAccount(input: NewUserAccount!): UserAccount!
|
2020-06-23 22:20:53 +02:00
|
|
|
deleteUserAccount(input: DeleteUserAccount!): DeleteUserAccountPayload!
|
2020-04-11 21:24:45 +02:00
|
|
|
|
2020-06-23 22:20:53 +02:00
|
|
|
deleteTeam(input: DeleteTeam!): DeleteTeamPayload!
|
2020-04-10 04:40:22 +02:00
|
|
|
createTeam(input: NewTeam!): Team!
|
2020-06-13 00:21:58 +02:00
|
|
|
clearProfileAvatar: UserAccount!
|
2020-04-11 21:24:45 +02:00
|
|
|
|
2020-06-21 00:49:11 +02:00
|
|
|
createTeamMember(input: CreateTeamMember!): CreateTeamMemberPayload!
|
2020-07-05 01:02:57 +02:00
|
|
|
updateTeamMemberRole(input: UpdateTeamMemberRole!): UpdateTeamMemberRolePayload!
|
|
|
|
setTeamOwner(input: SetTeamOwner!): SetTeamOwnerPayload!
|
2020-06-21 00:49:11 +02:00
|
|
|
|
2020-04-10 04:40:22 +02:00
|
|
|
createProject(input: NewProject!): Project!
|
2020-06-21 00:49:11 +02:00
|
|
|
deleteProject(input: DeleteProject!): DeleteProjectPayload!
|
2020-05-31 06:11:19 +02:00
|
|
|
updateProjectName(input: UpdateProjectName): Project!
|
2020-07-05 01:02:57 +02:00
|
|
|
createProjectMember(input: CreateProjectMember!): CreateProjectMemberPayload!
|
|
|
|
deleteProjectMember(input: DeleteProjectMember!): DeleteProjectMemberPayload!
|
|
|
|
updateProjectMemberRole(input: UpdateProjectMemberRole!): UpdateProjectMemberRolePayload!
|
|
|
|
setProjectOwner(input: SetProjectOwner!): SetProjectOwnerPayload!
|
2020-05-28 03:12:50 +02:00
|
|
|
|
2020-04-21 01:04:27 +02:00
|
|
|
createProjectLabel(input: NewProjectLabel!): ProjectLabel!
|
2020-05-28 03:12:50 +02:00
|
|
|
deleteProjectLabel(input: DeleteProjectLabel!): ProjectLabel!
|
|
|
|
updateProjectLabel(input: UpdateProjectLabel!): ProjectLabel!
|
|
|
|
updateProjectLabelName(input: UpdateProjectLabelName!): ProjectLabel!
|
|
|
|
updateProjectLabelColor(input: UpdateProjectLabelColor!): ProjectLabel!
|
2020-04-11 21:24:45 +02:00
|
|
|
|
2020-04-10 04:40:22 +02:00
|
|
|
createTaskGroup(input: NewTaskGroup!): TaskGroup!
|
2020-04-11 04:47:43 +02:00
|
|
|
updateTaskGroupLocation(input: NewTaskGroupLocation!): TaskGroup!
|
2020-06-13 00:21:58 +02:00
|
|
|
updateTaskGroupName(input: UpdateTaskGroupName!): TaskGroup!
|
2020-04-11 21:24:45 +02:00
|
|
|
deleteTaskGroup(input: DeleteTaskGroupInput!): DeleteTaskGroupPayload!
|
|
|
|
|
2020-04-20 05:02:55 +02:00
|
|
|
addTaskLabel(input: AddTaskLabelInput): Task!
|
|
|
|
removeTaskLabel(input: RemoveTaskLabelInput): Task!
|
2020-05-31 06:11:19 +02:00
|
|
|
toggleTaskLabel(input: ToggleTaskLabelInput!): ToggleTaskLabelPayload!
|
2020-04-20 05:02:55 +02:00
|
|
|
|
2020-06-19 01:12:15 +02:00
|
|
|
createTaskChecklist(input: CreateTaskChecklist!): TaskChecklist!
|
2020-06-23 22:20:53 +02:00
|
|
|
deleteTaskChecklist(input: DeleteTaskChecklist!): DeleteTaskChecklistPayload!
|
|
|
|
updateTaskChecklistName(input: UpdateTaskChecklistName!): TaskChecklist!
|
2020-06-19 01:12:15 +02:00
|
|
|
createTaskChecklistItem(input: CreateTaskChecklistItem!): TaskChecklistItem!
|
|
|
|
updateTaskChecklistItemName(input: UpdateTaskChecklistItemName!): TaskChecklistItem!
|
|
|
|
setTaskChecklistItemComplete(input: SetTaskChecklistItemComplete!): TaskChecklistItem!
|
|
|
|
deleteTaskChecklistItem(input: DeleteTaskChecklistItem!): DeleteTaskChecklistItemPayload!
|
|
|
|
|
2020-04-11 21:24:45 +02:00
|
|
|
logoutUser(input: LogoutUser!): Boolean!
|
2020-04-10 04:40:22 +02:00
|
|
|
}
|
2020-07-05 01:02:57 +02:00
|
|
|
|