@@ -45,6 +45,7 @@ export type CreatePropertyDefinitionInput = {
4545export type CreateTaskInput = {
4646 assigneeId ?: InputMaybe < Scalars [ 'ID' ] [ 'input' ] > ;
4747 description ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
48+ dueDate ?: InputMaybe < Scalars [ 'DateTime' ] [ 'input' ] > ;
4849 patientId : Scalars [ 'ID' ] [ 'input' ] ;
4950 previousTaskIds ?: InputMaybe < Array < Scalars [ 'ID' ] [ 'input' ] > > ;
5051 properties ?: InputMaybe < Array < PropertyValueInput > > ;
@@ -317,6 +318,7 @@ export type TaskType = {
317318 creationDate : Scalars [ 'DateTime' ] [ 'output' ] ;
318319 description ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
319320 done : Scalars [ 'Boolean' ] [ 'output' ] ;
321+ dueDate ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
320322 id : Scalars [ 'ID' ] [ 'output' ] ;
321323 patient : PatientType ;
322324 patientId : Scalars [ 'ID' ] [ 'output' ] ;
@@ -352,6 +354,7 @@ export type UpdateTaskInput = {
352354 assigneeId ?: InputMaybe < Scalars [ 'ID' ] [ 'input' ] > ;
353355 description ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
354356 done ?: InputMaybe < Scalars [ 'Boolean' ] [ 'input' ] > ;
357+ dueDate ?: InputMaybe < Scalars [ 'DateTime' ] [ 'input' ] > ;
355358 previousTaskIds ?: InputMaybe < Array < Scalars [ 'ID' ] [ 'input' ] > > ;
356359 properties ?: InputMaybe < Array < PropertyValueInput > > ;
357360 title ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
@@ -372,7 +375,7 @@ export type UserType = {
372375export type GetMyTasksQueryVariables = Exact < { [ key : string ] : never ; } > ;
373376
374377
375- export type GetMyTasksQuery = { __typename ?: 'Query' , me ?: { __typename ?: 'UserType' , id : string , tasks : Array < { __typename ?: 'TaskType' , id : string , title : string , description ?: string | null , done : boolean , creationDate : any , updateDate ?: any | null , patient : { __typename ?: 'PatientType' , id : string , name : string , assignedLocation ?: { __typename ?: 'LocationNodeType' , id : string , title : string , parent ?: { __typename ?: 'LocationNodeType' , id : string , title : string } | null } | null } , assignee ?: { __typename ?: 'UserType' , id : string , name : string , avatarUrl ?: string | null } | null } > } | null } ;
378+ export type GetMyTasksQuery = { __typename ?: 'Query' , me ?: { __typename ?: 'UserType' , id : string , tasks : Array < { __typename ?: 'TaskType' , id : string , title : string , description ?: string | null , done : boolean , dueDate ?: any | null , creationDate : any , updateDate ?: any | null , patient : { __typename ?: 'PatientType' , id : string , name : string , assignedLocation ?: { __typename ?: 'LocationNodeType' , id : string , title : string , parent ?: { __typename ?: 'LocationNodeType' , id : string , title : string } | null } | null } , assignee ?: { __typename ?: 'UserType' , id : string , name : string , avatarUrl ?: string | null } | null } > } | null } ;
376379
377380export type GetOverviewDataQueryVariables = Exact < { [ key : string ] : never ; } > ;
378381
@@ -416,6 +419,7 @@ export const GetMyTasksDocument = `
416419 title
417420 description
418421 done
422+ dueDate
419423 creationDate
420424 updateDate
421425 patient {
0 commit comments