@@ -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,11 +1370,11 @@ 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' > }
1376- ) > , colony : Pick < Colony , 'id' | 'colonyName' | 'displayName' | 'nativeTokenAddress' > }
1377+ ) > , colony : Pick < Colony , 'id' | 'colonyName' | 'displayName' | 'nativeTokenAddress' > , events : Array < Pick < Event , 'id' | 'type' > > }
13771378 & PayoutsFragment
13781379) ;
13791380
@@ -1885,14 +1886,14 @@ 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' > }
18921893 ) > , colony : Pick < Colony , 'id' | 'colonyAddress' | 'colonyName' | 'avatarHash' | 'displayName' | 'nativeTokenAddress' > , creator : (
18931894 Pick < User , 'id' >
18941895 & { profile : Pick < UserProfile , 'avatarHash' | 'displayName' | 'username' | 'walletAddress' > }
1895- ) , workInvites : Array < (
1896+ ) , events : Array < Pick < Event , 'id' | 'type' > > , workInvites : Array < (
18961897 Pick < User , 'id' >
18971898 & { profile : Pick < UserProfile , 'avatarHash' | 'displayName' | 'username' | 'walletAddress' > }
18981899 ) > , workRequests : Array < (
@@ -1980,11 +1981,11 @@ 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' > }
1987- ) > , colony : Pick < Colony , 'id' | 'colonyName' | 'displayName' | 'nativeTokenAddress' > }
1988+ ) > , colony : Pick < Colony , 'id' | 'colonyName' | 'displayName' | 'nativeTokenAddress' > , events : Array < Pick < Event , 'id' | 'type' > > }
19881989 & PayoutsFragment
19891990 ) > }
19901991 ) } ;
@@ -2096,11 +2097,11 @@ 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' > }
2103- ) > , colony : Pick < Colony , 'id' | 'colonyName' | 'displayName' | 'nativeTokenAddress' > }
2104+ ) > , colony : Pick < Colony , 'id' | 'colonyName' | 'displayName' | 'nativeTokenAddress' > , events : Array < Pick < Event , 'id' | 'type' > > }
21042105 & PayoutsFragment
21052106 ) > }
21062107 ) } ;
@@ -2289,11 +2290,16 @@ export const CreateTaskFieldsFragmentDoc = gql`
22892290 nativeTokenAddress
22902291 }
22912292 colonyAddress
2293+ commentCount @client
22922294 createdAt
22932295 creatorAddress
22942296 dueDate
22952297 ethDomainId
22962298 ethSkillId
2299+ events {
2300+ id
2301+ type
2302+ }
22972303 finalizedAt
22982304 title
22992305 workRequestAddresses
@@ -4471,6 +4477,7 @@ export const TaskDocument = gql`
44714477 nativeTokenAddress
44724478 }
44734479 colonyAddress
4480+ commentCount @client
44744481 createdAt
44754482 creator {
44764483 id
@@ -4487,6 +4494,10 @@ export const TaskDocument = gql`
44874494 ethDomainId
44884495 ethSkillId
44894496 ethPotId
4497+ events {
4498+ id
4499+ type
4500+ }
44904501 finalizedAt
44914502 title
44924503 workInvites {
@@ -4836,11 +4847,16 @@ export const UserTasksDocument = gql`
48364847 nativeTokenAddress
48374848 }
48384849 colonyAddress
4850+ commentCount @client
48394851 createdAt
48404852 creatorAddress
48414853 dueDate
48424854 ethDomainId
48434855 ethSkillId
4856+ events {
4857+ id
4858+ type
4859+ }
48444860 finalizedAt
48454861 title
48464862 workRequestAddresses
@@ -5311,11 +5327,16 @@ export const ColonyTasksDocument = gql`
53115327 nativeTokenAddress
53125328 }
53135329 colonyAddress
5330+ commentCount @client
53145331 createdAt
53155332 creatorAddress
53165333 dueDate
53175334 ethDomainId
53185335 ethSkillId
5336+ events {
5337+ id
5338+ type
5339+ }
53195340 finalizedAt
53205341 title
53215342 workRequestAddresses
0 commit comments