@@ -1225,6 +1225,7 @@ export type Task = {
12251225 events : Array < Event > ,
12261226 payouts : Array < TaskPayout > ,
12271227 txHash ?: Maybe < Scalars [ 'String' ] > ,
1228+ commentCount : Scalars [ 'Int' ] ,
12281229 finalizedPayment ?: Maybe < TaskFinalizedPayment > ,
12291230} ;
12301231
@@ -1369,7 +1370,7 @@ export type PersistentTaskPayoutsFragment = { payouts: Array<(
13691370 ) > } ;
13701371
13711372export type CreateTaskFieldsFragment = (
1372- Pick < Task , 'id' | 'assignedWorkerAddress' | 'cancelledAt' | 'colonyAddress' | 'createdAt' | 'creatorAddress' | 'dueDate' | 'ethDomainId' | 'ethSkillId' | 'finalizedAt' | 'title' | 'workRequestAddresses' | 'txHash' >
1373+ Pick < Task , 'id' | 'assignedWorkerAddress' | 'cancelledAt' | 'colonyAddress' | 'commentCount' | ' createdAt' | 'creatorAddress' | 'dueDate' | 'ethDomainId' | 'ethSkillId' | 'finalizedAt' | 'title' | 'workRequestAddresses' | 'txHash' >
13731374 & { assignedWorker : Maybe < (
13741375 Pick < User , 'id' >
13751376 & { profile : Pick < UserProfile , 'avatarHash' > }
@@ -1885,7 +1886,7 @@ export type TaskQueryVariables = {
18851886
18861887
18871888export type TaskQuery = { task : (
1888- Pick < Task , 'id' | 'assignedWorkerAddress' | 'cancelledAt' | 'colonyAddress' | 'createdAt' | 'creatorAddress' | 'description' | 'dueDate' | 'ethDomainId' | 'ethSkillId' | 'ethPotId' | 'finalizedAt' | 'title' | 'workInviteAddresses' | 'workRequestAddresses' | 'txHash' >
1889+ Pick < Task , 'id' | 'assignedWorkerAddress' | 'cancelledAt' | 'colonyAddress' | 'commentCount' | ' createdAt' | 'creatorAddress' | 'description' | 'dueDate' | 'ethDomainId' | 'ethSkillId' | 'ethPotId' | 'finalizedAt' | 'title' | 'workInviteAddresses' | 'workRequestAddresses' | 'txHash' >
18891890 & { assignedWorker : Maybe < (
18901891 Pick < User , 'id' >
18911892 & { profile : Pick < UserProfile , 'avatarHash' | 'displayName' | 'username' | 'walletAddress' > }
@@ -1980,7 +1981,7 @@ export type UserTasksQueryVariables = {
19801981export type UserTasksQuery = { user : (
19811982 Pick < User , 'id' >
19821983 & { tasks : Array < (
1983- Pick < Task , 'id' | 'assignedWorkerAddress' | 'cancelledAt' | 'colonyAddress' | 'createdAt' | 'creatorAddress' | 'dueDate' | 'ethDomainId' | 'ethSkillId' | 'finalizedAt' | 'title' | 'workRequestAddresses' | 'txHash' >
1984+ Pick < Task , 'id' | 'assignedWorkerAddress' | 'cancelledAt' | 'colonyAddress' | 'commentCount' | ' createdAt' | 'creatorAddress' | 'dueDate' | 'ethDomainId' | 'ethSkillId' | 'finalizedAt' | 'title' | 'workRequestAddresses' | 'txHash' >
19841985 & { assignedWorker : Maybe < (
19851986 Pick < User , 'id' >
19861987 & { profile : Pick < UserProfile , 'avatarHash' > }
@@ -2096,7 +2097,7 @@ export type ColonyTasksQueryVariables = {
20962097export type ColonyTasksQuery = { colony : (
20972098 Pick < Colony , 'id' >
20982099 & { tasks : Array < (
2099- Pick < Task , 'id' | 'assignedWorkerAddress' | 'cancelledAt' | 'colonyAddress' | 'createdAt' | 'creatorAddress' | 'dueDate' | 'ethDomainId' | 'ethSkillId' | 'finalizedAt' | 'title' | 'workRequestAddresses' | 'txHash' >
2100+ Pick < Task , 'id' | 'assignedWorkerAddress' | 'cancelledAt' | 'colonyAddress' | 'commentCount' | ' createdAt' | 'creatorAddress' | 'dueDate' | 'ethDomainId' | 'ethSkillId' | 'finalizedAt' | 'title' | 'workRequestAddresses' | 'txHash' >
21002101 & { assignedWorker : Maybe < (
21012102 Pick < User , 'id' >
21022103 & { profile : Pick < UserProfile , 'avatarHash' > }
@@ -2289,6 +2290,7 @@ export const CreateTaskFieldsFragmentDoc = gql`
22892290 nativeTokenAddress
22902291 }
22912292 colonyAddress
2293+ commentCount @client
22922294 createdAt
22932295 creatorAddress
22942296 dueDate
@@ -4475,6 +4477,7 @@ export const TaskDocument = gql`
44754477 nativeTokenAddress
44764478 }
44774479 colonyAddress
4480+ commentCount @client
44784481 createdAt
44794482 creator {
44804483 id
@@ -4844,6 +4847,7 @@ export const UserTasksDocument = gql`
48444847 nativeTokenAddress
48454848 }
48464849 colonyAddress
4850+ commentCount @client
48474851 createdAt
48484852 creatorAddress
48494853 dueDate
@@ -5323,6 +5327,7 @@ export const ColonyTasksDocument = gql`
53235327 nativeTokenAddress
53245328 }
53255329 colonyAddress
5330+ commentCount @client
53265331 createdAt
53275332 creatorAddress
53285333 dueDate
0 commit comments