File tree 1 file changed +14
-14
lines changed
backend/typescript/graphql/types
1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -15,35 +15,35 @@ const taskType = gql`
15
15
}
16
16
17
17
input InputTaskDTO {
18
- category_id : Int!
18
+ categoryId : Int!
19
19
title: String!
20
20
status: Status
21
21
description: String!
22
- assignee_id : Int!
23
- assigner_id : Int!
24
- credit_value : Int!
25
- start_date : String!
26
- end_date : String
22
+ assigneeId : Int!
23
+ assignerId : Int!
24
+ creditValue : Int!
25
+ startDate : String!
26
+ endDate : String
27
27
comments: String!
28
- recurrence_frequency : Recurrence_Frequency!
28
+ recurrenceFrequency : Recurrence_Frequency!
29
29
}
30
30
31
31
type TaskDTO {
32
32
id: Int!
33
33
category: String!
34
- category_id : Int!
34
+ categoryId : Int!
35
35
title: String!
36
36
status: Status!
37
37
description: String!
38
- assignee_id : Int!
38
+ assigneeId : Int!
39
39
assignee: String!
40
- assigner_id : Int!
40
+ assignerId : Int!
41
41
assigner: String!
42
- credit_value : Int!
43
- start_date : String!
44
- end_date : String
42
+ creditValue : Int!
43
+ startDate : String!
44
+ endDate : String
45
45
comments: String!
46
- recurrence_frequency : Recurrence_Frequency!
46
+ recurrenceFrequency : Recurrence_Frequency!
47
47
}
48
48
` ;
49
49
You can’t perform that action at this time.
0 commit comments