Skip to content

Commit

Permalink
feat: fixed task types
Browse files Browse the repository at this point in the history
  • Loading branch information
jeessh committed Nov 25, 2023
1 parent fcda675 commit c7b9aa5
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions backend/typescript/graphql/types/taskType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,33 +16,33 @@ const taskType = gql`
input InputTaskDTO {
categoryId: Int!
title: String!
title: String
status: Status
description: String!
description: String
assigneeId: Int!
assignerId: Int!
creditValue: Int!
startDate: String!
endDate: String
comments: String!
creditValue: Int
startDate: DateTime!
endDate: DateTime
comments: String
recurrenceFrequency: Recurrence_Frequency
}
type TaskDTO {
id: Int!
category: String!
categoryId: Int!
title: String!
status: Status!
description: String!
title: String
status: Status
description: String
assigneeId: Int!
assignee: String!
assignerId: Int!
assigner: String!
creditValue: Int!
startDate: String!
endDate: String
comments: String!
creditValue: Int
startDate: DateTime!
endDate: DateTime
comments: String
recurrenceFrequency: Recurrence_Frequency
}
Expand Down

0 comments on commit c7b9aa5

Please sign in to comment.