diff --git a/packages/twenty-front/scripts/generate-mock-data.ts b/packages/twenty-front/scripts/generate-mock-data.ts index c3136d49bd..b970f6e7aa 100644 --- a/packages/twenty-front/scripts/generate-mock-data.ts +++ b/packages/twenty-front/scripts/generate-mock-data.ts @@ -1,7 +1,10 @@ /* eslint-disable no-console */ +import { generateApiKeys } from './mock-data/generate-api-keys.js'; +import { generateBillingPlans } from './mock-data/generate-billing-plans.js'; import { generateMetadata } from './mock-data/generate-metadata.js'; import { generateRecordData } from './mock-data/generate-record-data.js'; import { generateRoles } from './mock-data/generate-roles.js'; +import { generateViews } from './mock-data/generate-views.js'; import { authenticate } from './mock-data/utils.js'; const main = async () => { @@ -10,6 +13,22 @@ const main = async () => { const metadata = await generateMetadata(token); await generateRecordData(token, metadata); await generateRoles(token); + await generateViews(token); + + try { + await generateBillingPlans(token); + } catch (error) { + console.warn( + 'Skipping billing plans generation (billing not available):', + (error as Error).message, + ); + } + + try { + await generateApiKeys(token); + } catch (error) { + console.warn('Skipping API keys generation:', (error as Error).message); + } console.log('All mock data generated!'); }; diff --git a/packages/twenty-front/scripts/mock-data/generate-api-keys.ts b/packages/twenty-front/scripts/mock-data/generate-api-keys.ts new file mode 100644 index 0000000000..7a3d4d1202 --- /dev/null +++ b/packages/twenty-front/scripts/mock-data/generate-api-keys.ts @@ -0,0 +1,40 @@ +/* eslint-disable no-console */ +import { graphqlRequest, writeGeneratedFile } from './utils.js'; + +const API_KEYS_QUERY = ` + query ApiKeys { + apiKeys { + __typename + id + name + expiresAt + createdAt + updatedAt + revokedAt + role { + __typename + id + label + icon + } + } + } +`; + +export const generateApiKeys = async (token: string) => { + console.log('Fetching API keys from /metadata ...'); + + const data = (await graphqlRequest('/metadata', API_KEYS_QUERY, token)) as { + apiKeys: Record[]; + }; + + console.log(` Got ${data.apiKeys.length} API keys.`); + + writeGeneratedFile( + 'metadata/api-keys/mock-api-keys-data.ts', + 'mockedApiKeys', + 'Record[]', + '', + data.apiKeys, + ); +}; diff --git a/packages/twenty-front/scripts/mock-data/generate-billing-plans.ts b/packages/twenty-front/scripts/mock-data/generate-billing-plans.ts new file mode 100644 index 0000000000..f881bfb7d4 --- /dev/null +++ b/packages/twenty-front/scripts/mock-data/generate-billing-plans.ts @@ -0,0 +1,68 @@ +/* eslint-disable no-console */ +import { graphqlRequest, writeGeneratedFile } from './utils.js'; + +const LIST_PLANS_QUERY = ` + query listPlans { + listPlans { + planKey + licensedProducts { + name + description + images + metadata { + productKey + planKey + priceUsageBased + } + ... on BillingLicensedProduct { + prices { + stripePriceId + unitAmount + recurringInterval + priceUsageType + } + } + } + meteredProducts { + name + description + images + metadata { + productKey + planKey + priceUsageBased + } + ... on BillingMeteredProduct { + prices { + priceUsageType + recurringInterval + stripePriceId + tiers { + flatAmount + unitAmount + upTo + } + } + } + } + } + } +`; + +export const generateBillingPlans = async (token: string) => { + console.log('Fetching billing plans from /metadata ...'); + + const data = (await graphqlRequest('/metadata', LIST_PLANS_QUERY, token)) as { + listPlans: Record[]; + }; + + console.log(` Got ${data.listPlans.length} billing plans.`); + + writeGeneratedFile( + 'metadata/billing-plans/mock-billing-plans-data.ts', + 'mockedBillingPlans', + 'Record', + '', + { listPlans: data.listPlans }, + ); +}; diff --git a/packages/twenty-front/scripts/mock-data/generate-record-data.ts b/packages/twenty-front/scripts/mock-data/generate-record-data.ts index 2101077aaa..5cc889953e 100644 --- a/packages/twenty-front/scripts/mock-data/generate-record-data.ts +++ b/packages/twenty-front/scripts/mock-data/generate-record-data.ts @@ -15,6 +15,11 @@ const OBJECTS_TO_GENERATE = [ 'task', 'note', 'timelineActivity', + 'workspaceMember', + 'favorite', + 'favoriteFolder', + 'connectedAccount', + 'calendarEvent', ]; // Production query builders omit __typename on connection/edge wrappers diff --git a/packages/twenty-front/scripts/mock-data/generate-views.ts b/packages/twenty-front/scripts/mock-data/generate-views.ts new file mode 100644 index 0000000000..51843e66ad --- /dev/null +++ b/packages/twenty-front/scripts/mock-data/generate-views.ts @@ -0,0 +1,119 @@ +/* eslint-disable no-console, lingui/no-unlocalized-strings */ +import { graphqlRequest, writeGeneratedFile } from './utils.js'; + +const FIND_ALL_CORE_VIEWS_QUERY = ` + query FindAllCoreViews { + getCoreViews { + id + name + objectMetadataId + type + key + icon + position + isCompact + openRecordIn + kanbanAggregateOperation + kanbanAggregateOperationFieldMetadataId + mainGroupByFieldMetadataId + shouldHideEmptyGroups + anyFieldFilterValue + calendarFieldMetadataId + calendarLayout + visibility + createdByUserWorkspaceId + viewFields { + id + fieldMetadataId + viewId + isVisible + position + size + aggregateOperation + createdAt + updatedAt + deletedAt + } + viewFieldGroups { + id + name + position + isVisible + viewId + createdAt + updatedAt + deletedAt + viewFields { + id + fieldMetadataId + viewId + isVisible + position + size + aggregateOperation + createdAt + updatedAt + deletedAt + } + } + viewFilters { + id + fieldMetadataId + operand + value + viewFilterGroupId + positionInViewFilterGroup + subFieldName + viewId + createdAt + updatedAt + deletedAt + } + viewFilterGroups { + id + parentViewFilterGroupId + logicalOperator + positionInViewFilterGroup + viewId + } + viewSorts { + id + fieldMetadataId + direction + viewId + } + viewGroups { + id + isVisible + fieldValue + position + viewId + createdAt + updatedAt + deletedAt + } + } + } +`; + +export const generateViews = async (token: string) => { + console.log('Fetching views from /metadata ...'); + + const data = (await graphqlRequest( + '/metadata', + FIND_ALL_CORE_VIEWS_QUERY, + token, + )) as { + getCoreViews: Record[]; + }; + + console.log(` Got ${data.getCoreViews.length} views.`); + + writeGeneratedFile( + 'metadata/views/mock-views-data.ts', + 'mockedCoreViews', + 'CoreViewWithRelations[]', + "import { type CoreViewWithRelations } from '@/views/types/CoreViewWithRelations';", + data.getCoreViews, + ); +}; diff --git a/packages/twenty-front/src/modules/activities/hooks/__tests__/useActivityTargetObjectRecords.test.tsx b/packages/twenty-front/src/modules/activities/hooks/__tests__/useActivityTargetObjectRecords.test.tsx index 58ad90b01b..8cdf5d65ea 100644 --- a/packages/twenty-front/src/modules/activities/hooks/__tests__/useActivityTargetObjectRecords.test.tsx +++ b/packages/twenty-front/src/modules/activities/hooks/__tests__/useActivityTargetObjectRecords.test.tsx @@ -11,8 +11,10 @@ import { recordStoreFamilyState } from '@/object-record/record-store/states/reco import { useSetAtomFamilyState } from '@/ui/utilities/state/jotai/hooks/useSetAtomFamilyState'; import { jotaiStore } from '@/ui/utilities/state/jotai/jotaiStore'; import { SnackBarComponentInstanceContext } from '@/ui/feedback/snack-bar-manager/contexts/SnackBarComponentInstanceContext'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; +import { type WorkspaceMember } from '@/workspace-member/types/WorkspaceMember'; import { JestObjectMetadataItemSetter } from '~/testing/jest/JestObjectMetadataItemSetter'; -import { mockWorkspaceMembers } from '~/testing/mock-data/workspace-members'; +import { mockedWorkspaceMemberRecords } from '~/testing/mock-data/generated/data/workspaceMembers/mock-workspaceMembers-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; const cache = new InMemoryCache(); @@ -131,7 +133,12 @@ const Wrapper = ({ children }: { children: ReactNode }) => ( describe('useActivityTargetObjectRecords', () => { it('return targetObjects', async () => { - jotaiStore.set(currentWorkspaceMemberState.atom, mockWorkspaceMembers[0]); + jotaiStore.set( + currentWorkspaceMemberState.atom, + getRecordFromRecordNode({ + recordNode: mockedWorkspaceMemberRecords[0], + }), + ); jotaiStore.set( objectMetadataItemsState.atom, diff --git a/packages/twenty-front/src/modules/object-metadata/hooks/__tests__/useDeleteOneObjectMetadataItem.test.tsx b/packages/twenty-front/src/modules/object-metadata/hooks/__tests__/useDeleteOneObjectMetadataItem.test.tsx index 33acb5d50d..0cde39fe69 100644 --- a/packages/twenty-front/src/modules/object-metadata/hooks/__tests__/useDeleteOneObjectMetadataItem.test.tsx +++ b/packages/twenty-front/src/modules/object-metadata/hooks/__tests__/useDeleteOneObjectMetadataItem.test.tsx @@ -13,7 +13,7 @@ import { GET_CURRENT_USER } from '@/users/graphql/queries/getCurrentUser'; import { FIND_ALL_CORE_VIEWS } from '@/views/graphql/queries/findAllCoreViews'; import { getJestMetadataAndApolloMocksWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksWrapper'; import { mockedUserData } from '~/testing/mock-data/users'; -import { mockedCoreViewsData } from '~/testing/mock-data/views'; +import { mockedCoreViews } from '~/testing/mock-data/generated/metadata/views/mock-views-data'; import { query as findManyObjectMetadataItemsQuery, responseData as findManyObjectMetadataItemsResponseData, @@ -49,7 +49,7 @@ const mocks = [ }, result: jest.fn(() => ({ data: { - getCoreViews: mockedCoreViewsData, + getCoreViews: mockedCoreViews, }, })), }, diff --git a/packages/twenty-front/src/modules/object-record/hooks/__tests__/__snapshots__/useDeleteOneRecord.test.tsx.snap b/packages/twenty-front/src/modules/object-record/hooks/__tests__/__snapshots__/useDeleteOneRecord.test.tsx.snap index 5264f5f45f..24713dabda 100644 --- a/packages/twenty-front/src/modules/object-record/hooks/__tests__/__snapshots__/useDeleteOneRecord.test.tsx.snap +++ b/packages/twenty-front/src/modules/object-record/hooks/__tests__/__snapshots__/useDeleteOneRecord.test.tsx.snap @@ -101,23 +101,31 @@ exports[`useDeleteOneRecord B. Starting from filled cache 1. Should handle succe exports[`useDeleteOneRecord B. Starting from filled cache 1. Should handle successfull record deletion 2`] = ` { "__typename": "Company", - "accountOwner": null, + "accountOwner": {}, + "accountOwnerId": "20202020-1553-45c6-a028-5a9064cce07f", "address": { "__typename": "Address", - "addressCity": "Dublin", - "addressCountry": "Ireland", + "addressCity": "Denver", + "addressCountry": "", "addressLat": null, "addressLng": null, - "addressPostcode": null, - "addressState": null, - "addressStreet1": "Eutaw Street", - "addressStreet2": null, + "addressPostcode": "", + "addressState": "", + "addressStreet1": "", + "addressStreet2": "", }, - "createdAt": "2025-02-16T08:21:51.715Z", + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null, + }, + "attachments": [], + "caredForPets": [], + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", - "context": {}, - "name": "Tim Apple", + "context": null, + "name": "Tim A", "source": "MANUAL", "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", }, @@ -125,28 +133,63 @@ exports[`useDeleteOneRecord B. Starting from filled cache 1. Should handle succe "domainName": { "__typename": "Links", "primaryLinkLabel": "", - "primaryLinkUrl": "https://linkedin.com", + "primaryLinkUrl": "housecallpro.com", "secondaryLinks": [], }, - "employees": null, - "id": "20202020-3ec3-4fe3-8997-b76aa0bfa408", - "linkedinLink": { + "employees": 894, + "favorites": [], + "id": "20202020-a000-4485-94de-70c2a98daef2", + "idealCustomerProfile": false, + "introVideo": { "__typename": "Links", "primaryLinkLabel": "", "primaryLinkUrl": "", "secondaryLinks": [], }, - "name": "Linkedin", - "noteTargets": [], - "opportunities": [ + "linkedinLink": { + "__typename": "Links", + "primaryLinkLabel": "", + "primaryLinkUrl": "https://linkedin.com/company/housecallpro", + "secondaryLinks": [], + }, + "name": "Housecall Pro", + "noteTargets": [ {}, ], + "opportunities": [], "people": [ {}, {}, ], - "position": 1, - "taskTargets": [], + "position": 442, + "previousEmployees": [], + "tagline": "", + "taskTargets": [ + {}, + ], + "timelineActivities": [ + {}, + {}, + {}, + {}, + {}, + ], + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "context": null, + "name": "Tim A", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkLabel": "", + "primaryLinkUrl": "", + "secondaryLinks": [], + }, } `; @@ -243,23 +286,31 @@ exports[`useDeleteOneRecord B. Starting from filled cache 2. Should handle optim exports[`useDeleteOneRecord B. Starting from filled cache 2. Should handle optimistic cache on record deletion 2`] = ` { "__typename": "Company", - "accountOwner": null, + "accountOwner": {}, + "accountOwnerId": "20202020-1553-45c6-a028-5a9064cce07f", "address": { "__typename": "Address", - "addressCity": "Dublin", - "addressCountry": "Ireland", + "addressCity": "Denver", + "addressCountry": "", "addressLat": null, "addressLng": null, - "addressPostcode": null, - "addressState": null, - "addressStreet1": "Eutaw Street", - "addressStreet2": null, + "addressPostcode": "", + "addressState": "", + "addressStreet1": "", + "addressStreet2": "", }, - "createdAt": "2025-02-16T08:21:51.715Z", + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null, + }, + "attachments": [], + "caredForPets": [], + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", - "context": {}, - "name": "Tim Apple", + "context": null, + "name": "Tim A", "source": "MANUAL", "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", }, @@ -267,28 +318,63 @@ exports[`useDeleteOneRecord B. Starting from filled cache 2. Should handle optim "domainName": { "__typename": "Links", "primaryLinkLabel": "", - "primaryLinkUrl": "https://linkedin.com", + "primaryLinkUrl": "housecallpro.com", "secondaryLinks": [], }, - "employees": null, - "id": "20202020-3ec3-4fe3-8997-b76aa0bfa408", - "linkedinLink": { + "employees": 894, + "favorites": [], + "id": "20202020-a000-4485-94de-70c2a98daef2", + "idealCustomerProfile": false, + "introVideo": { "__typename": "Links", "primaryLinkLabel": "", "primaryLinkUrl": "", "secondaryLinks": [], }, - "name": "Linkedin", - "noteTargets": [], - "opportunities": [ + "linkedinLink": { + "__typename": "Links", + "primaryLinkLabel": "", + "primaryLinkUrl": "https://linkedin.com/company/housecallpro", + "secondaryLinks": [], + }, + "name": "Housecall Pro", + "noteTargets": [ {}, ], + "opportunities": [], "people": [ {}, {}, ], - "position": 1, - "taskTargets": [], + "position": 442, + "previousEmployees": [], + "tagline": "", + "taskTargets": [ + {}, + ], + "timelineActivities": [ + {}, + {}, + {}, + {}, + {}, + ], + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "context": null, + "name": "Tim A", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkLabel": "", + "primaryLinkUrl": "", + "secondaryLinks": [], + }, } `; @@ -385,23 +471,31 @@ exports[`useDeleteOneRecord B. Starting from filled cache 3. Should handle optim exports[`useDeleteOneRecord B. Starting from filled cache 3. Should handle optimistic cache rollback on record deletion failure 2`] = ` { "__typename": "Company", - "accountOwner": null, + "accountOwner": {}, + "accountOwnerId": "20202020-1553-45c6-a028-5a9064cce07f", "address": { "__typename": "Address", - "addressCity": "Dublin", - "addressCountry": "Ireland", + "addressCity": "Denver", + "addressCountry": "", "addressLat": null, "addressLng": null, - "addressPostcode": null, - "addressState": null, - "addressStreet1": "Eutaw Street", - "addressStreet2": null, + "addressPostcode": "", + "addressState": "", + "addressStreet1": "", + "addressStreet2": "", }, - "createdAt": "2025-02-16T08:21:51.715Z", + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null, + }, + "attachments": [], + "caredForPets": [], + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", - "context": {}, - "name": "Tim Apple", + "context": null, + "name": "Tim A", "source": "MANUAL", "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", }, @@ -409,27 +503,62 @@ exports[`useDeleteOneRecord B. Starting from filled cache 3. Should handle optim "domainName": { "__typename": "Links", "primaryLinkLabel": "", - "primaryLinkUrl": "https://linkedin.com", + "primaryLinkUrl": "housecallpro.com", "secondaryLinks": [], }, - "employees": null, - "id": "20202020-3ec3-4fe3-8997-b76aa0bfa408", - "linkedinLink": { + "employees": 894, + "favorites": [], + "id": "20202020-a000-4485-94de-70c2a98daef2", + "idealCustomerProfile": false, + "introVideo": { "__typename": "Links", "primaryLinkLabel": "", "primaryLinkUrl": "", "secondaryLinks": [], }, - "name": "Linkedin", - "noteTargets": [], - "opportunities": [ + "linkedinLink": { + "__typename": "Links", + "primaryLinkLabel": "", + "primaryLinkUrl": "https://linkedin.com/company/housecallpro", + "secondaryLinks": [], + }, + "name": "Housecall Pro", + "noteTargets": [ {}, ], + "opportunities": [], "people": [ {}, {}, ], - "position": 1, - "taskTargets": [], + "position": 442, + "previousEmployees": [], + "tagline": "", + "taskTargets": [ + {}, + ], + "timelineActivities": [ + {}, + {}, + {}, + {}, + {}, + ], + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "context": null, + "name": "Tim A", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkLabel": "", + "primaryLinkUrl": "", + "secondaryLinks": [], + }, } `; diff --git a/packages/twenty-front/src/modules/object-record/hooks/__tests__/useDeleteOneRecord.test.tsx b/packages/twenty-front/src/modules/object-record/hooks/__tests__/useDeleteOneRecord.test.tsx index d88fa75ea7..8635bb7e27 100644 --- a/packages/twenty-front/src/modules/object-record/hooks/__tests__/useDeleteOneRecord.test.tsx +++ b/packages/twenty-front/src/modules/object-record/hooks/__tests__/useDeleteOneRecord.test.tsx @@ -9,7 +9,7 @@ import { type MockedResponse } from '@apollo/client/testing'; import { InMemoryTestingCacheInstance } from '~/testing/cache/inMemoryTestingCacheInstance'; import { getJestMetadataAndApolloMocksWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksWrapper'; import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; -import { allMockCompanyRecordsWithRelation } from '~/testing/mock-data/companiesWithRelations'; +import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; @@ -24,15 +24,19 @@ const flatPersonRecords = mockedPersonRecords.map((record) => getRecordFromRecordNode({ recordNode: record }), ); +const flatCompanyRecords = mockedCompanyRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); + describe('useDeleteOneRecord', () => { - const matchingCompanyId = allMockCompanyRecordsWithRelation[0].id; + const matchingCompanyId = flatCompanyRecords[0].id; const personRecord = { ...flatPersonRecords[0], deletedAt: null, companyId: matchingCompanyId, - company: { ...allMockCompanyRecordsWithRelation[0] }, + company: { ...flatCompanyRecords[0] }, }; - const relatedCompanyRecord = allMockCompanyRecordsWithRelation[0]; + const relatedCompanyRecord = flatCompanyRecords[0]; const personObjectMetadataItem = getMockObjectMetadataItemOrThrow('person'); const companyObjectMetadataItem = getMockObjectMetadataItemOrThrow('company'); const objectMetadataItems = generatedMockObjectMetadataItems; @@ -199,7 +203,7 @@ describe('useDeleteOneRecord', () => { initialRecordsInCache: [ { objectMetadataItem: companyObjectMetadataItem, - records: allMockCompanyRecordsWithRelation, + records: flatCompanyRecords, }, { objectMetadataItem: personObjectMetadataItem, diff --git a/packages/twenty-front/src/modules/object-record/record-calendar/month/components/__stories__/RecordCalendarMonth.stories.tsx b/packages/twenty-front/src/modules/object-record/record-calendar/month/components/__stories__/RecordCalendarMonth.stories.tsx index 482e1eb636..76c044f45a 100644 --- a/packages/twenty-front/src/modules/object-record/record-calendar/month/components/__stories__/RecordCalendarMonth.stories.tsx +++ b/packages/twenty-front/src/modules/object-record/record-calendar/month/components/__stories__/RecordCalendarMonth.stories.tsx @@ -26,7 +26,7 @@ import { ContextStoreDecorator } from '~/testing/decorators/ContextStoreDecorato import { IconsProviderDecorator } from '~/testing/decorators/IconsProviderDecorator'; import { ObjectMetadataItemsDecorator } from '~/testing/decorators/ObjectMetadataItemsDecorator'; import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator'; -import { mockedCoreViewsData } from '~/testing/mock-data/views'; +import { mockedCoreViews } from '~/testing/mock-data/generated/metadata/views/mock-views-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; const meta: Meta = { @@ -46,7 +46,9 @@ const meta: Meta = { const setCoreViews = useSetAtomState(coreViewsState); - const mockCoreView = mockedCoreViewsData[0]; + const mockCoreView = mockedCoreViews.find( + (v) => v.name === 'All Companies', + )!; const setContextStoreCurrentViewId = useSetAtomComponentState( contextStoreCurrentViewIdComponentState, diff --git a/packages/twenty-front/src/modules/object-record/record-table/__stories__/RecordTable.stories.tsx b/packages/twenty-front/src/modules/object-record/record-table/__stories__/RecordTable.stories.tsx index 15e1dde3a2..7b9c99c37f 100644 --- a/packages/twenty-front/src/modules/object-record/record-table/__stories__/RecordTable.stories.tsx +++ b/packages/twenty-front/src/modules/object-record/record-table/__stories__/RecordTable.stories.tsx @@ -12,9 +12,11 @@ import { RecordTableDecorator } from '~/testing/decorators/RecordTableDecorator' import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator'; import { graphqlMocks } from '~/testing/graphqlMocks'; import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; -import { mockedViewsData } from '~/testing/mock-data/views'; +import { mockedCoreViews } from '~/testing/mock-data/generated/metadata/views/mock-views-data'; import { sleep } from '~/utils/sleep'; +const companyView = mockedCoreViews.find((v) => v.name === 'All Companies')!; + const meta: Meta = { title: 'Modules/ObjectRecord/RecordTable/RecordTable', component: RecordTableWithWrappers, @@ -28,7 +30,7 @@ const meta: Meta = { ObjectMetadataItemsDecorator, ], args: { - recordTableId: `companies-${mockedViewsData[0].id}`, + recordTableId: `companies-${companyView.id}`, viewBarId: 'view-bar', objectNameSingular: 'company', }, diff --git a/packages/twenty-front/src/modules/object-record/utils/__tests__/computeOptimisticRecordFromInput.test.ts b/packages/twenty-front/src/modules/object-record/utils/__tests__/computeOptimisticRecordFromInput.test.ts index 76f4443119..5b7d0ffdc8 100644 --- a/packages/twenty-front/src/modules/object-record/utils/__tests__/computeOptimisticRecordFromInput.test.ts +++ b/packages/twenty-front/src/modules/object-record/utils/__tests__/computeOptimisticRecordFromInput.test.ts @@ -1,14 +1,32 @@ +import { type CurrentWorkspaceMember } from '@/auth/states/currentWorkspaceMemberState'; import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; import { updateRecordFromCache } from '@/object-record/cache/utils/updateRecordFromCache'; import { generateDepthRecordGqlFieldsFromRecord } from '@/object-record/graphql/record-gql-fields/utils/generateDepthRecordGqlFieldsFromRecord'; import { type FieldActorForInputValue } from '@/object-record/record-field/ui/types/FieldMetadata'; import { computeOptimisticRecordFromInput } from '@/object-record/utils/computeOptimisticRecordFromInput'; +import { type WorkspaceMember } from '@/workspace-member/types/WorkspaceMember'; import { InMemoryCache } from '@apollo/client'; -import { mockCurrentWorkspaceMembers } from '~/testing/mock-data/workspace-members'; +import { mockedWorkspaceMemberRecords } from '~/testing/mock-data/generated/data/workspaceMembers/mock-workspaceMembers-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { getMockFieldMetadataItemOrThrow } from '~/testing/utils/getMockFieldMetadataItemOrThrow'; import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; +const mockCurrentWorkspaceMembers: CurrentWorkspaceMember[] = + mockedWorkspaceMemberRecords.map((record) => { + const workspaceMember = getRecordFromRecordNode({ + recordNode: record, + }); + const { + createdAt: _createdAt, + updatedAt: _updatedAt, + userId: _userId, + __typename: _typename, + ...rest + } = workspaceMember; + return rest as CurrentWorkspaceMember; + }); + describe('computeOptimisticRecordFromInput', () => { const currentWorkspaceMember = mockCurrentWorkspaceMembers[0]; const currentWorkspaceMemberFullname = `${currentWorkspaceMember.name.firstName} ${currentWorkspaceMember.name.lastName}`; diff --git a/packages/twenty-front/src/modules/views/components/__stories__/ViewBarFilterDropdown.stories.tsx b/packages/twenty-front/src/modules/views/components/__stories__/ViewBarFilterDropdown.stories.tsx index ba7842ef49..de44a290e5 100644 --- a/packages/twenty-front/src/modules/views/components/__stories__/ViewBarFilterDropdown.stories.tsx +++ b/packages/twenty-front/src/modules/views/components/__stories__/ViewBarFilterDropdown.stories.tsx @@ -25,7 +25,7 @@ import { ContextStoreDecorator } from '~/testing/decorators/ContextStoreDecorato import { IconsProviderDecorator } from '~/testing/decorators/IconsProviderDecorator'; import { ObjectMetadataItemsDecorator } from '~/testing/decorators/ObjectMetadataItemsDecorator'; import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator'; -import { mockedCoreViewsData } from '~/testing/mock-data/views'; +import { mockedCoreViews } from '~/testing/mock-data/generated/metadata/views/mock-views-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; const meta: Meta = { @@ -45,7 +45,9 @@ const meta: Meta = { const setCoreViews = useSetAtomState(coreViewsState); - const mockCoreView = mockedCoreViewsData[0]; + const mockCoreView = mockedCoreViews.find( + (v) => v.name === 'All Companies', + )!; const setContextStoreCurrentViewId = useSetAtomComponentState( contextStoreCurrentViewIdComponentState, diff --git a/packages/twenty-front/src/modules/views/hooks/__tests__/useApplyCurrentViewFilterGroupsToCurrentRecordFilterGroups.test.tsx b/packages/twenty-front/src/modules/views/hooks/__tests__/useApplyCurrentViewFilterGroupsToCurrentRecordFilterGroups.test.tsx index cd76c6b130..08b294b4f9 100644 --- a/packages/twenty-front/src/modules/views/hooks/__tests__/useApplyCurrentViewFilterGroupsToCurrentRecordFilterGroups.test.tsx +++ b/packages/twenty-front/src/modules/views/hooks/__tests__/useApplyCurrentViewFilterGroupsToCurrentRecordFilterGroups.test.tsx @@ -16,10 +16,7 @@ import { act } from 'react'; import { isDefined } from 'twenty-shared/utils'; import { type CoreViewFilterGroup } from '~/generated-metadata/graphql'; import { getJestMetadataAndApolloMocksAndActionMenuWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksAndActionMenuWrapper'; -import { - mockedCoreViewsData, - mockedViewsData, -} from '~/testing/mock-data/views'; +import { mockedCoreViews } from '~/testing/mock-data/generated/metadata/views/mock-views-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; const mockObjectMetadataItemNameSingular = 'company'; @@ -48,8 +45,10 @@ describe('useApplyCurrentViewFilterGroupsToCurrentRecordFilterGroups', () => { positionInViewFilterGroup: 0, }; - const allCompaniesView = mockedViewsData[0]; - const allCompaniesCoreView = mockedCoreViewsData[0]; + const allCompaniesCoreView = mockedCoreViews.find( + (v) => v.name === 'All Companies', + )!; + const allCompaniesView = allCompaniesCoreView as unknown as View; const mockCoreViewFilterGroup: Omit = { __typename: 'CoreViewFilterGroup', diff --git a/packages/twenty-front/src/modules/views/hooks/__tests__/useApplyCurrentViewFiltersToCurrentRecordFilters.test.tsx b/packages/twenty-front/src/modules/views/hooks/__tests__/useApplyCurrentViewFiltersToCurrentRecordFilters.test.tsx index cf70e25e87..97fcfdd296 100644 --- a/packages/twenty-front/src/modules/views/hooks/__tests__/useApplyCurrentViewFiltersToCurrentRecordFilters.test.tsx +++ b/packages/twenty-front/src/modules/views/hooks/__tests__/useApplyCurrentViewFiltersToCurrentRecordFilters.test.tsx @@ -17,10 +17,7 @@ import { ViewFilterOperand as CoreViewFilterOperand, } from '~/generated-metadata/graphql'; import { getJestMetadataAndApolloMocksAndActionMenuWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksAndActionMenuWrapper'; -import { - mockedCoreViewsData, - mockedViewsData, -} from '~/testing/mock-data/views'; +import { mockedCoreViews } from '~/testing/mock-data/generated/metadata/views/mock-views-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { useApplyCurrentViewFiltersToCurrentRecordFilters } from '@/views/hooks/useApplyCurrentViewFiltersToCurrentRecordFilters'; @@ -41,8 +38,10 @@ describe('useApplyCurrentViewFiltersToCurrentRecordFilters', () => { resetJotaiStore(); }); - const allCompaniesView = mockedViewsData[0]; - const allCompaniesCoreView = mockedCoreViewsData[0]; + const allCompaniesCoreView = mockedCoreViews.find( + (v) => v.name === 'All Companies', + )!; + const allCompaniesView = allCompaniesCoreView as unknown as View; const mockFieldMetadataItem = mockObjectMetadataItem.fields[0]; diff --git a/packages/twenty-front/src/modules/views/hooks/__tests__/useApplyCurrentViewSortsToCurrentRecordSorts.test.tsx b/packages/twenty-front/src/modules/views/hooks/__tests__/useApplyCurrentViewSortsToCurrentRecordSorts.test.tsx index baeab737be..cba89a9cb4 100644 --- a/packages/twenty-front/src/modules/views/hooks/__tests__/useApplyCurrentViewSortsToCurrentRecordSorts.test.tsx +++ b/packages/twenty-front/src/modules/views/hooks/__tests__/useApplyCurrentViewSortsToCurrentRecordSorts.test.tsx @@ -13,10 +13,7 @@ import { type View } from '@/views/types/View'; import { isDefined } from 'twenty-shared/utils'; import { ViewSortDirection } from '~/generated-metadata/graphql'; import { getJestMetadataAndApolloMocksAndActionMenuWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksAndActionMenuWrapper'; -import { - mockedCoreViewsData, - mockedViewsData, -} from '~/testing/mock-data/views'; +import { mockedCoreViews } from '~/testing/mock-data/generated/metadata/views/mock-views-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { useApplyCurrentViewSortsToCurrentRecordSorts } from '@/views/hooks/useApplyCurrentViewSortsToCurrentRecordSorts'; @@ -48,8 +45,10 @@ describe('useApplyCurrentViewSortsToCurrentRecordSorts', () => { viewId: 'view-1', }; - const allCompaniesView = mockedViewsData[0]; - const allCompaniesCoreView = mockedCoreViewsData[0]; + const allCompaniesCoreView = mockedCoreViews.find( + (v) => v.name === 'All Companies', + )!; + const allCompaniesView = allCompaniesCoreView as unknown as View; const mockCoreViewSort: CoreViewSortEssential = { id: 'sort-1', diff --git a/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionEmailBase.stories.tsx b/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionEmailBase.stories.tsx index e13046a4cf..c40970e0b2 100644 --- a/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionEmailBase.stories.tsx +++ b/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionEmailBase.stories.tsx @@ -13,10 +13,7 @@ import { WorkflowStepActionDrawerDecorator } from '~/testing/decorators/Workflow import { WorkflowStepDecorator } from '~/testing/decorators/WorkflowStepDecorator'; import { WorkspaceDecorator } from '~/testing/decorators/WorkspaceDecorator'; import { graphqlMocks } from '~/testing/graphqlMocks'; -import { - getMockedConnectedAccount, - mockedConnectedAccounts, -} from '~/testing/mock-data/connected-accounts'; +import { mockedConnectedAccountRecords } from '~/testing/mock-data/generated/data/connectedAccounts/mock-connectedAccounts-data'; import { getWorkflowNodeIdMock } from '~/testing/mock-data/workflow'; const DEFAULT_SEND_EMAIL_ACTION: WorkflowSendEmailAction = { @@ -55,7 +52,8 @@ const CONFIGURED_SEND_EMAIL_ACTION: WorkflowSendEmailAction = { valid: true, settings: { input: { - connectedAccountId: mockedConnectedAccounts[0].accountOwnerId, + connectedAccountId: mockedConnectedAccountRecords[0] + .accountOwnerId as string, recipients: { to: 'test@twenty.com', cc: '', @@ -116,7 +114,18 @@ const meta: Meta = { graphql.query('FindManyConnectedAccounts', () => { return HttpResponse.json({ data: { - connectedAccounts: getMockedConnectedAccount(), + connectedAccounts: { + edges: mockedConnectedAccountRecords.map((record) => ({ + node: record, + cursor: record.id, + })), + pageInfo: { + hasNextPage: false, + hasPreviousPage: false, + startCursor: null, + endCursor: null, + }, + }, }, }); }), @@ -171,7 +180,7 @@ export const Configured: Story = { expect(await canvas.findByText('Account')).toBeVisible(); expect(await canvas.findByText('To')).toBeVisible(); - const emailInput = await canvas.findByText('tim@twenty.com'); + const emailInput = await canvas.findByText('test@twenty.com'); expect(emailInput).toBeVisible(); const subjectInput = await canvas.findByText('Welcome to Twenty!'); diff --git a/packages/twenty-front/src/testing/decorators/ObjectMetadataItemsDecorator.tsx b/packages/twenty-front/src/testing/decorators/ObjectMetadataItemsDecorator.tsx index f1ac91ab47..dc5baaab9e 100644 --- a/packages/twenty-front/src/testing/decorators/ObjectMetadataItemsDecorator.tsx +++ b/packages/twenty-front/src/testing/decorators/ObjectMetadataItemsDecorator.tsx @@ -9,8 +9,10 @@ import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomState import { PreComputedChipGeneratorsProvider } from '@/object-metadata/components/PreComputedChipGeneratorsProvider'; import { useLoadMockedObjectMetadataItems } from '@/object-metadata/hooks/useLoadMockedObjectMetadataItems'; import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; +import { type WorkspaceMember } from '@/workspace-member/types/WorkspaceMember'; import { mockedUserData } from '~/testing/mock-data/users'; -import { mockWorkspaceMembers } from '~/testing/mock-data/workspace-members'; +import { mockedWorkspaceMemberRecords } from '~/testing/mock-data/generated/data/workspaceMembers/mock-workspaceMembers-data'; export const ObjectMetadataItemsDecorator: Decorator = (Story) => { const objectMetadataItems = useAtomStateValue(objectMetadataItemsState); @@ -23,7 +25,11 @@ export const ObjectMetadataItemsDecorator: Decorator = (Story) => { const { loadMockedObjectMetadataItems } = useLoadMockedObjectMetadataItems(); useEffect(() => { - setCurrentWorkspaceMember(mockWorkspaceMembers[0]); + setCurrentWorkspaceMember( + getRecordFromRecordNode({ + recordNode: mockedWorkspaceMemberRecords[0], + }), + ); setCurrentUser(mockedUserData); setCurrentUserWorkspace(mockedUserData.currentUserWorkspace); loadMockedObjectMetadataItems(); diff --git a/packages/twenty-front/src/testing/decorators/RecordTableDecorator.tsx b/packages/twenty-front/src/testing/decorators/RecordTableDecorator.tsx index 11d96e40da..fc204f04a8 100644 --- a/packages/twenty-front/src/testing/decorators/RecordTableDecorator.tsx +++ b/packages/twenty-front/src/testing/decorators/RecordTableDecorator.tsx @@ -37,8 +37,9 @@ import { mapViewFieldToRecordField } from '@/views/utils/mapViewFieldToRecordFie import { useEffect, useMemo } from 'react'; import { isDefined } from 'twenty-shared/utils'; import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; -import { mockedViewFieldsData } from '~/testing/mock-data/view-fields'; -import { mockedViewsData } from '~/testing/mock-data/views'; +import { mockedCoreViews } from '~/testing/mock-data/generated/metadata/views/mock-views-data'; + +const companyView = mockedCoreViews.find((v) => v.name === 'All Companies')!; const InternalTableStateLoaderEffect = ({ objectMetadataItem, @@ -64,10 +65,8 @@ const InternalTableStateLoaderEffect = ({ const view = useMemo(() => { return { - ...mockedViewsData[0], - viewFields: mockedViewFieldsData.filter( - (viewField) => viewField.viewId === mockedViewsData[0].id, - ), + ...companyView, + viewFields: companyView.viewFields, } as unknown as View; }, []); @@ -221,7 +220,7 @@ export const RecordTableDecorator: Decorator = (Story, context) => { const recordIndexId = getRecordIndexIdFromObjectNamePluralAndViewId( objectMetadataItem.namePlural, - mockedViewsData[0].id, + companyView.id, ); return ( diff --git a/packages/twenty-front/src/testing/graphqlMocks.ts b/packages/twenty-front/src/testing/graphqlMocks.ts index 2a7bd2419b..86ee41fdbf 100644 --- a/packages/twenty-front/src/testing/graphqlMocks.ts +++ b/packages/twenty-front/src/testing/graphqlMocks.ts @@ -6,16 +6,15 @@ import { TRACK_ANALYTICS } from '@/analytics/graphql/queries/track'; import { FIND_MANY_OBJECT_METADATA_ITEMS } from '@/object-metadata/graphql/queries'; import { GET_CURRENT_USER } from '@/users/graphql/queries/getCurrentUser'; import { REACT_APP_SERVER_BASE_URL } from '~/config'; -import { mockedApiKeys } from '~/testing/mock-data/api-keys'; import { mockedClientConfig } from '~/testing/mock-data/config'; -import { mockedFavoritesData } from '~/testing/mock-data/favorite'; +import { mockedFavoriteRecords } from '~/testing/mock-data/generated/data/favorites/mock-favorites-data'; import { mockedFavoriteFoldersData } from '~/testing/mock-data/favorite-folders'; import { mockedNoteRecords } from '~/testing/mock-data/generated/data/notes/mock-notes-data'; import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; import { mockedPublicWorkspaceDataBySubdomain } from '~/testing/mock-data/publicWorkspaceDataBySubdomain'; import { mockedUserData } from '~/testing/mock-data/users'; -import { mockedViewsData } from '~/testing/mock-data/views'; -import { mockWorkspaceMembers } from '~/testing/mock-data/workspace-members'; +import { mockedCoreViews } from '~/testing/mock-data/generated/metadata/views/mock-views-data'; +import { mockedWorkspaceMemberRecords } from '~/testing/mock-data/generated/data/workspaceMembers/mock-workspaceMembers-data'; import { GET_PUBLIC_WORKSPACE_DATA_BY_DOMAIN } from '@/auth/graphql/queries/getPublicWorkspaceDataByDomain'; import { LIST_PLANS } from '@/billing/graphql/queries/listPlans'; @@ -38,7 +37,7 @@ import { getConnectionTypename } from '@/object-record/cache/utils/getConnection import { getEdgeTypename } from '@/object-record/cache/utils/getEdgeTypename'; import { getEmptyPageInfo } from '@/object-record/cache/utils/getEmptyPageInfo'; import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; -import { mockedViewFieldsData } from './mock-data/view-fields'; +import { mockedApiKeys } from '~/testing/mock-data/generated/metadata/api-keys/mock-api-keys-data'; const peopleMock = [...mockedPersonRecords]; const companiesMock = [...mockedCompanyRecords]; @@ -289,34 +288,29 @@ export const graphqlMocks = { const objectMetadataId = variables.filter?.objectMetadataId?.eq; const viewType = variables.filter?.type?.eq; + const filtered = mockedCoreViews.filter( + (view) => + (isDefined(objectMetadataId) + ? view?.objectMetadataId === objectMetadataId + : true) && (isDefined(viewType) ? view?.type === viewType : true), + ); + return HttpResponse.json({ data: { views: { - edges: mockedViewsData - .filter( - (view) => - (isDefined(objectMetadataId) - ? view?.objectMetadataId === objectMetadataId - : true) && - (isDefined(viewType) ? view?.type === viewType : true), - ) - .map((view) => ({ - node: { - ...view, - viewFields: { - edges: mockedViewFieldsData - .filter((viewField) => viewField.viewId === view.id) - .map((viewField) => ({ - node: viewField, - cursor: null, - })), - totalCount: mockedViewFieldsData.filter( - (viewField) => viewField.viewId === view.id, - ).length, - }, + edges: filtered.map((view) => ({ + node: { + ...view, + viewFields: { + edges: view.viewFields.map((viewField) => ({ + node: viewField, + cursor: null, + })), + totalCount: view.viewFields.length, }, - cursor: null, - })), + }, + cursor: null, + })), pageInfo: { hasNextPage: false, hasPreviousPage: false, @@ -330,61 +324,26 @@ export const graphqlMocks = { graphql.query('SearchWorkspaceMembers', () => { return HttpResponse.json({ data: { - searchWorkspaceMembers: { - edges: mockWorkspaceMembers.map((member) => ({ - node: { - ...member, - messageParticipants: { - edges: [], - __typename: 'MessageParticipantConnection', - }, - authoredAttachments: { - edges: [], - __typename: 'AttachmentConnection', - }, - authoredComments: { - edges: [], - __typename: 'CommentConnection', - }, - accountOwnerForCompanies: { - edges: [], - __typename: 'CompanyConnection', - }, - authoredActivities: { - edges: [], - __typename: 'ActivityConnection', - }, - favorites: { - edges: [], - __typename: 'FavoriteConnection', - }, - connectedAccounts: { - edges: [], - __typename: 'ConnectedAccountConnection', - }, - assignedActivities: { - edges: [], - __typename: 'ActivityConnection', - }, - }, - cursor: null, - })), - }, + searchWorkspaceMembers: wrapRecordsAsConnection( + 'workspaceMember', + mockedWorkspaceMemberRecords as Record[], + ), }, }); }), graphql.query('FindManyViewFields', ({ variables }) => { const viewId = variables.filter.view.eq; + const matchingView = mockedCoreViews.find((view) => view.id === viewId); + const viewFields = matchingView?.viewFields ?? []; + return HttpResponse.json({ data: { viewFields: { - edges: mockedViewFieldsData - .filter((viewField) => viewField.viewId === viewId) - .map((viewField) => ({ - node: viewField, - cursor: null, - })), + edges: viewFields.map((viewField) => ({ + node: viewField, + cursor: null, + })), pageInfo: { hasNextPage: false, hasPreviousPage: false, @@ -472,16 +431,10 @@ export const graphqlMocks = { return HttpResponse.json({ data: { favorites: { - edges: mockedFavoritesData.map((favorite) => ({ - node: favorite, - cursor: null, - })), - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - startCursor: null, - endCursor: null, - }, + ...wrapRecordsAsConnection( + 'favorite', + mockedFavoriteRecords as Record[], + ), }, }, }); @@ -504,52 +457,10 @@ export const graphqlMocks = { graphql.query('FindManyWorkspaceMembers', () => { return HttpResponse.json({ data: { - workspaceMembers: { - edges: mockWorkspaceMembers.map((member) => ({ - node: { - ...member, - messageParticipants: { - edges: [], - __typename: 'MessageParticipantConnection', - }, - authoredAttachments: { - edges: [], - __typename: 'AttachmentConnection', - }, - authoredComments: { - edges: [], - __typename: 'CommentConnection', - }, - accountOwnerForCompanies: { - edges: [], - __typename: 'CompanyConnection', - }, - authoredActivities: { - edges: [], - __typename: 'ActivityConnection', - }, - favorites: { - edges: [], - __typename: 'FavoriteConnection', - }, - connectedAccounts: { - edges: [], - __typename: 'ConnectedAccountConnection', - }, - assignedActivities: { - edges: [], - __typename: 'ActivityConnection', - }, - }, - cursor: null, - })), - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - startCursor: null, - endCursor: null, - }, - }, + workspaceMembers: wrapRecordsAsConnection( + 'workspaceMember', + mockedWorkspaceMemberRecords as Record[], + ), }, }); }), @@ -612,11 +523,7 @@ export const graphqlMocks = { metadataGraphql.query('GetApiKeys', () => { return HttpResponse.json({ data: { - apiKeys: mockedApiKeys.map((apiKey) => ({ - __typename: 'ApiKey', - ...apiKey, - revokedAt: null, - })), + apiKeys: mockedApiKeys, }, }); }), @@ -626,13 +533,7 @@ export const graphqlMocks = { return HttpResponse.json({ data: { - apiKey: apiKey - ? { - __typename: 'ApiKey', - ...apiKey, - revokedAt: null, - } - : null, + apiKey: apiKey ?? null, }, }); }), diff --git a/packages/twenty-front/src/testing/mock-data/accounts.ts b/packages/twenty-front/src/testing/mock-data/accounts.ts deleted file mode 100644 index 119e39c07b..0000000000 --- a/packages/twenty-front/src/testing/mock-data/accounts.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { type ConnectedAccount } from '@/accounts/types/ConnectedAccount'; - -export const mockedConnectedAccounts: Pick< - ConnectedAccount, - 'id' | 'handle' ->[] = [ - { id: '876ee608-d1e4-402d-9970-b3ca49b85cb9', handle: 'john.doe@twenty.com' }, -]; diff --git a/packages/twenty-front/src/testing/mock-data/api-keys.ts b/packages/twenty-front/src/testing/mock-data/api-keys.ts deleted file mode 100644 index bf59bc844e..0000000000 --- a/packages/twenty-front/src/testing/mock-data/api-keys.ts +++ /dev/null @@ -1,55 +0,0 @@ -import { type ApiKey } from '~/generated-metadata/graphql'; - -type MockedApiKey = Pick< - ApiKey, - 'id' | 'name' | 'createdAt' | 'updatedAt' | 'expiresAt' -> & { - role?: { - __typename: 'Role'; - id: string; - label: string; - icon: string | null; - } | null; -}; - -export const mockedApiKeys: Array = [ - { - id: 'f7c6d736-8fcd-4e9c-ab99-28f6a9031570', - name: 'Zapier Integration', - createdAt: '2023-04-26T10:12:42.33625+00:00', - updatedAt: '2023-04-26T10:23:42.33625+00:00', - expiresAt: '2100-11-06T23:59:59.825Z', - role: { - __typename: 'Role', - id: '1', - label: 'Admin', - icon: 'IconSettings', - }, - }, - { - id: 'f7c6d736-8fcd-4e9c-ab99-28f6a9031571', - name: 'Gmail Integration', - createdAt: '2023-04-26T10:12:42.33625+00:00', - updatedAt: '2023-04-26T10:23:42.33625+00:00', - expiresAt: '2100-11-06T23:59:59.825Z', - role: { - __typename: 'Role', - id: '2', - label: 'Guest', - icon: 'IconUser', - }, - }, - { - id: 'f7c6d736-8fcd-4e9c-ab99-28f6a9031572', - name: 'Github Integration', - createdAt: '2023-04-26T10:12:42.33625+00:00', - updatedAt: '2023-04-26T10:23:42.33625+00:00', - expiresAt: '2022-11-06T23:59:59.825Z', - role: { - __typename: 'Role', - id: '1', - label: 'Admin', - icon: 'IconSettings', - }, - }, -]; diff --git a/packages/twenty-front/src/testing/mock-data/calendar.ts b/packages/twenty-front/src/testing/mock-data/calendar.ts deleted file mode 100644 index 1ec66bd93a..0000000000 --- a/packages/twenty-front/src/testing/mock-data/calendar.ts +++ /dev/null @@ -1,88 +0,0 @@ -import { addDays, subHours, subMonths } from 'date-fns'; - -import { type CalendarEvent } from '@/activities/calendar/types/CalendarEvent'; -import { CalendarChannelVisibility } from '~/generated/graphql'; - -export const mockedCalendarEvents: CalendarEvent[] = [ - { - externalCreatedAt: new Date().toISOString(), - endsAt: addDays(new Date().setHours(11, 30), 1).toISOString(), - id: '9a6b35f1-6078-415b-9540-f62671bb81d0', - isFullDay: false, - startsAt: addDays(new Date().setHours(10, 0), 1).toISOString(), - visibility: CalendarChannelVisibility.METADATA, - calendarEventParticipants: [ - { - id: '1', - handle: 'jdoe', - isOrganizer: false, - responseStatus: 'ACCEPTED', - displayName: 'John Doe', - }, - { - id: '2', - handle: 'jadoe', - isOrganizer: false, - responseStatus: 'ACCEPTED', - displayName: 'Jane Doe', - }, - { - id: '3', - handle: 'tapple', - isOrganizer: false, - responseStatus: 'ACCEPTED', - displayName: 'Tim Apple', - }, - ], - __typename: 'CalendarEvent', - }, - { - externalCreatedAt: subHours(new Date(), 2).toISOString(), - id: '19b32878-a950-4968-9e3b-ce5da514ea41', - endsAt: new Date(new Date().setHours(18, 40)).toISOString(), - isCanceled: true, - isFullDay: false, - startsAt: new Date(new Date().setHours(18, 0)).toISOString(), - title: 'Bug solving', - visibility: CalendarChannelVisibility.SHARE_EVERYTHING, - __typename: 'CalendarEvent', - }, - { - externalCreatedAt: subHours(new Date(), 2).toISOString(), - id: '6ad1cbcb-2ac4-409e-aff0-48165556fc0c', - endsAt: new Date(new Date().setHours(16, 30)).toISOString(), - isFullDay: false, - startsAt: new Date(new Date().setHours(15, 15)).toISOString(), - title: 'Onboarding Follow-Up Call', - visibility: CalendarChannelVisibility.SHARE_EVERYTHING, - __typename: 'CalendarEvent', - }, - { - externalCreatedAt: subHours(new Date(), 2).toISOString(), - id: '52cc83e3-f3dc-4c25-8a7d-5ff857612142', - endsAt: new Date(new Date().setHours(10, 30)).toISOString(), - isFullDay: false, - startsAt: new Date(new Date().setHours(10, 0)).toISOString(), - title: 'Onboarding Call', - visibility: CalendarChannelVisibility.SHARE_EVERYTHING, - __typename: 'CalendarEvent', - }, - { - externalCreatedAt: subHours(new Date(), 2).toISOString(), - id: '5a792d11-259a-4099-af51-59eb85e15d83', - isFullDay: true, - startsAt: subMonths(new Date().setHours(8, 0), 1).toISOString(), - visibility: CalendarChannelVisibility.METADATA, - __typename: 'CalendarEvent', - }, - { - externalCreatedAt: subHours(new Date(), 2).toISOString(), - id: '89e2a1c7-3d3f-4e79-a492-aa5de3785fc5', - endsAt: subMonths(new Date().setHours(14, 30), 3).toISOString(), - isFullDay: false, - startsAt: subMonths(new Date().setHours(14, 0), 3).toISOString(), - title: 'Alan x Garry', - visibility: CalendarChannelVisibility.SHARE_EVERYTHING, - __typename: 'CalendarEvent', - }, -]; diff --git a/packages/twenty-front/src/testing/mock-data/companiesWithRelations.ts b/packages/twenty-front/src/testing/mock-data/companiesWithRelations.ts deleted file mode 100644 index fb0c181f25..0000000000 --- a/packages/twenty-front/src/testing/mock-data/companiesWithRelations.ts +++ /dev/null @@ -1,1882 +0,0 @@ -import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; -import { type ObjectRecord } from '@/object-record/types/ObjectRecord'; -import { isDefined } from 'twenty-shared/utils'; - -const FIND_MANY_COMPANIES_WITH_RELATION_QUERY_RESULT = { - data: { - companies: { - __typename: 'CompanyConnection', - totalCount: 13, - pageInfo: { - __typename: 'PageInfo', - hasNextPage: false, - hasPreviousPage: false, - startCursor: - 'eyJwb3NpdGlvbiI6MSwiaWQiOiIyMDIwMjAyMC0zZWMzLTRmZTMtODk5Ny1iNzZhYTBiZmE0MDgifQ==', - endCursor: - 'eyJwb3NpdGlvbiI6MTMsImlkIjoiMjAyMDIwMjAtMTQ1NS00YzU3LWFmYWYtZGQ1ZGMwODYzNjFkIn0=', - }, - edges: [ - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6MSwiaWQiOiIyMDIwMjAyMC0zZWMzLTRmZTMtODk5Ny1iNzZhYTBiZmE0MDgifQ==', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-3ec3-4fe3-8997-b76aa0bfa408', - name: 'Linkedin', - position: 1, - address: { - __typename: 'Address', - addressStreet1: 'Eutaw Street', - addressStreet2: null, - addressCity: 'Dublin', - addressState: null, - addressCountry: 'Ireland', - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://linkedin.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - opportunities: { - __typename: 'OpportunityConnection', - edges: [ - { - __typename: 'OpportunityEdge', - node: { - __typename: 'Opportunity', - closeDate: '2025-02-16T08:21:51.764Z', - companyId: '20202020-3ec3-4fe3-8997-b76aa0bfa408', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-be10-422b-a663-16bd3c2228e1', - name: 'Opportunity 1', - pointOfContactId: '20202020-1c0e-494c-a1b6-85b1c6fefaa5', - position: 1, - stage: 'NEW', - updatedAt: '2025-02-16T08:21:51.715Z', - amount: { - __typename: 'Currency', - amountMicros: 100000, - currencyCode: 'USD', - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Cook', - context: {}, - }, - }, - }, - ], - }, - people: { - __typename: 'PersonConnection', - edges: [ - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'Seattle', - companyId: '20202020-3ec3-4fe3-8997-b76aa0bfa408', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-1c0e-494c-a1b6-85b1c6fefaa5', - intro: '', - jobTitle: '', - performanceRating: null, - position: 1, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'christoph.calisto@linkedin.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Christoph', - lastName: 'Callisto', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '789012345', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '789012345', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'Los Angeles', - companyId: '20202020-3ec3-4fe3-8997-b76aa0bfa408', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-ac73-4797-824e-87a1f5aea9e0', - intro: '', - jobTitle: '', - performanceRating: null, - position: 2, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'sylvie.palmer@linkedin.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Sylvie', - lastName: 'Palmer', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '780123456', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '780123456', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - ], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6MiwiaWQiOiIyMDIwMjAyMC01ZDgxLTQ2ZDYtYmY4My1mN2ZkMzNlYTYxMDIifQ==', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-5d81-46d6-bf83-f7fd33ea6102', - name: 'Facebook', - position: 2, - people: { - __typename: 'PersonConnection', - edges: [], - }, - address: { - __typename: 'Address', - addressStreet1: null, - addressStreet2: null, - addressCity: null, - addressState: null, - addressCountry: null, - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://facebook.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - opportunities: { - __typename: 'OpportunityConnection', - edges: [ - { - __typename: 'OpportunityEdge', - node: { - __typename: 'Opportunity', - closeDate: '2025-02-16T08:21:51.764Z', - companyId: '20202020-5d81-46d6-bf83-f7fd33ea6102', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-0543-4cc2-9f96-95cc699960f2', - name: 'Opportunity 2', - pointOfContactId: '20202020-f517-42fd-80ae-14173b3b70ae', - position: 2, - stage: 'MEETING', - updatedAt: '2025-02-16T08:21:51.715Z', - amount: { - __typename: 'Currency', - amountMicros: 2000000, - currencyCode: 'USD', - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Cook', - context: {}, - }, - }, - }, - ], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6MywiaWQiOiIyMDIwMjAyMC0wNzEzLTQwYTUtODIxNi04MjgwMjQwMWQzM2UifQ==', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-0713-40a5-8216-82802401d33e', - name: 'Anthropic', - position: 3, - opportunities: { - __typename: 'OpportunityConnection', - edges: [], - }, - address: { - __typename: 'Address', - addressStreet1: '548 Market Street', - addressStreet2: null, - addressCity: 'San Francisco', - addressState: null, - addressCountry: 'United States', - addressPostcode: '94104', - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://anthropic.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - people: { - __typename: 'PersonConnection', - edges: [ - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'Seattle', - companyId: '20202020-0713-40a5-8216-82802401d33e', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-f517-42fd-80ae-14173b3b70ae', - intro: '', - jobTitle: '', - performanceRating: null, - position: 3, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'christopher.gonzalez@anthropic.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Christopher', - lastName: 'Gonzalez', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '789012345', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '789012345', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'Los Angeles', - companyId: '20202020-0713-40a5-8216-82802401d33e', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-eee1-4690-ad2c-8619e5b56a2e', - intro: '', - jobTitle: '', - performanceRating: null, - position: 4, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'ashley.parker@anthropic.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Ashley', - lastName: 'Parker', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '780123456', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '780123456', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - ], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6NCwiaWQiOiIyMDIwMjAyMC1lZDg5LTQxM2EtYjMxYS05NjI5ODZlNjdiYjQifQ==', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-ed89-413a-b31a-962986e67bb4', - name: 'Microsoft', - position: 4, - address: { - __typename: 'Address', - addressStreet1: null, - addressStreet2: null, - addressCity: null, - addressState: null, - addressCountry: null, - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://microsoft.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - opportunities: { - __typename: 'OpportunityConnection', - edges: [ - { - __typename: 'OpportunityEdge', - node: { - __typename: 'Opportunity', - closeDate: '2025-02-16T08:21:51.764Z', - companyId: '20202020-ed89-413a-b31a-962986e67bb4', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-2f89-406f-90ea-180f433b2445', - name: 'Opportunity 3', - pointOfContactId: '20202020-6784-4449-afdf-dc62cb8702f2', - position: 3, - stage: 'PROPOSAL', - updatedAt: '2025-02-16T08:21:51.715Z', - amount: { - __typename: 'Currency', - amountMicros: 300000, - currencyCode: 'USD', - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Cook', - context: {}, - }, - }, - }, - { - __typename: 'OpportunityEdge', - node: { - __typename: 'Opportunity', - closeDate: '2025-02-16T08:21:51.764Z', - companyId: '20202020-ed89-413a-b31a-962986e67bb4', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-35b1-4045-9cde-42f715148954', - name: 'Opportunity 4', - pointOfContactId: '20202020-80f1-4dff-b570-a74942528de3', - position: 4, - stage: 'PROPOSAL', - updatedAt: '2025-02-16T08:21:51.715Z', - amount: { - __typename: 'Currency', - amountMicros: 4000000, - currencyCode: 'USD', - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: null, - name: '', - context: {}, - }, - }, - }, - ], - }, - people: { - __typename: 'PersonConnection', - edges: [ - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'Seattle', - companyId: '20202020-ed89-413a-b31a-962986e67bb4', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-6784-4449-afdf-dc62cb8702f2', - intro: '', - jobTitle: '', - performanceRating: null, - position: 5, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'nicholas.wright@microsoft.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Nicholas', - lastName: 'Wright', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '781234567', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '781234567', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'New York', - companyId: '20202020-ed89-413a-b31a-962986e67bb4', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-490f-4466-8391-733cfd66a0c8', - intro: '', - jobTitle: '', - performanceRating: null, - position: 6, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'isabella.scott@microsoft.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Isabella', - lastName: 'Scott', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '782345678', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '782345678', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'Seattle', - companyId: '20202020-ed89-413a-b31a-962986e67bb4', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-80f1-4dff-b570-a74942528de3', - intro: '', - jobTitle: '', - performanceRating: null, - position: 7, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'matthew.green@microsoft.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Matthew', - lastName: 'Green', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '783456789', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '783456789', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - ], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6NSwiaWQiOiIyMDIwMjAyMC0xNzFlLTRiY2MtOWNmNy00MzQ0OGQ2ZmIyNzgifQ==', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-171e-4bcc-9cf7-43448d6fb278', - name: 'Airbnb', - position: 5, - opportunities: { - __typename: 'OpportunityConnection', - edges: [], - }, - address: { - __typename: 'Address', - addressStreet1: '888 Brannan St', - addressStreet2: null, - addressCity: 'San Francisco', - addressState: 'CA', - addressCountry: 'United States', - addressPostcode: '94103', - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://airbnb.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - people: { - __typename: 'PersonConnection', - edges: [ - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'New York', - companyId: '20202020-171e-4bcc-9cf7-43448d6fb278', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-338b-46df-8811-fa08c7d19d35', - intro: '', - jobTitle: '', - performanceRating: null, - position: 8, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'elizabeth.baker@airbnb.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Elizabeth', - lastName: 'Baker', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '784567890', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '784567890', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'San Francisco', - companyId: '20202020-171e-4bcc-9cf7-43448d6fb278', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-64ad-4b0e-bbfd-e9fd795b7016', - intro: '', - jobTitle: '', - performanceRating: null, - position: 9, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'christopher.nelson@airbnb.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Christopher', - lastName: 'Nelson', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '785678901', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '785678901', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'New York', - companyId: '20202020-171e-4bcc-9cf7-43448d6fb278', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-5d54-41b7-ba36-f0d20e1417ae', - intro: '', - jobTitle: '', - performanceRating: null, - position: 10, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'avery.carter@airbnb.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Avery', - lastName: 'Carter', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '786789012', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '786789012', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - ], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6NiwiaWQiOiIyMDIwMjAyMC1jMjFlLTRlYzItODczYi1kZTQyNjRkODkwMjUifQ==', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-c21e-4ec2-873b-de4264d89025', - name: 'Google', - position: 6, - opportunities: { - __typename: 'OpportunityConnection', - edges: [], - }, - address: { - __typename: 'Address', - addressStreet1: '760 Market St', - addressStreet2: 'Floor 10', - addressCity: 'San Francisco', - addressState: null, - addressCountry: 'United States', - addressPostcode: '94102', - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://google.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - people: { - __typename: 'PersonConnection', - edges: [ - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'Los Angeles', - companyId: '20202020-c21e-4ec2-873b-de4264d89025', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-623d-41fe-92e7-dd45b7c568e1', - intro: '', - jobTitle: '', - performanceRating: null, - position: 11, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'ethan.mitchell@google.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Ethan', - lastName: 'Mitchell', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '787890123', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '787890123', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'Seattle', - companyId: '20202020-c21e-4ec2-873b-de4264d89025', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-2d40-4e49-8df4-9c6a049190ef', - intro: '', - jobTitle: '', - performanceRating: null, - position: 12, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'madison.perez@google.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Madison', - lastName: 'Perez', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '788901234', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '788901234', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'Seattle', - companyId: '20202020-c21e-4ec2-873b-de4264d89025', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-2d40-4e49-8df4-9c6a049190df', - intro: '', - jobTitle: '', - performanceRating: null, - position: 13, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'bertrand.voulzy@google.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Bertrand', - lastName: 'Voulzy', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '788901234', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '788901234', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'Seattle', - companyId: '20202020-c21e-4ec2-873b-de4264d89025', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-2d40-4e49-8df4-9c6a049191de', - intro: '', - jobTitle: '', - performanceRating: null, - position: 14, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'louis.duss@google.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Louis', - lastName: 'Duss', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '789012345', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '789012345', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'PersonEdge', - node: { - __typename: 'Person', - avatarUrl: '', - city: 'Seattle', - companyId: '20202020-c21e-4ec2-873b-de4264d89025', - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - id: '20202020-2d40-4e49-8df4-9c6a049191df', - intro: '', - jobTitle: '', - performanceRating: null, - position: 15, - updatedAt: '2025-02-16T08:21:51.715Z', - workPreference: null, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - emails: { - __typename: 'Emails', - primaryEmail: 'lorie.vladim@google.com', - additionalEmails: null, - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Lorie', - lastName: 'Vladim', - }, - phones: { - __typename: 'Phones', - primaryPhoneNumber: '788901235', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - whatsapp: { - __typename: 'Phones', - primaryPhoneNumber: '788901235', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - ], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6NywiaWQiOiIyMDIwMjAyMC03MDdlLTQ0ZGMtYTFkMi0zMDAzMGJmMWE5NDQifQ==', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-707e-44dc-a1d2-30030bf1a944', - name: 'Netflix', - position: 7, - opportunities: { - __typename: 'OpportunityConnection', - edges: [], - }, - people: { - __typename: 'PersonConnection', - edges: [], - }, - address: { - __typename: 'Address', - addressStreet1: '2300 Harrison St', - addressStreet2: null, - addressCity: 'San Francisco', - addressState: 'CA', - addressCountry: 'United States', - addressPostcode: '94110', - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://netflix.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6OCwiaWQiOiIyMDIwMjAyMC0zZjc0LTQ5MmQtYTEwMS0yYTcwZjUwYTE2NDUifQ==', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-3f74-492d-a101-2a70f50a1645', - name: 'Libeo', - position: 8, - opportunities: { - __typename: 'OpportunityConnection', - edges: [], - }, - people: { - __typename: 'PersonConnection', - edges: [], - }, - address: { - __typename: 'Address', - addressStreet1: null, - addressStreet2: null, - addressCity: null, - addressState: null, - addressCountry: null, - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://libeo.io', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6OSwiaWQiOiIyMDIwMjAyMC1jZmJmLTQxNTYtYTc5MC1lMzk4NTRkY2Q0ZWIifQ==', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-cfbf-4156-a790-e39854dcd4eb', - name: 'Claap', - position: 9, - opportunities: { - __typename: 'OpportunityConnection', - edges: [], - }, - people: { - __typename: 'PersonConnection', - edges: [], - }, - address: { - __typename: 'Address', - addressStreet1: null, - addressStreet2: null, - addressCity: null, - addressState: null, - addressCountry: null, - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://claap.io', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6MTAsImlkIjoiMjAyMDIwMjAtZjg2Yi00MTlmLWI3OTQtMDIzMTlhYmU4NjM3In0=', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-f86b-419f-b794-02319abe8637', - name: 'Hasura', - position: 10, - opportunities: { - __typename: 'OpportunityConnection', - edges: [], - }, - people: { - __typename: 'PersonConnection', - edges: [], - }, - address: { - __typename: 'Address', - addressStreet1: null, - addressStreet2: null, - addressCity: null, - addressState: null, - addressCountry: null, - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://hasura.io', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6MTEsImlkIjoiMjAyMDIwMjAtNTUxOC00NTUzLTk0MzMtNDJkOGViODI4MzRiIn0=', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-5518-4553-9433-42d8eb82834b', - name: 'Wework', - position: 11, - opportunities: { - __typename: 'OpportunityConnection', - edges: [], - }, - people: { - __typename: 'PersonConnection', - edges: [], - }, - address: { - __typename: 'Address', - addressStreet1: null, - addressStreet2: null, - addressCity: null, - addressState: null, - addressCountry: null, - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://wework.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6MTIsImlkIjoiMjAyMDIwMjAtZjc5ZS00MGRkLWJkMDYtYzM2ZTZhYmI0Njc4In0=', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-f79e-40dd-bd06-c36e6abb4678', - name: 'Samsung', - position: 12, - opportunities: { - __typename: 'OpportunityConnection', - edges: [], - }, - people: { - __typename: 'PersonConnection', - edges: [], - }, - address: { - __typename: 'Address', - addressStreet1: null, - addressStreet2: null, - addressCity: null, - addressState: null, - addressCountry: null, - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://samsung.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: - 'eyJwb3NpdGlvbiI6MTMsImlkIjoiMjAyMDIwMjAtMTQ1NS00YzU3LWFmYWYtZGQ1ZGMwODYzNjFkIn0=', - node: { - __typename: 'Company', - accountOwner: null, - createdAt: '2025-02-16T08:21:51.715Z', - deletedAt: null, - employees: null, - id: '20202020-1455-4c57-afaf-dd5dc086361d', - name: 'Algolia', - position: 13, - opportunities: { - __typename: 'OpportunityConnection', - edges: [], - }, - people: { - __typename: 'PersonConnection', - edges: [], - }, - address: { - __typename: 'Address', - addressStreet1: null, - addressStreet2: null, - addressCity: null, - addressState: null, - addressCountry: null, - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: {}, - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://algolia.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - }, - }, - ], - }, - }, - loading: false, - networkStatus: 7, -} as const; - -export const allMockCompanyRecordsWithRelation = - FIND_MANY_COMPANIES_WITH_RELATION_QUERY_RESULT.data.companies.edges.map( - (edge) => getRecordFromRecordNode({ recordNode: edge.node }), - ); - -export const getMockCompanyWithRelationRecord = ( - overrides?: Partial, - index = 0, -) => { - return { - ...allMockCompanyRecordsWithRelation[index], - ...overrides, - }; -}; - -export const findMockCompanyWithRelationRecord = ({ - id: queriedCompanyId, -}: Pick) => { - const company = allMockCompanyRecordsWithRelation.find( - ({ id: currentCompanyId }) => currentCompanyId === queriedCompanyId, - ); - - if (!isDefined(company)) { - throw new Error(`Could not find company with id, ${queriedCompanyId}`); - } - - return company; -}; diff --git a/packages/twenty-front/src/testing/mock-data/connected-accounts.ts b/packages/twenty-front/src/testing/mock-data/connected-accounts.ts deleted file mode 100644 index 9f76973d53..0000000000 --- a/packages/twenty-front/src/testing/mock-data/connected-accounts.ts +++ /dev/null @@ -1,28 +0,0 @@ -export const mockedConnectedAccounts = [ - { - id: '8619ace5-1814-4e56-8439-553eab32a5cc', - handle: 'tim@twenty.com', - provider: 'gmail', - scopes: ['https://www.googleapis.com/auth/gmail.readonly'], - accountOwnerId: '56561b12-cbad-49db-a6bc-00e6b153ec80', - }, -]; - -export const getMockedConnectedAccount = () => { - return { - edges: [ - { - node: { - ...mockedConnectedAccounts[0], - }, - cursor: null, - }, - ], - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - startCursor: null, - endCursor: null, - }, - }; -}; diff --git a/packages/twenty-front/src/testing/mock-data/favorite.ts b/packages/twenty-front/src/testing/mock-data/favorite.ts deleted file mode 100644 index 6153372ea5..0000000000 --- a/packages/twenty-front/src/testing/mock-data/favorite.ts +++ /dev/null @@ -1,138 +0,0 @@ -import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; -import { mockedWorkspaceMemberData } from '~/testing/mock-data/users'; -import { mockedViewsData } from '~/testing/mock-data/views'; - -export const mockedFavoritesData = [ - { - id: '20202020-dede-koko-873b-de4264d89025', - createdAt: new Date().toISOString(), - updatedAt: new Date().toISOString(), - deletedAt: null, - position: 0, - recordId: null, - workflowId: null, - workflow: null, - workflowRunId: null, - workflowRun: null, - workflowVersionId: null, - workflowVersion: null, - forWorkspaceMemberId: mockedWorkspaceMemberData.id, - forWorkspaceMember: mockedWorkspaceMemberData, - companyId: mockedCompanyRecords[0].id, - company: mockedCompanyRecords[0], - viewId: null, - view: null, - taskId: null, - task: null, - petId: null, - pet: null, - surveyResultId: null, - surveyResult: null, - personId: null, - person: null, - opportunityId: null, - opportunity: null, - noteId: null, - note: null, - __typename: 'Favorite', - }, - { - id: '20202020-dede-koko-873b-de4264d89026', - createdAt: new Date().toISOString(), - updatedAt: new Date().toISOString(), - deletedAt: null, - position: 1, - recordId: null, - workflowId: null, - workflow: null, - workflowRunId: null, - workflowRun: null, - workflowVersionId: null, - workflowVersion: null, - forWorkspaceMemberId: null, - forWorkspaceMember: null, - companyId: null, - company: null, - viewId: mockedViewsData[0].id, - view: mockedViewsData[0], - taskId: null, - task: null, - petId: null, - pet: null, - surveyResultId: null, - surveyResult: null, - personId: null, - person: null, - opportunityId: null, - opportunity: null, - noteId: null, - note: null, - __typename: 'Favorite', - }, - { - id: '20202020-dede-koko-873b-de4264d89026', - createdAt: new Date().toISOString(), - updatedAt: new Date().toISOString(), - deletedAt: null, - position: 1, - recordId: null, - workflowId: null, - workflow: null, - workflowRunId: null, - workflowRun: null, - workflowVersionId: null, - workflowVersion: null, - forWorkspaceMemberId: null, - forWorkspaceMember: null, - companyId: null, - company: null, - viewId: mockedViewsData[1].id, - view: mockedViewsData[1], - taskId: null, - task: null, - petId: null, - pet: null, - surveyResultId: null, - surveyResult: null, - personId: null, - person: null, - opportunityId: null, - opportunity: null, - noteId: null, - note: null, - __typename: 'Favorite', - }, - { - id: '20202020-dede-koko-873b-de4264d89026', - createdAt: new Date().toISOString(), - updatedAt: new Date().toISOString(), - deletedAt: null, - position: 1, - recordId: null, - workflowId: null, - workflow: null, - workflowRunId: null, - workflowRun: null, - workflowVersionId: null, - workflowVersion: null, - forWorkspaceMemberId: null, - forWorkspaceMember: null, - companyId: null, - company: null, - viewId: mockedViewsData[1].id, - view: mockedViewsData[1], - taskId: null, - task: null, - petId: null, - pet: null, - surveyResultId: null, - surveyResult: null, - personId: null, - person: null, - opportunityId: null, - opportunity: null, - noteId: null, - note: null, - __typename: 'Favorite', - }, -]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/data/calendarEvents/mock-calendarEvents-data.ts b/packages/twenty-front/src/testing/mock-data/generated/data/calendarEvents/mock-calendarEvents-data.ts new file mode 100644 index 0000000000..66e397677e --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/data/calendarEvents/mock-calendarEvents-data.ts @@ -0,0 +1,762 @@ +/* eslint-disable */ +// @ts-nocheck +import { type ObjectRecord } from '@/object-record/types/ObjectRecord'; + +// This file was automatically generated — do not edit manually. + +// prettier-ignore +export const mockedCalendarEventRecords: ObjectRecord[] = +[ + { + "__typename": "CalendarEvent", + "calendarChannelEventAssociations": { + "__typename": "CalendarChannelEventAssociationConnection", + "edges": [ + { + "__typename": "CalendarChannelEventAssociationEdge", + "node": { + "__typename": "CalendarChannelEventAssociation", + "id": "20202020-0001-4e7c-8001-123456789abc" + } + } + ] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "david.rodriguez@company.com", + "id": "20202020-0001-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "member@company.com", + "id": "20202020-0002-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person570@company.com", + "id": "20202020-0003-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "emily.davis@company.com", + "id": "20202020-0004-4e7c-8001-123456789def" + } + } + ] + }, + "conferenceLink": { + "__typename": "Links", + "primaryLinkUrl": "https://teams.com/j/7097393112", + "primaryLinkLabel": "https://teams.com/j/7097393112", + "secondaryLinks": [] + }, + "conferenceSolution": "Teams", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "description": "FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED", + "endsAt": "2025-10-23T12:00:00.000Z", + "externalCreatedAt": "2025-10-23T07:10:38.067Z", + "externalUpdatedAt": "2025-10-22T11:34:06.086Z", + "iCalUid": "event1@calendar.twentycrm.com", + "id": "20202020-0001-4e7c-8001-123456789cde", + "isCanceled": false, + "isFullDay": false, + "location": "Conference Room A", + "position": 0, + "startsAt": "2025-10-23T11:30:00.000Z", + "title": "FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + }, + { + "__typename": "CalendarEvent", + "calendarChannelEventAssociations": { + "__typename": "CalendarChannelEventAssociationConnection", + "edges": [ + { + "__typename": "CalendarChannelEventAssociationEdge", + "node": { + "__typename": "CalendarChannelEventAssociation", + "id": "20202020-0002-4e7c-8001-123456789abc" + } + } + ] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "alex.johnson@company.com", + "id": "20202020-0005-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person254@company.com", + "id": "20202020-0006-4e7c-8001-123456789def" + } + } + ] + }, + "conferenceLink": { + "__typename": "Links", + "primaryLinkUrl": "https://zoom.com/j/8113375940", + "primaryLinkLabel": "https://zoom.com/j/8113375940", + "secondaryLinks": [] + }, + "conferenceSolution": "Zoom", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "description": "FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED", + "endsAt": "2025-12-06T09:45:00.000Z", + "externalCreatedAt": "2025-12-02T22:30:49.748Z", + "externalUpdatedAt": "2025-12-05T15:44:06.870Z", + "iCalUid": "event2@calendar.twentycrm.com", + "id": "20202020-0002-4e7c-8001-123456789cde", + "isCanceled": false, + "isFullDay": false, + "location": "Zoom", + "position": 0, + "startsAt": "2025-12-06T08:45:00.000Z", + "title": "FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + }, + { + "__typename": "CalendarEvent", + "calendarChannelEventAssociations": { + "__typename": "CalendarChannelEventAssociationConnection", + "edges": [ + { + "__typename": "CalendarChannelEventAssociationEdge", + "node": { + "__typename": "CalendarChannelEventAssociation", + "id": "20202020-0003-4e7c-8001-123456789abc" + } + } + ] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person913@company.com", + "id": "20202020-0007-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person973@company.com", + "id": "20202020-0008-4e7c-8001-123456789def" + } + } + ] + }, + "conferenceLink": { + "__typename": "Links", + "primaryLinkUrl": "https://googlemeet.com/j/2800305522", + "primaryLinkLabel": "https://googlemeet.com/j/2800305522", + "secondaryLinks": [] + }, + "conferenceSolution": "Google Meet", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "description": "Strategic planning session for upcoming project milestones and deliverables.", + "endsAt": "2026-03-23T18:00:00.000Z", + "externalCreatedAt": "2026-03-17T21:03:04.293Z", + "externalUpdatedAt": "2026-03-23T13:11:32.796Z", + "iCalUid": "event3@calendar.twentycrm.com", + "id": "20202020-0003-4e7c-8001-123456789cde", + "isCanceled": false, + "isFullDay": false, + "location": "Boardroom", + "position": 0, + "startsAt": "2026-03-23T16:30:00.000Z", + "title": "Project Planning Session", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + }, + { + "__typename": "CalendarEvent", + "calendarChannelEventAssociations": { + "__typename": "CalendarChannelEventAssociationConnection", + "edges": [ + { + "__typename": "CalendarChannelEventAssociationEdge", + "node": { + "__typename": "CalendarChannelEventAssociation", + "id": "20202020-0004-4e7c-8001-123456789abc" + } + } + ] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "member@company.com", + "id": "20202020-0009-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "james.wilson@company.com", + "id": "20202020-000a-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "member@company.com", + "id": "20202020-000b-4e7c-8001-123456789def" + } + } + ] + }, + "conferenceLink": { + "__typename": "Links", + "primaryLinkUrl": "https://googlemeet.com/j/5896936049", + "primaryLinkLabel": "https://googlemeet.com/j/5896936049", + "secondaryLinks": [] + }, + "conferenceSolution": "Google Meet", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "description": "Regular one-on-one check-in to discuss performance and career development.", + "endsAt": "2026-07-18T15:45:00.000Z", + "externalCreatedAt": "2026-07-12T01:15:12.967Z", + "externalUpdatedAt": "2026-07-17T19:37:32.025Z", + "iCalUid": "event4@calendar.twentycrm.com", + "id": "20202020-0004-4e7c-8001-123456789cde", + "isCanceled": false, + "isFullDay": false, + "location": "Zoom", + "position": 0, + "startsAt": "2026-07-18T15:00:00.000Z", + "title": "One-on-One Meeting", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + }, + { + "__typename": "CalendarEvent", + "calendarChannelEventAssociations": { + "__typename": "CalendarChannelEventAssociationConnection", + "edges": [ + { + "__typename": "CalendarChannelEventAssociationEdge", + "node": { + "__typename": "CalendarChannelEventAssociation", + "id": "20202020-0005-4e7c-8001-123456789abc" + } + } + ] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "james.wilson@company.com", + "id": "20202020-000c-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person876@company.com", + "id": "20202020-000d-4e7c-8001-123456789def" + } + } + ] + }, + "conferenceLink": { + "__typename": "Links", + "primaryLinkUrl": "https://googlemeet.com/j/3812632404", + "primaryLinkLabel": "https://googlemeet.com/j/3812632404", + "secondaryLinks": [] + }, + "conferenceSolution": "Google Meet", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "description": "Collaborative code review and technical discussion.", + "endsAt": "2026-07-10T13:00:00.000Z", + "externalCreatedAt": "2026-07-10T04:28:54.960Z", + "externalUpdatedAt": "2026-07-10T05:22:07.621Z", + "iCalUid": "event5@calendar.twentycrm.com", + "id": "20202020-0005-4e7c-8001-123456789cde", + "isCanceled": false, + "isFullDay": false, + "location": "Teams", + "position": 0, + "startsAt": "2026-07-10T12:00:00.000Z", + "title": "Code Review Session", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + }, + { + "__typename": "CalendarEvent", + "calendarChannelEventAssociations": { + "__typename": "CalendarChannelEventAssociationConnection", + "edges": [ + { + "__typename": "CalendarChannelEventAssociationEdge", + "node": { + "__typename": "CalendarChannelEventAssociation", + "id": "20202020-0006-4e7c-8001-123456789abc" + } + } + ] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "robert.taylor@company.com", + "id": "20202020-000e-4e7c-8001-123456789def" + } + } + ] + }, + "conferenceLink": { + "__typename": "Links", + "primaryLinkUrl": "https://googlemeet.com/j/8745159251", + "primaryLinkLabel": "https://googlemeet.com/j/8745159251", + "secondaryLinks": [] + }, + "conferenceSolution": "Google Meet", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "description": "Quarterly strategic planning and goal setting workshop.", + "endsAt": "2026-06-19T22:00:00.000Z", + "externalCreatedAt": "2026-06-17T17:57:29.360Z", + "externalUpdatedAt": "2026-06-19T07:49:37.396Z", + "iCalUid": "event6@calendar.twentycrm.com", + "id": "20202020-0006-4e7c-8001-123456789cde", + "isCanceled": false, + "isFullDay": true, + "location": "Conference Center", + "position": 0, + "startsAt": "2026-06-19T11:00:00.000Z", + "title": "Strategic Planning Workshop", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + }, + { + "__typename": "CalendarEvent", + "calendarChannelEventAssociations": { + "__typename": "CalendarChannelEventAssociationConnection", + "edges": [ + { + "__typename": "CalendarChannelEventAssociationEdge", + "node": { + "__typename": "CalendarChannelEventAssociation", + "id": "20202020-0007-4e7c-8001-123456789abc" + } + } + ] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "jennifer.martinez@company.com", + "id": "20202020-000f-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "member@company.com", + "id": "20202020-0010-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "member@company.com", + "id": "20202020-0011-4e7c-8001-123456789def" + } + } + ] + }, + "conferenceLink": { + "__typename": "Links", + "primaryLinkUrl": "https://teams.com/j/2210986422", + "primaryLinkLabel": "https://teams.com/j/2210986422", + "secondaryLinks": [] + }, + "conferenceSolution": "Teams", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "description": "Professional development and skills training session.", + "endsAt": "2026-04-30T10:00:00.000Z", + "externalCreatedAt": "2026-04-27T16:37:41.128Z", + "externalUpdatedAt": "2026-04-29T18:18:07.528Z", + "iCalUid": "event7@calendar.twentycrm.com", + "id": "20202020-0007-4e7c-8001-123456789cde", + "isCanceled": false, + "isFullDay": false, + "location": "Teams", + "position": 0, + "startsAt": "2026-04-30T08:00:00.000Z", + "title": "Training Session", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + }, + { + "__typename": "CalendarEvent", + "calendarChannelEventAssociations": { + "__typename": "CalendarChannelEventAssociationConnection", + "edges": [ + { + "__typename": "CalendarChannelEventAssociationEdge", + "node": { + "__typename": "CalendarChannelEventAssociation", + "id": "20202020-0008-4e7c-8001-123456789abc" + } + } + ] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person321@company.com", + "id": "20202020-0012-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "member@company.com", + "id": "20202020-0013-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "michael.chen@company.com", + "id": "20202020-0014-4e7c-8001-123456789def" + } + } + ] + }, + "conferenceLink": { + "__typename": "Links", + "primaryLinkUrl": "https://googlemeet.com/j/2260515052", + "primaryLinkLabel": "https://googlemeet.com/j/2260515052", + "secondaryLinks": [] + }, + "conferenceSolution": "Google Meet", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "description": "Customer interview to gather feedback and understand needs.", + "endsAt": "2026-04-01T11:00:00.000Z", + "externalCreatedAt": "2026-03-28T21:09:24.516Z", + "externalUpdatedAt": "2026-03-31T14:40:32.244Z", + "iCalUid": "event8@calendar.twentycrm.com", + "id": "20202020-0008-4e7c-8001-123456789cde", + "isCanceled": false, + "isFullDay": false, + "location": "Teams", + "position": 0, + "startsAt": "2026-04-01T10:15:00.000Z", + "title": "Customer Discovery Call", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + }, + { + "__typename": "CalendarEvent", + "calendarChannelEventAssociations": { + "__typename": "CalendarChannelEventAssociationConnection", + "edges": [ + { + "__typename": "CalendarChannelEventAssociationEdge", + "node": { + "__typename": "CalendarChannelEventAssociation", + "id": "20202020-0009-4e7c-8001-123456789abc" + } + } + ] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "member@company.com", + "id": "20202020-0015-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person899@company.com", + "id": "20202020-0016-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person492@company.com", + "id": "20202020-0017-4e7c-8001-123456789def" + } + } + ] + }, + "conferenceLink": { + "__typename": "Links", + "primaryLinkUrl": "https://googlemeet.com/j/1181385220", + "primaryLinkLabel": "https://googlemeet.com/j/1181385220", + "secondaryLinks": [] + }, + "conferenceSolution": "Google Meet", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "description": "Quarterly budget review and financial planning session.", + "endsAt": "2026-06-09T12:45:00.000Z", + "externalCreatedAt": "2026-06-08T23:06:40.889Z", + "externalUpdatedAt": "2026-06-09T09:09:28.748Z", + "iCalUid": "event9@calendar.twentycrm.com", + "id": "20202020-0009-4e7c-8001-123456789cde", + "isCanceled": false, + "isFullDay": false, + "location": "Zoom", + "position": 0, + "startsAt": "2026-06-09T11:15:00.000Z", + "title": "Budget Review Meeting", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + }, + { + "__typename": "CalendarEvent", + "calendarChannelEventAssociations": { + "__typename": "CalendarChannelEventAssociationConnection", + "edges": [ + { + "__typename": "CalendarChannelEventAssociationEdge", + "node": { + "__typename": "CalendarChannelEventAssociation", + "id": "20202020-000a-4e7c-8001-123456789abc" + } + } + ] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "alex.johnson@company.com", + "id": "20202020-0018-4e7c-8001-123456789def" + } + } + ] + }, + "conferenceLink": { + "__typename": "Links", + "primaryLinkUrl": "https://googlemeet.com/j/4116289029", + "primaryLinkLabel": "https://googlemeet.com/j/4116289029", + "secondaryLinks": [] + }, + "conferenceSolution": "Google Meet", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "description": "Product demonstration for potential customers and stakeholders.", + "endsAt": "2026-03-12T09:30:00.000Z", + "externalCreatedAt": "2026-03-05T20:44:15.718Z", + "externalUpdatedAt": "2026-03-11T22:42:25.619Z", + "iCalUid": "event10@calendar.twentycrm.com", + "id": "20202020-000a-4e7c-8001-123456789cde", + "isCanceled": false, + "isFullDay": false, + "location": "Client Site", + "position": 0, + "startsAt": "2026-03-12T08:30:00.000Z", + "title": "Product Demo", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + } +]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/data/connectedAccounts/mock-connectedAccounts-data.ts b/packages/twenty-front/src/testing/mock-data/generated/data/connectedAccounts/mock-connectedAccounts-data.ts new file mode 100644 index 0000000000..7d8c160342 --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/data/connectedAccounts/mock-connectedAccounts-data.ts @@ -0,0 +1,246 @@ +/* eslint-disable */ +// @ts-nocheck +import { type ObjectRecord } from '@/object-record/types/ObjectRecord'; + +// This file was automatically generated — do not edit manually. + +// prettier-ignore +export const mockedConnectedAccountRecords: ObjectRecord[] = +[ + { + "__typename": "ConnectedAccount", + "accessToken": "exampleAccessToken", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "name": { + "__typename": "FullName", + "firstName": "Jony", + "lastName": "Ive" + } + }, + "accountOwnerId": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "authFailedAt": null, + "calendarChannels": { + "__typename": "CalendarChannelConnection", + "edges": [ + { + "__typename": "CalendarChannelEdge", + "node": { + "__typename": "CalendarChannel", + "handle": "jony@apple.dev", + "id": "20202020-a40f-4faf-bb9f-c6f9945b8204" + } + } + ] + }, + "connectionParameters": null, + "createdAt": "2026-02-27T01:17:25.392Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "handle": "jony.ive@apple.dev", + "handleAliases": "", + "id": "20202020-0cc8-4d60-a3a4-803245698908", + "lastCredentialsRefreshedAt": null, + "lastSyncHistoryId": "exampleLastSyncHistory", + "messageChannels": { + "__typename": "MessageChannelConnection", + "edges": [ + { + "__typename": "MessageChannelEdge", + "node": { + "__typename": "MessageChannel", + "handle": "jony.ive@apple.dev", + "id": "20202020-5ffe-4b32-814a-983d5e4911cd" + } + } + ] + }, + "position": 0, + "provider": "google", + "refreshToken": "exampleRefreshToken", + "scopes": [], + "updatedAt": "2026-02-27T01:17:25.392Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + }, + { + "__typename": "ConnectedAccount", + "accessToken": "exampleAccessToken", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "accountOwnerId": "20202020-0687-4c41-b707-ed1bfca972a7", + "authFailedAt": null, + "calendarChannels": { + "__typename": "CalendarChannelConnection", + "edges": [ + { + "__typename": "CalendarChannelEdge", + "node": { + "__typename": "CalendarChannel", + "handle": "tim@apple.dev", + "id": "20202020-a40f-4faf-bb9f-c6f9945b8203" + } + }, + { + "__typename": "CalendarChannelEdge", + "node": { + "__typename": "CalendarChannel", + "handle": "company-main@apple.dev", + "id": "20202020-a40f-4faf-bb9f-c6f9945b8206" + } + }, + { + "__typename": "CalendarChannelEdge", + "node": { + "__typename": "CalendarChannel", + "handle": "team-calendar@apple.dev", + "id": "20202020-a40f-4faf-bb9f-c6f9945b8207" + } + } + ] + }, + "connectionParameters": null, + "createdAt": "2026-02-27T01:17:25.392Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "handle": "tim@apple.dev", + "handleAliases": "", + "id": "20202020-9ac0-4390-9a1a-ab4d2c4e1bb7", + "lastCredentialsRefreshedAt": null, + "lastSyncHistoryId": "exampleLastSyncHistory", + "messageChannels": { + "__typename": "MessageChannelConnection", + "edges": [ + { + "__typename": "MessageChannelEdge", + "node": { + "__typename": "MessageChannel", + "handle": "tim@apple.dev", + "id": "20202020-9b80-4c2c-a597-383db48de1d6" + } + }, + { + "__typename": "MessageChannelEdge", + "node": { + "__typename": "MessageChannel", + "handle": "support@apple.dev", + "id": "20202020-e2f1-49b5-85d2-5d3a3386990d" + } + }, + { + "__typename": "MessageChannelEdge", + "node": { + "__typename": "MessageChannel", + "handle": "sales@apple.dev", + "id": "20202020-e2f1-49b5-85d2-5d3a3386990e" + } + } + ] + }, + "position": 0, + "provider": "google", + "refreshToken": "exampleRefreshToken", + "scopes": [], + "updatedAt": "2026-02-27T01:17:25.392Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + }, + { + "__typename": "ConnectedAccount", + "accessToken": "exampleAccessToken", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + } + }, + "accountOwnerId": "20202020-1553-45c6-a028-5a9064cce07f", + "authFailedAt": null, + "calendarChannels": { + "__typename": "CalendarChannelConnection", + "edges": [ + { + "__typename": "CalendarChannelEdge", + "node": { + "__typename": "CalendarChannel", + "handle": "phil@apple.dev", + "id": "20202020-a40f-4faf-bb9f-c6f9945b8205" + } + } + ] + }, + "connectionParameters": null, + "createdAt": "2026-02-27T01:17:25.392Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "handle": "phil.schiler@apple.dev", + "handleAliases": "", + "id": "20202020-cafc-4323-908d-e5b42ad69fdf", + "lastCredentialsRefreshedAt": null, + "lastSyncHistoryId": "exampleLastSyncHistory", + "messageChannels": { + "__typename": "MessageChannelConnection", + "edges": [ + { + "__typename": "MessageChannelEdge", + "node": { + "__typename": "MessageChannel", + "handle": "phil.schiler@apple.dev", + "id": "20202020-e2f1-49b5-85d2-5d3a3386990c" + } + } + ] + }, + "position": 0, + "provider": "google", + "refreshToken": "exampleRefreshToken", + "scopes": [], + "updatedAt": "2026-02-27T01:17:25.392Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + } + } +]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/data/favoriteFolders/mock-favoriteFolders-data.ts b/packages/twenty-front/src/testing/mock-data/generated/data/favoriteFolders/mock-favoriteFolders-data.ts new file mode 100644 index 0000000000..187ce81c6d --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/data/favoriteFolders/mock-favoriteFolders-data.ts @@ -0,0 +1,9 @@ +/* eslint-disable */ +// @ts-nocheck +import { type ObjectRecord } from '@/object-record/types/ObjectRecord'; + +// This file was automatically generated — do not edit manually. + +// prettier-ignore +export const mockedFavoriteFolderRecords: ObjectRecord[] = +[]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/data/favorites/mock-favorites-data.ts b/packages/twenty-front/src/testing/mock-data/generated/data/favorites/mock-favorites-data.ts new file mode 100644 index 0000000000..1ed376dced --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/data/favorites/mock-favorites-data.ts @@ -0,0 +1,560 @@ +/* eslint-disable */ +// @ts-nocheck +import { type ObjectRecord } from '@/object-record/types/ObjectRecord'; + +// This file was automatically generated — do not edit manually. + +// prettier-ignore +export const mockedFavoriteRecords: ObjectRecord[] = +[ + { + "__typename": "Favorite", + "company": null, + "companyId": null, + "createdAt": "2026-02-27T01:17:27.120Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dashboard": null, + "dashboardId": null, + "deletedAt": null, + "employmentHistory": null, + "employmentHistoryId": null, + "favoriteFolder": null, + "favoriteFolderId": null, + "forWorkspaceMember": null, + "forWorkspaceMemberId": null, + "id": "36a3c23b-bdd7-4c03-8332-ba93fe82e0ef", + "note": null, + "noteId": null, + "opportunity": null, + "opportunityId": null, + "person": null, + "personId": null, + "pet": null, + "petCareAgreement": null, + "petCareAgreementId": null, + "petId": null, + "position": 3, + "rocket": null, + "rocketId": null, + "surveyResult": null, + "surveyResultId": null, + "task": null, + "taskId": null, + "updatedAt": "2026-02-27T01:17:27.120Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "viewId": "580054a7-0fb9-4193-b93b-ebe8dfe2a6e8", + "workflow": null, + "workflowId": null, + "workflowRun": null, + "workflowRunId": null, + "workflowVersion": null, + "workflowVersionId": null + }, + { + "__typename": "Favorite", + "company": null, + "companyId": null, + "createdAt": "2026-02-27T01:17:28.065Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dashboard": null, + "dashboardId": null, + "deletedAt": null, + "employmentHistory": null, + "employmentHistoryId": null, + "favoriteFolder": null, + "favoriteFolderId": null, + "forWorkspaceMember": null, + "forWorkspaceMemberId": null, + "id": "42adcbab-c6ff-4c14-8d9f-64ea6a2ee07e", + "note": null, + "noteId": null, + "opportunity": null, + "opportunityId": null, + "person": null, + "personId": null, + "pet": null, + "petCareAgreement": null, + "petCareAgreementId": null, + "petId": null, + "position": 11, + "rocket": null, + "rocketId": null, + "surveyResult": null, + "surveyResultId": null, + "task": null, + "taskId": null, + "updatedAt": "2026-02-27T01:17:28.065Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "workflow": null, + "workflowId": null, + "workflowRun": null, + "workflowRunId": null, + "workflowVersion": null, + "workflowVersionId": null + }, + { + "__typename": "Favorite", + "company": null, + "companyId": null, + "createdAt": "2026-02-27T01:17:27.120Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dashboard": null, + "dashboardId": null, + "deletedAt": null, + "employmentHistory": null, + "employmentHistoryId": null, + "favoriteFolder": null, + "favoriteFolderId": null, + "forWorkspaceMember": null, + "forWorkspaceMemberId": null, + "id": "45a4eab3-c3c8-4bb6-9dd0-a836d04de83d", + "note": null, + "noteId": null, + "opportunity": null, + "opportunityId": null, + "person": null, + "personId": null, + "pet": null, + "petCareAgreement": null, + "petCareAgreementId": null, + "petId": null, + "position": 1, + "rocket": null, + "rocketId": null, + "surveyResult": null, + "surveyResultId": null, + "task": null, + "taskId": null, + "updatedAt": "2026-02-27T01:17:27.120Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "viewId": "aacdfdf3-fab0-4452-8cef-6b3a7cdae65d", + "workflow": null, + "workflowId": null, + "workflowRun": null, + "workflowRunId": null, + "workflowVersion": null, + "workflowVersionId": null + }, + { + "__typename": "Favorite", + "company": null, + "companyId": null, + "createdAt": "2026-02-27T01:17:27.366Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dashboard": null, + "dashboardId": null, + "deletedAt": null, + "employmentHistory": null, + "employmentHistoryId": null, + "favoriteFolder": null, + "favoriteFolderId": null, + "forWorkspaceMember": null, + "forWorkspaceMemberId": null, + "id": "47daf142-9f82-4f34-991a-17943ed3a612", + "note": null, + "noteId": null, + "opportunity": null, + "opportunityId": null, + "person": null, + "personId": null, + "pet": null, + "petCareAgreement": null, + "petCareAgreementId": null, + "petId": null, + "position": 7, + "rocket": null, + "rocketId": null, + "surveyResult": null, + "surveyResultId": null, + "task": null, + "taskId": null, + "updatedAt": "2026-02-27T01:17:27.366Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "workflow": null, + "workflowId": null, + "workflowRun": null, + "workflowRunId": null, + "workflowVersion": null, + "workflowVersionId": null + }, + { + "__typename": "Favorite", + "company": null, + "companyId": null, + "createdAt": "2026-02-27T01:17:27.120Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dashboard": null, + "dashboardId": null, + "deletedAt": null, + "employmentHistory": null, + "employmentHistoryId": null, + "favoriteFolder": null, + "favoriteFolderId": null, + "forWorkspaceMember": null, + "forWorkspaceMemberId": null, + "id": "4bc58002-47cd-4081-bde4-e6ed626dab00", + "note": null, + "noteId": null, + "opportunity": null, + "opportunityId": null, + "person": null, + "personId": null, + "pet": null, + "petCareAgreement": null, + "petCareAgreementId": null, + "petId": null, + "position": 6, + "rocket": null, + "rocketId": null, + "surveyResult": null, + "surveyResultId": null, + "task": null, + "taskId": null, + "updatedAt": "2026-02-27T01:17:27.120Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "viewId": "fbcbcef2-9812-44ee-b4de-3ea16dbadc18", + "workflow": null, + "workflowId": null, + "workflowRun": null, + "workflowRunId": null, + "workflowVersion": null, + "workflowVersionId": null + }, + { + "__typename": "Favorite", + "company": null, + "companyId": null, + "createdAt": "2026-02-27T01:17:27.773Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dashboard": null, + "dashboardId": null, + "deletedAt": null, + "employmentHistory": null, + "employmentHistoryId": null, + "favoriteFolder": null, + "favoriteFolderId": null, + "forWorkspaceMember": null, + "forWorkspaceMemberId": null, + "id": "5d1b4370-e3d9-4555-a4ba-35c65aba3036", + "note": null, + "noteId": null, + "opportunity": null, + "opportunityId": null, + "person": null, + "personId": null, + "pet": null, + "petCareAgreement": null, + "petCareAgreementId": null, + "petId": null, + "position": 9, + "rocket": null, + "rocketId": null, + "surveyResult": null, + "surveyResultId": null, + "task": null, + "taskId": null, + "updatedAt": "2026-02-27T01:17:27.773Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "workflow": null, + "workflowId": null, + "workflowRun": null, + "workflowRunId": null, + "workflowVersion": null, + "workflowVersionId": null + }, + { + "__typename": "Favorite", + "company": null, + "companyId": null, + "createdAt": "2026-02-27T01:17:27.120Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dashboard": null, + "dashboardId": null, + "deletedAt": null, + "employmentHistory": null, + "employmentHistoryId": null, + "favoriteFolder": null, + "favoriteFolderId": null, + "forWorkspaceMember": null, + "forWorkspaceMemberId": null, + "id": "8f939c19-d22a-4a74-b128-053328461f54", + "note": null, + "noteId": null, + "opportunity": null, + "opportunityId": null, + "person": null, + "personId": null, + "pet": null, + "petCareAgreement": null, + "petCareAgreementId": null, + "petId": null, + "position": 0, + "rocket": null, + "rocketId": null, + "surveyResult": null, + "surveyResultId": null, + "task": null, + "taskId": null, + "updatedAt": "2026-02-27T01:17:27.120Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "viewId": "123952b3-15d7-4674-aa2c-f5e21a0ef4b7", + "workflow": null, + "workflowId": null, + "workflowRun": null, + "workflowRunId": null, + "workflowVersion": null, + "workflowVersionId": null + }, + { + "__typename": "Favorite", + "company": null, + "companyId": null, + "createdAt": "2026-02-27T01:17:27.120Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dashboard": null, + "dashboardId": null, + "deletedAt": null, + "employmentHistory": null, + "employmentHistoryId": null, + "favoriteFolder": null, + "favoriteFolderId": null, + "forWorkspaceMember": null, + "forWorkspaceMemberId": null, + "id": "95132523-73dc-465e-867c-371a6b1e5274", + "note": null, + "noteId": null, + "opportunity": null, + "opportunityId": null, + "person": null, + "personId": null, + "pet": null, + "petCareAgreement": null, + "petCareAgreementId": null, + "petId": null, + "position": 4, + "rocket": null, + "rocketId": null, + "surveyResult": null, + "surveyResultId": null, + "task": null, + "taskId": null, + "updatedAt": "2026-02-27T01:17:27.120Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "viewId": "b565bc45-7edb-47d9-a4b1-0258a2fe8322", + "workflow": null, + "workflowId": null, + "workflowRun": null, + "workflowRunId": null, + "workflowVersion": null, + "workflowVersionId": null + }, + { + "__typename": "Favorite", + "company": null, + "companyId": null, + "createdAt": "2026-02-27T01:17:27.952Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dashboard": null, + "dashboardId": null, + "deletedAt": null, + "employmentHistory": null, + "employmentHistoryId": null, + "favoriteFolder": null, + "favoriteFolderId": null, + "forWorkspaceMember": null, + "forWorkspaceMemberId": null, + "id": "cad55192-d483-41b6-ba3a-1275244cd700", + "note": null, + "noteId": null, + "opportunity": null, + "opportunityId": null, + "person": null, + "personId": null, + "pet": null, + "petCareAgreement": null, + "petCareAgreementId": null, + "petId": null, + "position": 10, + "rocket": null, + "rocketId": null, + "surveyResult": null, + "surveyResultId": null, + "task": null, + "taskId": null, + "updatedAt": "2026-02-27T01:17:27.952Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "workflow": null, + "workflowId": null, + "workflowRun": null, + "workflowRunId": null, + "workflowVersion": null, + "workflowVersionId": null + }, + { + "__typename": "Favorite", + "company": null, + "companyId": null, + "createdAt": "2026-02-27T01:17:27.120Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dashboard": null, + "dashboardId": null, + "deletedAt": null, + "employmentHistory": null, + "employmentHistoryId": null, + "favoriteFolder": null, + "favoriteFolderId": null, + "forWorkspaceMember": null, + "forWorkspaceMemberId": null, + "id": "da35da1e-5189-4ef7-83d6-ebddf6eb86c2", + "note": null, + "noteId": null, + "opportunity": null, + "opportunityId": null, + "person": null, + "personId": null, + "pet": null, + "petCareAgreement": null, + "petCareAgreementId": null, + "petId": null, + "position": 2, + "rocket": null, + "rocketId": null, + "surveyResult": null, + "surveyResultId": null, + "task": null, + "taskId": null, + "updatedAt": "2026-02-27T01:17:27.120Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "viewId": "9e10e56a-a3f7-40e0-a9dd-a34ddbc4a709", + "workflow": null, + "workflowId": null, + "workflowRun": null, + "workflowRunId": null, + "workflowVersion": null, + "workflowVersionId": null + } +]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/data/workspaceMembers/mock-workspaceMembers-data.ts b/packages/twenty-front/src/testing/mock-data/generated/data/workspaceMembers/mock-workspaceMembers-data.ts new file mode 100644 index 0000000000..fed1111a82 --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/data/workspaceMembers/mock-workspaceMembers-data.ts @@ -0,0 +1,23999 @@ +/* eslint-disable */ +// @ts-nocheck +import { type ObjectRecord } from '@/object-record/types/ObjectRecord'; + +// This file was automatically generated — do not edit manually. + +// prettier-ignore +export const mockedWorkspaceMemberRecords: ObjectRecord[] = +[ + { + "__typename": "WorkspaceMember", + "accountOwnerForCompanies": { + "__typename": "CompanyConnection", + "edges": [ + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "uber.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a39c-4644-867d-e8e1851b3ee8", + "name": "Uber" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "servicenow.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a1d7-4279-a41a-7530ade05b5b", + "name": "ServiceNow" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sw.siemens.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a076-43ec-a8ac-485420bd2ccf", + "name": "Siemens Digital Industries Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "juniper.net", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa45-4913-878e-d7ebf66ee13e", + "name": "Juniper Networks" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "teradata.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa8e-4283-ba38-faf499869cb7", + "name": "Teradata" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "akamai.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6d3-42bc-ac1e-b0c9c1e032db", + "name": "Akamai Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "realpage.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a958-4f51-9d1e-d3799bf8bf94", + "name": "RealPage, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "shutterflyinc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a729-4cba-861d-6582f1bb5985", + "name": "Shutterfly" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "unity.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac61-4374-a911-cbb469541429", + "name": "Unity" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "freshworks.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aac2-4504-9a18-f50157ece5fb", + "name": "Freshworks" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "seal-software.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a38b-447c-b98d-b21ecc37ae48", + "name": "Seal Software, a DocuSign Company" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "nutanix.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aedb-41d6-91cc-763d21e740b7", + "name": "Nutanix" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "genesys.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5d1-459c-97fa-dd4f8e3cadc0", + "name": "Genesys" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "databricks.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac1f-49e8-886f-f81ac9ef2b17", + "name": "Databricks" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "csgi.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a659-4a9e-a307-110daf1ee522", + "name": "CSG" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "twilio.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a1f5-49c6-8838-47b1ff5de851", + "name": "Twilio" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "citrix.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a2d1-48af-88ba-43c62cb1975e", + "name": "Citrix" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "roblox.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5a1-41de-987f-6a8ff51b0f5b", + "name": "Roblox" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "newfold.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a307-4430-aa81-a9cc6e1f2b10", + "name": "Newfold Digital" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "informatica.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afea-4a51-81be-d46de6a93db7", + "name": "Informatica" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "epicor.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abbf-40c8-9fac-a40e245d5c87", + "name": "Epicor" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "hexagonppm.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a974-4813-b37b-fb58adc77511", + "name": "Hexagon Asset Lifecycle Intelligence" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "blueyonder.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae31-44d8-b98c-b516c495fee0", + "name": "Blue Yonder" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "utest.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac78-4211-b67a-3e83eb3c556f", + "name": "uTest" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "paylocity.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a9e3-4cd1-aafb-664e9290f795", + "name": "Paylocity" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "toasttab.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac69-4ec9-9b44-b8baf5d45ca9", + "name": "Toast" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "bentley.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af10-41df-bd84-680a0c8ec306", + "name": "Bentley Systems" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ca.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4f8-498e-9797-66183ba2b1d4", + "name": "CA Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sprinklr.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a586-4603-8fc0-04c85dc2053f", + "name": "Sprinklr" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "reyrey.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac51-4f97-bafb-e7f2ec84717e", + "name": "The Reynolds and Reynolds Company" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "avalara.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a382-44b5-917a-afe0505b0ea3", + "name": "Avalara" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "aspentech.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a831-4e05-8b70-c8d0cd297c29", + "name": "Aspen Technology" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "palantir.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6ef-4ed9-8626-a1390f3ebda9", + "name": "Palantir Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "marketamerica.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a7f0-44a0-aa04-bc0a00bf56a5", + "name": "Market America, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "zoominfo.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a026-47d2-9474-75fb625f5eb1", + "name": "ZoomInfo" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ge.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aff4-4f9c-8be7-7cb37d86fe76", + "name": "GE Digital" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "rms.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a2a0-4356-9f2f-64cf988b533d", + "name": "RMS" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "gomotive.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3d7-4d6a-ba0e-6ffa4d25af9b", + "name": "Motive" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "dropbox.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae4b-4b3f-826b-2d91511a0631", + "name": "Dropbox" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "deltek.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae1f-49f9-954a-4d75c2ad15fb", + "name": "Deltek" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "altair.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aed9-480b-9367-ebb2c95cb3d7", + "name": "Altair" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "blackbaud.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8b7-4998-a786-e5a302470efd", + "name": "Blackbaud" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "discord.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad82-4264-a88e-5fd9491c39e1", + "name": "Discord" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "inovalon.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad73-49fa-922a-350753580e34", + "name": "Inovalon" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "progress.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a190-4324-8f31-044517a04b1a", + "name": "Progress" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "audible.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4f3-4e8e-8667-f36775649a10", + "name": "Audible" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "cyberark.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a896-4b36-8e12-41e881df9afe", + "name": "CyberArk" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "cloudera.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afda-4d53-8aa8-c02ececbf3c3", + "name": "Cloudera" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mncsoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad39-402d-9c61-b54b009d308e", + "name": "MNC Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ukg.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-acab-4d19-85ce-98acd979853a", + "name": "Kronos Incorporated" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "asana.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a85d-40a0-b5cf-6419881fb4ff", + "name": "Asana" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "hudl.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abdd-4a7e-a556-09e8a833c9e4", + "name": "Hudl" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "spoton.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a862-401c-a0f1-6c004c7941ea", + "name": "SpotOn" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "aurora.tech", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad8a-4b82-954c-b92e1d9c9bc9", + "name": "Aurora" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "solarwinds.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac2c-4d7c-b352-508a7c7f61ba", + "name": "SolarWinds" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "goto.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a82e-42a2-90e3-ad14d68aebc5", + "name": "GoTo" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "hashicorp.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abcd-4dc8-8340-57a5dc8a0bb7", + "name": "HashiCorp" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sailpoint.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab77-40a6-b62d-83f021a6d121", + "name": "SailPoint" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "appian.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a186-44a8-88da-f1ea7b6998a0", + "name": "Appian Corporation" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "inhabitiq.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afaf-4b8d-84e7-bc708022d419", + "name": "Inhabit®" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "symphonyai.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3e9-4ec6-914c-5faba30cfa14", + "name": "SymphonyAI" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "toshiba.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a84f-4da5-80f6-eabb31ba0cdf", + "name": "Toshiba Global Commerce Solutions" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "windriver.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a59b-475c-92d5-e0bacca3aca0", + "name": "Wind River" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "appliedsystems.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a605-4fa7-8a2a-61253809900b", + "name": "Applied Systems" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ntst.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a52e-483c-89b0-74fecffeed18", + "name": "Netsmart" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "apache.org", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a192-4f09-b64a-c0d73cf2c986", + "name": "The Apache Software Foundation" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "feverup.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afdb-4d03-8571-34222063f9f4", + "name": "Fever" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "entrata.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a37e-4cbe-8218-e1f56c051913", + "name": "Entrata" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "majesco.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a54d-4788-ad29-87923e682305", + "name": "Majesco" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "pditechnologies.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aeb3-40b1-8f18-de25a7fd1146", + "name": "PDI Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sitecore.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-acaf-44c5-852a-dc64a5948b11", + "name": "Sitecore" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "postman.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a425-4113-b509-425ffaaf9778", + "name": "Postman" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "fastenterprises.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a9c5-4d2c-8a54-12f9ef829cea", + "name": "Fast Enterprises, LLC" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "blackline.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a88f-455d-b287-540ac087f356", + "name": "BlackLine" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "zuora.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa0b-48a9-85ba-e223975696ea", + "name": "Zuora" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "intelycare.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3e6-4514-88e8-7394fa3017cc", + "name": "IntelyCare" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "intersystems.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aaae-4eb7-b9a7-83dcad70c5db", + "name": "InterSystems" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "avid.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a514-4f6a-8f7a-8567a6703d24", + "name": "Avid" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "conga.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae5a-4779-a032-3aa97ddf6b71", + "name": "Conga" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "vistex.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab74-4494-a7d7-27c6c05b98d1", + "name": "Vistex" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "avidxchange.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abb1-413c-834e-a19f496306e5", + "name": "AvidXchange, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "hackerrank.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a11c-414a-9a42-9970c577524f", + "name": "HackerRank" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "clearwateranalytics.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a824-47ce-90a9-8cfb80020d2b", + "name": "Clearwater Analytics" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "everbridge.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab7b-4a44-bc10-b12059d6812c", + "name": "Everbridge" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "zycus.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a312-4f56-98f3-a32993a4d2d2", + "name": "Zycus" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "exadel.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a992-47fb-abee-40b27b307001", + "name": "Exadel" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "bazaarvoice.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a89c-4037-9749-7f7816cdf060", + "name": "Bazaarvoice" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "appdynamics.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa19-47dd-a8a8-84b9b5a10c0d", + "name": "AppDynamics" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "avature.net", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a456-44cb-9ef5-98a64d8e1e1c", + "name": "Avature" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "asg.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a581-4518-80e9-17ea7adf84c3", + "name": "ASG Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "seismic.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0d8-4d8b-bb29-42df3c1b9da3", + "name": "Seismic" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "modmed.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a05e-4df7-8b6e-6e9395b374fa", + "name": "ModMed" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "acvauctions.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac2d-48ea-b519-c00bee80057d", + "name": "ACV Auctions" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "modeln.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad0b-4a79-9704-e463f921fd47", + "name": "Model N" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "thoughtspot.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab7d-4c61-a432-8f9f10667ef7", + "name": "ThoughtSpot" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "getebs.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a1ba-40be-abfd-8d0c2a751a72", + "name": "SSS" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "metricstream.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a9bc-4ff9-a890-6758e48c5d23", + "name": "MetricStream" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sproutsocial.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afd7-49f1-8fb7-679210414fe3", + "name": "Sprout Social, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "enverus.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab87-465a-ba45-3694ba97a142", + "name": "Enverus" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "syncfusion.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad8c-49d0-aa3e-191fcaa69f18", + "name": "Syncfusion" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "syniti.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-add4-47bd-ba9f-7ac35d0013c3", + "name": "Syniti" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tallertechnologies.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a2ac-4889-8e9e-186582699190", + "name": "Taller" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "planet.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a23f-4ea3-b692-076ebe7ddf6e", + "name": "Planet" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "niceactimize.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a39f-49ae-b797-efd21321492a", + "name": "NICE Actimize" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "gainsight.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa2f-44a2-b657-c5c01e7351a2", + "name": "Gainsight" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "lucid.co", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0db-423a-b5ed-38166d53a7f9", + "name": "Lucid Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "domo.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a2a2-4782-b757-f2e1c30d6c03", + "name": "Domo" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "podium.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af6c-4815-9e1e-9bc061822bbb", + "name": "Podium" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "oc.lc", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3b5-4bfe-a9d5-1bcd2ec99f5a", + "name": "OCLC" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "wish.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a494-4962-8073-8f0221a314af", + "name": "Wish" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "restaurant365.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8a9-4729-a732-7e72e7df4885", + "name": "Restaurant365" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "lawson.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5a9-470c-aa08-c49439c77459", + "name": "Lawson Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "wrike.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac04-4d3f-b13d-69686927f97c", + "name": "Wrike" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "fastly.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3fd-41bd-9e3c-0a56337aa474", + "name": "Fastly" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "cantaloupe.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afdc-4d1f-bd1c-e20a00dbab08", + "name": "Cantaloupe Inc" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "eagleview.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aaa1-4447-8cd1-86ccc8fb2ed2", + "name": "EagleView" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "calamp.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae5e-4083-8cb7-7d8b85422d2b", + "name": "CalAmp" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ess-home.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a87c-464e-bf96-5b80c22f2a9f", + "name": "ESS" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tebra.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aba3-43eb-ae64-ca23e5d8aef9", + "name": "Tebra" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "benefitfocus.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5d6-4414-a24a-effcc5a126b9", + "name": "Benefitfocus" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "nisc.coop", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab4b-4c28-9c46-a7a8c93af72d", + "name": "NISC" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "radancy.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aed1-4f20-9e22-43ec4ac60a1f", + "name": "Radancy" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "granicus.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a244-4372-9062-fe38c3f463ea", + "name": "Granicus" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "acquia.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a214-4148-966c-ee34a2e0c09a", + "name": "Acquia" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "outbrain.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afca-44b5-9c13-c8245c3a65df", + "name": "Outbrain" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "c3.ai", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa76-4c0a-b17c-4ebef1d02d85", + "name": "C3 AI" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "uplandsoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a967-4fb7-9c66-02ae8a2dc573", + "name": "Upland Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "auctane.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a398-470f-97ef-905b9053f1d7", + "name": "Auctane" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "blueprism.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a633-42ba-888c-12718f2c7d65", + "name": "SS&C Blue Prism" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sei.cmu.edu", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae79-43eb-aa92-28a4aa06df5f", + "name": "Software Engineering Institute | Carnegie Mellon University" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "imanage.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af91-4123-b33b-3a71b446117c", + "name": "iManage" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "azuga.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a68d-49d5-a588-51cbf5aab898", + "name": "Azuga, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "datarobot.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-adf9-4c7c-8afa-cf10f4f7d07a", + "name": "DataRobot" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "technisys.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a93a-4e1a-a6b5-8dc99eb8ce86", + "name": "Technisys" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "imprivata.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0ee-44ba-89ad-f6377417e293", + "name": "Imprivata" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "webflow.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab82-459b-baea-e5d3ad151d36", + "name": "Webflow" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ezesoft.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a945-469e-8ae3-e2cd85f79c15", + "name": "SS&C Eze" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "apollo.io", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a059-4999-b642-4d0504dfa229", + "name": "Apollo.io" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "forgerock.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6ba-4d1a-8964-622829039e34", + "name": "ForgeRock" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tradingtechnologies.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a982-469f-b938-dc4e6b3ad2f6", + "name": "Trading Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "dealer.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a21e-48d6-8a05-607f3ee54cf1", + "name": "Dealer.com" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ws-inc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0c5-4732-930e-72e658e939ea", + "name": "WS" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ibi.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8b6-409f-8f41-3b47755b142b", + "name": "ibi | Information Builders" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "emburse.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa92-4871-89d0-471e559a95b3", + "name": "Emburse" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "intapp.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4b3-4f74-a183-92958bebceb6", + "name": "Intapp" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "aspect.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4ed-402a-8ae5-2f0a978bf6f0", + "name": "Aspect Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "greyorange.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aaab-4e37-8472-8d5fa763856a", + "name": "GreyOrange" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "redis.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a513-4679-9cff-a121913996a7", + "name": "Redis" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tcpsoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa29-4f90-ba1c-2cc4d6c4c7c2", + "name": "TCP Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "benchling.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0a8-420e-9217-eea91058f7bc", + "name": "Benchling" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "egain.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a785-464c-a055-4811ac50ace2", + "name": "eGain Corporation" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "folio3.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa50-443f-b83d-18ef2a21a292", + "name": "Folio3 Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "akvelon.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6d5-416d-a74f-1a67d7d38f2d", + "name": "Akvelon, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mscsoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aaed-46f7-a716-83d7506b000e", + "name": "MSC Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "lytx.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad42-494f-a634-50a167607f65", + "name": "Lytx, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "pendo.io", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4fd-46e3-9aa9-b412abace758", + "name": "Pendo.io" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "smartbear.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a60a-4a5f-beaa-d69339e1c22f", + "name": "SmartBear" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "unilogcorp.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0bd-4814-87a9-97ae93f2034b", + "name": "Unilog" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "slicelife.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad3e-4f09-b39a-c01b0bc84eae", + "name": "Slice" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "applovin.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aaf9-44b7-af76-73cd7aa561c4", + "name": "AppLovin" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "inmoment.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a2cd-4470-a7bf-b15db123cbec", + "name": "InMoment" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "patientpoint.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab7c-427c-a0d7-5681ea79e632", + "name": "PatientPoint®" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mastercontrol.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa72-4a46-83c8-fef42161d4f1", + "name": "MasterControl" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "channeladvisor.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5ad-462d-8c25-7ddecd6aa7cc", + "name": "ChannelAdvisor" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "netwrix.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a2f8-46df-b64e-e56fa2a87932", + "name": "Netwrix Corporation" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mindtickle.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3f7-4d53-9e63-69b831e6e230", + "name": "Mindtickle" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "gregoryleroy.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5bf-4355-ba01-20c0a1f9603b", + "name": "Programmer" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "navis.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a66e-4da1-bf5d-af1cacb3606c", + "name": "Navis" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "auditboard.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a48e-4b34-8ece-634226cc5b90", + "name": "AuditBoard" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "yml.co", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a190-454b-b375-dfaf129a0001", + "name": "YML" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "jmp.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab3f-4fd9-8d69-ffcb197cbff2", + "name": "JMP" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "komodohealth.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a7a9-427d-afa7-7a0ef1b68856", + "name": "Komodo Health" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "alation.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a142-47f8-8d7b-75c76232cabb", + "name": "Alation" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "aptos.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a1ee-4686-af31-61e6b49dcd9b", + "name": "Aptos Retail" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "workforcesoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab09-4115-9e8e-1462006169f0", + "name": "WorkForce Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "neogov.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aab7-480e-9303-08f5ac0d3136", + "name": "NEOGOV" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "linuxfoundation.org", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a52e-4389-a485-8729b991e6f1", + "name": "The Linux Foundation" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "reputation.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a116-4833-8b9a-60ae95318d2b", + "name": "Reputation" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "m-files.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aff9-4d18-ba24-26304be22c42", + "name": "M-Files" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "joinhomebase.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af34-4f9d-9035-c4a031411ba8", + "name": "Homebase" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "coherentsolutions.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a981-4198-b485-de1995624741", + "name": "Coherent Solutions" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "simplifyhealthcare.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8e4-48f4-9b5b-a91a00b4b0cd", + "name": "Simplify Healthcare" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "jumpcloud.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af07-495a-929d-ab45e5c6428b", + "name": "JumpCloud" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "meetsoci.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8fc-4e43-b4a5-c15393883ce3", + "name": "SOCi, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "advancedmd.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae16-4dc8-9529-7a5d14ba8e86", + "name": "AdvancedMD" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sra.samsung.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad58-4269-a157-9f631c2be8af", + "name": "Samsung Research America (SRA)" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "branch.io", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad76-4b5d-bb4f-8d43a3054af7", + "name": "Branch" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "aras.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-adff-406f-88c5-d553353db985", + "name": "Aras Corporation" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "delphix.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad5b-45a5-96ea-934a9efeec95", + "name": "Delphix" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "eightfold.ai", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad8e-4782-a0f3-0809cb5c502f", + "name": "Eightfold" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "connectrn.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae6d-4c8e-9948-3bee6b75e368", + "name": "connectRN" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "smartrecruiters.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a53a-4575-a846-3c8034adb91d", + "name": "SmartRecruiters" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tusimple.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ade2-432f-9ce1-fa23dbf59769", + "name": "TuSimple" + } + } + ] + }, + "assignedTasks": { + "__typename": "TaskConnection", + "edges": [ + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0001-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0005-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0006-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0008-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-000b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0012-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0014-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0015-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0017-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0018-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-001b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-001e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0024-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0026-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0027-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-002c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-002e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0031-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0033-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-003a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-003e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0042-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0044-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0045-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0047-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0050-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0055-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0056-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0057-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0058-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-005b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-005c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0064-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0065-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-006d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-006f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0070-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0073-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0074-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-007a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-007e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0080-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0087-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-008a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-008b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-008c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-008e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-008f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0091-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0092-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0095-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-009a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-009d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-009f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00a6-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00aa-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ac-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00b2-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00b9-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00bf-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00c1-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00cc-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ce-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00d2-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00d3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00dc-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00de-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00e0-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00e8-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ec-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ee-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00f0-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00f3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00f6-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00f8-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00fa-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00fc-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00fd-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0100-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0103-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-010b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-010c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-010d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-010f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0111-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0112-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0114-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0115-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0116-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0117-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0119-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-011a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-011c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0120-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0122-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-012c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-012e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-012f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0133-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0134-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0135-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0139-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-013d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0140-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0143-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-014d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0152-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0158-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-015a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-015d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0167-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0168-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-016a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-016b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-016d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-016f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0175-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0178-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-017b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-017d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0180-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0182-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0188-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-018e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-018f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0197-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0199-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-019a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01a4-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01a7-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01aa-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ab-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ad-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01af-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01b1-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01b4-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01b8-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01bb-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01bc-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01be-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01c4-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01cb-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01cd-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01cf-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01d0-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01d2-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01d3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01d6-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01da-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01db-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01e0-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01e3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01e5-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01e7-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ea-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01eb-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ee-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ef-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01f5-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01fa-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ff-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0200-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0204-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0206-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0207-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0209-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-020b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-020d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-020e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0210-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0217-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0219-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-021b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-021c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-021d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-021f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0221-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0229-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-022d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-022e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0230-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0232-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0238-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-023b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0240-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0243-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0244-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0245-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0246-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0247-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0249-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-024a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-024b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-024d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-024f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0258-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + } + ] + }, + "avatarUrl": "", + "blocklist": { + "__typename": "BlocklistConnection", + "edges": [] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "calendarStartDay": 7, + "colorScheme": "Light", + "connectedAccounts": { + "__typename": "ConnectedAccountConnection", + "edges": [ + { + "__typename": "ConnectedAccountEdge", + "node": { + "__typename": "ConnectedAccount", + "handle": "tim@apple.dev", + "id": "20202020-9ac0-4390-9a1a-ab4d2c4e1bb7" + } + } + ] + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dateFormat": "SYSTEM", + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "locale": "en", + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [ + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0002-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0003-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0004-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0005-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0007-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0008-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0009-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-000a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-000b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-000c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-000d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-000e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-000f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0010-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0011-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0012-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0013-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0016-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0017-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0019-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-001b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-001c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-001f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0020-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0021-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0023-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0024-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0026-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0027-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0028-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-002a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-002b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-002d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-002e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-002f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0030-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0031-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0032-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0033-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0034-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0035-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0036-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0039-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-003a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-003b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-003d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-003e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-003f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0041-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0042-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0043-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0044-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0046-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0048-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0049-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-004a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-004b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-004d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0051-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0052-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0053-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0054-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0055-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0057-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0059-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-005a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-005b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-005c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-005d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0060-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0061-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0062-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0065-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0069-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-006a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-006b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-006c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-006d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-006e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-006f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0070-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0072-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0075-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0076-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0077-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0078-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-007a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-007b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-007c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-007f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0080-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0082-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0083-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0084-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0086-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0087-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0088-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-008a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-008c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-008e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-008f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0090-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0091-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0093-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0096-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0097-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0099-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-009b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-009d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-009f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00a0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00a1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00a2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00a3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00a4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00a5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00a6-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00a9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00ab-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00ac-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00af-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00b0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00b2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00b3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00b4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00b5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00b6-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00b7-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00b8-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00b9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00ba-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00bb-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00bc-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00bd-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00be-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00bf-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00c0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00c1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00c2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00c3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00c5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00c6-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00c7-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00c8-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00ca-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00cb-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00cd-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00ce-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00d1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00d2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00d3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00d4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00d6-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00d9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00da-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00db-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00dc-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00dd-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00de-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00df-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00e0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00e2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00e3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00e4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00e5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00e6-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00e8-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00ea-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00eb-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00ec-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00ed-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00ee-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00ef-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00f0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00f2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00f3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00f4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00f5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00f8-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00f9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00fa-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-00fc-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00fd-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-00fe-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0102-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0103-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0104-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0106-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0108-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0109-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-010a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-010b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-010e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-010f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0110-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0112-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0113-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0114-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0115-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0116-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0117-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0118-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-011b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-011e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0121-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0124-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0128-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0129-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-012a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-012e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-012f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0131-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0132-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0134-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0136-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0137-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0138-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0139-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-013b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-013c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-013e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-013f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0140-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0141-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0143-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0146-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0147-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0148-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-014b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-014c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-014e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-014f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0151-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0153-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0154-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0155-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0157-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0158-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0159-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-015a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-015b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-015d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-015e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0160-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0161-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0162-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0163-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0164-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0165-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0167-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0169-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-016a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-016c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-016d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-016e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0170-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0171-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0172-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0173-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0174-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0178-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0179-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-017a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-017c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-017d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-017e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-017f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0180-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0181-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0182-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0183-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0184-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0185-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0186-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0187-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0188-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0189-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-018a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-018c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-018f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0190-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0192-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0194-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0195-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0196-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0197-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0198-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0199-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-019a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-019d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-019e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-019f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01a0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01a1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01a2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01a4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01a5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01a7-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01aa-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01ab-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01ac-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01ad-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01ae-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01af-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01b0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01b1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01b2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01b5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01b7-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01b8-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01b9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01bb-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01bd-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01be-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01bf-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01c0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01c1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01c2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01c3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01c4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01c5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01c6-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01c7-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01c8-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01c9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01ca-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01cb-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01ce-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01cf-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01d1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01d2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01d3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01d4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01d6-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01d7-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01d8-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01d9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01db-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01dd-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01e0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01e1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01e2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01e3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01e4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01e5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01e7-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01e8-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01e9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01eb-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01ec-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01ee-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01ef-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01f2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01f6-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01f7-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01fb-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01fc-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01fd-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01fe-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01ff-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0200-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0201-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0202-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0203-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0204-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0205-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0206-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0207-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0208-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0209-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-020c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-020f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0212-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0213-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0214-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0216-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0217-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0218-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0219-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-021b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-021c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-021d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-021e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-021f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0220-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0223-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0224-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0225-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0227-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0229-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-022a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-022b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-022f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0230-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0232-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0233-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0235-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0237-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0239-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-023a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-023b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-023d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-023e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-023f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0240-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0241-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0242-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0244-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0245-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0246-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-024a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-024c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-024e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0250-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0252-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0253-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0254-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0255-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0256-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0258-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-025a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-025b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-025c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-025d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-025e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-025f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0261-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0263-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0264-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0266-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0268-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0269-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-026b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-026c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-026d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-026e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-026f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0270-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0271-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0272-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0273-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0274-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0275-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0276-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0277-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0278-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0279-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-027b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-027c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-027d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-027e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-027f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0280-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0284-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0286-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0287-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0289-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-028b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-028c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-028d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-028e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-028f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0291-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0293-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0295-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0297-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0298-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-029a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-029b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-029d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-029e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-029f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02a0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02a1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02a2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02a3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02a4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02a5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02a7-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02a8-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02a9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02aa-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02ab-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02ac-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02af-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02b0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02b2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02b3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02b4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02b5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02b6-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02b7-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02b9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02ba-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02bd-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02be-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02c1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02c2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02c3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02c6-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02c9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02ca-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02cb-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02cc-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02cd-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02ce-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02d0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02d1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02d2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02d3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02d4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02d7-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02d9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02da-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02db-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02dd-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02de-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02df-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02e0-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02e1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02e2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02e3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02e5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02e8-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02e9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02ea-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02ed-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02ee-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02f1-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02f2-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02f3-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02f4-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02f5-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02f6-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02f7-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02f8-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02f9-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02fb-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02fc-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-02fd-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-02ff-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0301-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0302-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0303-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0304-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0306-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0307-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-030b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-030c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-030d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-030f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0310-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0311-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0312-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0313-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0314-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0316-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0317-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0318-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0319-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-031a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-031b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-031c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-031e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0320-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0322-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0323-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0324-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0326-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0327-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0328-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0329-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-032a-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-032c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-032f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0331-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0333-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0335-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0336-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0337-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0339-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-033b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-033c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-033d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-033e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-033f-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0340-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0344-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0345-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0346-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0347-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0348-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-034b-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-034c-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-034d-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-034e-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-034f-4e7c-8001-123456789cde" + } + } + ] + }, + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + }, + "numberFormat": "SYSTEM", + "ownedOpportunities": { + "__typename": "OpportunityConnection", + "edges": [ + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0001-4e7c-8001-123456789abc", + "name": "Enterprise iPad Deployment" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0002-4e7c-8001-123456789abc", + "name": "MacBook Pro Fleet Upgrade" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0003-4e7c-8001-123456789abc", + "name": "iPhone Corporate Program" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0004-4e7c-8001-123456789abc", + "name": "Apple TV+ Enterprise License" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0005-4e7c-8001-123456789abc", + "name": "Mac Studio Creative Suite" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0006-4e7c-8001-123456789abc", + "name": "iPad Pro Design Team Setup" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0007-4e7c-8001-123456789abc", + "name": "Apple Watch Corporate Wellness" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0008-4e7c-8001-123456789abc", + "name": "iMac Office Workstation Refresh" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0009-4e7c-8001-123456789abc", + "name": "Apple One Business Bundle" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-000a-4e7c-8001-123456789abc", + "name": "MacBook Air Remote Work Package" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-000b-4e7c-8001-123456789abc", + "name": "Apple Pencil Educational License" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-000c-4e7c-8001-123456789abc", + "name": "Mac Pro Video Production Setup" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-000d-4e7c-8001-123456789abc", + "name": "iPhone SE Frontline Workers" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-000e-4e7c-8001-123456789abc", + "name": "Apple CarPlay Integration" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-000f-4e7c-8001-123456789abc", + "name": "iPad Air Retail Deployment" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0010-4e7c-8001-123456789abc", + "name": "Apple Music Business License" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0011-4e7c-8001-123456789abc", + "name": "Mac mini Server Infrastructure" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0012-4e7c-8001-123456789abc", + "name": "Apple Arcade Enterprise Gaming" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0013-4e7c-8001-123456789abc", + "name": "iPhone 15 Pro Executive Program" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0014-4e7c-8001-123456789abc", + "name": "Apple Fitness+ Corporate Wellness" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0015-4e7c-8001-123456789abc", + "name": "iPad Mini Field Operations" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0016-4e7c-8001-123456789abc", + "name": "Apple News+ Business Subscription" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0017-4e7c-8001-123456789abc", + "name": "MacBook Pro M3 Developer Team" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0018-4e7c-8001-123456789abc", + "name": "Apple Vision Pro Prototype Lab" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0019-4e7c-8001-123456789abc", + "name": "iPhone Photography Workshop" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-001a-4e7c-8001-123456789abc", + "name": "Apple Store Corporate Training" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-001b-4e7c-8001-123456789abc", + "name": "iPad Kiosk Solution Deployment" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-001c-4e7c-8001-123456789abc", + "name": "Apple Pay Enterprise Integration" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-001d-4e7c-8001-123456789abc", + "name": "Mac Studio Animation Pipeline" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-001e-4e7c-8001-123456789abc", + "name": "Apple Configurator MDM Setup" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-001f-4e7c-8001-123456789abc", + "name": "iPhone Accessibility Features Training" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0020-4e7c-8001-123456789abc", + "name": "Apple Business Manager License" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0021-4e7c-8001-123456789abc", + "name": "iPad Pro AR Development Kit" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0022-4e7c-8001-123456789abc", + "name": "Apple School Manager Education" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0023-4e7c-8001-123456789abc", + "name": "MacBook Air Student Program" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0024-4e7c-8001-123456789abc", + "name": "Apple Watch Health Monitoring" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0025-4e7c-8001-123456789abc", + "name": "iPhone Security Audit Services" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0026-4e7c-8001-123456789abc", + "name": "Apple TV Digital Signage Solution" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0027-4e7c-8001-123456789abc", + "name": "Mac Pro Rendering Farm Setup" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0028-4e7c-8001-123456789abc", + "name": "Apple Pencil Digital Art License" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0029-4e7c-8001-123456789abc", + "name": "iPad Point of Sale Integration" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-002a-4e7c-8001-123456789abc", + "name": "Apple Maps Business Integration" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-002b-4e7c-8001-123456789abc", + "name": "iPhone App Development Workshop" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-002c-4e7c-8001-123456789abc", + "name": "Apple Silicon Migration Consulting" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-002d-4e7c-8001-123456789abc", + "name": "iPad Inventory Management System" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-002e-4e7c-8001-123456789abc", + "name": "Apple Podcast Enterprise Hosting" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-002f-4e7c-8001-123456789abc", + "name": "MacBook Pro Creative Cloud Bundle" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0030-4e7c-8001-123456789abc", + "name": "Apple ID Enterprise SSO Setup" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0031-4e7c-8001-123456789abc", + "name": "iPhone Field Service Optimization" + } + }, + { + "__typename": "OpportunityEdge", + "node": { + "__typename": "Opportunity", + "id": "50505050-0032-4e7c-8001-123456789abc", + "name": "Apple Retail Partnership Program" + } + } + ] + }, + "position": 0, + "timeFormat": "SYSTEM", + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-000100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-000200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-000300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-000400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-000500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-000600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-000700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-000800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-000900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-001000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-001100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-001200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-001300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-001400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-001500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-001600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-001700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-001800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-001900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-002000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-002100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-002200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-002300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-002400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-002500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-002600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-002700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-002800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-002900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-003000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-003100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-003200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-003300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-003400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-003500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-003600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-003700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-003800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-003900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-004000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-004100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-004200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-004300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-004400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-004500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-004600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-004700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-004800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-004900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-005000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-005100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-005200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-005300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-005400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-005500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-005600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-005700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-005800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-005900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-006000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-006100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-006200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-006300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-006400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-006500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-006600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-006700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-006800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-006900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-007000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-007100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-007200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-007300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-007400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-007500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-007600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-007700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-007800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-007900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-008000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-008100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-008200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-008300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-008400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-008500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-008600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-008700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-008800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-008900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-009000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-009100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-009200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-009300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-009400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-009500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-009600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-009700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-009800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-009900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-010000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-010100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-010200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-010300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-010400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-010500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-010600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-010700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-010800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-010900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-011000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-011100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-011200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-011300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-011400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-011500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-011600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-011700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-011800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-011900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-012000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-012100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-012200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-012300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-012400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-012500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-012600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-012700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-012800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-012900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-013000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-013100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-013200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-013300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-013400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-013500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-013600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-013700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-013800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-013900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-014000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-014100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-014200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-014300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-014400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-014500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-014600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-014700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-014800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-014900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-015000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-015100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-015200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-015300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-015400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-015500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-015600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-015700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-015800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-015900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-016000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-016100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-016200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-016300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-016400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-016500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-016600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-016700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-016800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-016900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-017000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-017100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-017200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-017300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-017400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-017500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-017600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-017700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-017800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-017900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-018000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-018100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-018200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-018300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-018400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-018500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-018600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-018700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-018800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-018900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-019000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-019100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-019200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-019300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-019400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-019500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-019600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-019700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-019800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-019900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-020000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-020100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-020200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-020300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-020400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-020500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-020600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-020700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-020800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-020900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-021000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-021100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-021200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-021300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-021400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-021500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-021600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-021700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-021800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-021900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-022000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-022100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-022200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-022300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-022400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-022500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-022600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-022700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-022800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-022900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-023000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-023100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-023200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-023300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-023400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-023500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-023600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-023700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-023800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-023900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-024000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-024100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-024200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-024300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-024400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-024500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-024600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-024700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-024800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-024900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-025000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-025100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-025200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-025300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-025400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-025500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-025600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-025700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-025800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-025900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-026000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-026100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-026200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-026300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-026400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-026500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-026600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-026700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-026800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-026900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-027000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-027100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-027200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-027300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-027400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-027500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-027600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-027700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-027800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-027900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-028000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-028100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-028200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-028300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-028400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-028500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-028600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-028700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-028800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-028900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-029000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-029100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-029200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-029300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-029400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-029500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-029600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-029700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-029800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-029900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-030000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-030100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-030200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-030300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-030400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-030500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-030600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-030700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-030800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-030900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-031000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-031100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-031200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-031300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-031400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-031500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-031600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-031700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-031800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-031900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-032000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-032100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-032200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-032300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-032400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-032500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-032600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-032700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-032800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-032900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-033000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-033100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-033200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-033300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-033400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-033500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-033600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-033700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-033800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-033900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-034000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-034100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-034200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-034300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-034400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-034500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-034600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-034700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-034800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-034900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-035000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-035100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-035200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-035300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-035400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-035500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-035600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-035700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-035800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-035900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-036000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-036100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-036200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-036300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-036400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-036500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-036600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-036700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-036800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-036900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-037000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-037100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-037200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-037300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-037400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-037500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-037600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-037700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-037800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-037900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-038000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-038100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-038200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-038300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-038400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-038500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-038600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-038700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-038800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-038900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-039000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-039100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-039200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-039300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-039400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-039500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-039600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-039700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-039800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-039900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-040000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-040100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-040200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-040300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-040400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-040500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-040600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-040700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-040800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-040900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-041000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-041100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-041200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-041300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-041400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-041500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-041600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-041700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-041800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-041900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-042000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-042100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-042200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-042300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-042400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-042500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-042600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-042700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-042800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-042900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-043000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-043100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-043200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-043300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-043400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-043500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-043600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-043700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-043800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-043900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-044000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-044100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-044200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-044300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-044400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-044500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-044600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-044700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-044800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-044900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-045000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-045100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-045200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-045300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-045400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-045500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-045600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-045700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-045800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-045900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-046000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-046100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-046200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-046300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-046400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-046500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-046600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-046700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-046800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-046900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-047000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-047100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-047200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-047300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-047400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-047500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-047600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-047700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-047800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-047900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-048000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-048100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-048200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-048300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-048400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-048500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-048600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-048700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-048800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-048900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-049000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-049100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-049200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-049300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-049400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-049500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-049600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-049700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-049800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-049900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-050000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-050100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-050200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-050300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-050400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-050500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-050600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-050700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-050800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-050900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-051000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-051100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-051200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-051300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-051400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-051500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-051600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-051700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-051800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-051900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-052000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-052100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-052200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-052300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-052400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-052500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-052600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-052700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-052800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-052900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-053000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-053100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-053200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-053300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-053400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-053500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-053600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-053700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-053800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-053900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-054000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-054100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-054200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-054300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-054400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-054500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-054600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-054700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-054800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-054900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-055000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-055100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-055200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-055300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-055400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-055500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-055600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-055700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-055800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-055900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-056000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-056100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-056200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-056300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-056400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-056500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-056600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-056700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-056800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-056900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-057000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-057100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-057200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-057300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-057400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-057500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-057600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-057700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-057800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-057900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-058000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-058100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-058200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-058300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-058400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-058500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-058600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-058700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-058800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-058900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-059000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-059100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-059200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-059300000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-059400000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-059500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-059600000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-059700000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-059800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-059900000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-060000000001", + "name": "company.created" + } + } + ] + }, + "timeZone": "system", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "userEmail": "tim@apple.dev", + "userId": "20202020-9e3b-46d4-a556-88b9ddc2b034" + }, + { + "__typename": "WorkspaceMember", + "accountOwnerForCompanies": { + "__typename": "CompanyConnection", + "edges": [ + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "goo.gle", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a305-41e7-8c72-ba44072a4c58", + "name": "Google" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "metacareers.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8b0-422c-8fcf-5b7496f94975", + "name": "Meta" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "slb.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aaf7-41d6-87a9-7add07bebfd8", + "name": "SLB" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "cisco.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a19d-422b-9cb2-5f8382a56877", + "name": "Cisco" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "salesforce.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0eb-4c51-aa03-c4cd2423d7cb", + "name": "Salesforce" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ssctech.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abaa-428e-a496-0fe54b32e7c6", + "name": "SS&C Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "redhat.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a7c6-41d1-924e-1b65b9d3b99e", + "name": "Red Hat" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sas.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aec4-4416-b087-f5a61c3a0315", + "name": "SAS" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "broadcom.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af43-44c6-877e-5ad51fe74ff0", + "name": "Broadcom Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "epic.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3e8-41d6-8b48-b4e6c7bae742", + "name": "Epic" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "pitneybowes.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a42f-4bc0-97ee-73e9b810322f", + "name": "Pitney Bowes" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "chegg.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a997-466d-8e1b-1de0d45611e8", + "name": "Chegg Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "nice.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a378-47b4-ae93-bf979a769ab8", + "name": "NICE" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "coxautoinc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae71-46fe-ad2c-f25001d4c800", + "name": "Cox Automotive Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "247.ai", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a286-45a2-a048-8a6a69fdcfe7", + "name": "[24]7.ai" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "splunk.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a026-43c0-b042-0123f72f6cf9", + "name": "Splunk" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ceridian.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a9cb-4047-895e-045524c8c3be", + "name": "Ceridian" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "veeva.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae0e-4528-bdca-c43796611200", + "name": "Veeva Systems" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "nuance.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a480-4f79-be9e-e6ca396a3ddc", + "name": "Nuance Communications" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "docusign.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abce-4259-9808-5bd830a32e23", + "name": "DocuSign" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "squareup.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af5c-4e39-90e2-d80e82a0dc4b", + "name": "Square" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ansys.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af6e-420d-a798-145a9c10f049", + "name": "Ansys" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tylertech.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac73-4cd0-950f-5ef82ce58002", + "name": "Tyler Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "zendesk.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac06-4fce-bd59-920549a97c23", + "name": "Zendesk" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "datadoghq.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af43-4ca5-9b56-59fe182568b1", + "name": "Datadog" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mongodb.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a745-4f26-b5df-42ed9eb0323a", + "name": "MongoDB" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "owner.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a9f8-49f0-ba51-e6b3fcdf0469", + "name": "Owner.com" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "eclinicalworks.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a9d7-4704-9f92-e6cd168d5cd3", + "name": "eClinicalWorks" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "altimetrik.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a24f-4519-9764-0b57479deb2c", + "name": "Altimetrik" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "procore.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a95a-4cf9-99ab-795a0dcec88f", + "name": "Procore Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tableau.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac1a-47ff-b681-f8abe99cfeb9", + "name": "Tableau" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "smartsheet.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa42-4081-8976-1d7fead0fdcd", + "name": "Smartsheet" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "quest.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a2fe-4a8b-a827-3f832b9823f1", + "name": "Quest Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "elastic.co", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a25a-44ed-a64d-938d79442d24", + "name": "Elastic" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "rbrk.co", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a63f-4e00-a49e-c202a2323efb", + "name": "Rubrik" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ivanti.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aead-48ee-be7c-c33f674f3985", + "name": "Ivanti" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "medidata.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a825-4ba6-9c84-6f78f8676b33", + "name": "Medidata Solutions" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "bill.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8a1-4ca1-ab39-d07c9b5b0cf4", + "name": "BILL" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "chetu.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a487-4991-95b3-b82c40e99e48", + "name": "Chetu, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "jamf.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a700-46d8-97fa-5093cf00b8f4", + "name": "Jamf" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "paycor.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4fc-4d71-810a-e4083f89e8ca", + "name": "Paycor" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "precisely.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a73e-458d-8fd0-7e433d9f9adb", + "name": "Precisely" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "aptean.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a95a-4bbd-a83b-a2db3bd5753f", + "name": "Aptean" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "pros.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4a4-4e67-9d18-6710a920a9d5", + "name": "PROS" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "kofax.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad6b-4dae-85b3-b1813e009b4d", + "name": "Kofax" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "bottomline.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad66-4a74-9948-9d9b3deb43f8", + "name": "Bottomline Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "anaplan.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a356-48a3-9de5-5fef8265787f", + "name": "Anaplan" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "dealertrack.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aeb1-435d-af27-042ac5a15fb0", + "name": "Dealertrack" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "cohesity.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0f5-478d-8205-5c6961a57d2c", + "name": "Cohesity" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "navan.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4b1-4d0e-b726-352a397bfbe7", + "name": "Navan" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "diligent.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad74-44b7-a907-afdc8c7f5eae", + "name": "Diligent" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "bmc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3c0-4aee-b4d9-04e23321452a", + "name": "Compuware" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "varonis.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abb3-43a2-a436-2196b4636518", + "name": "Varonis" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "outsystems.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa85-4c52-85a2-1a4dec92cd2a", + "name": "OutSystems" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "boomi.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a397-497b-90bc-f62c1c34b2a3", + "name": "Boomi" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "scale.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa16-4b13-a84b-b8e076c1c880", + "name": "Scale AI" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "duckcreek.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0c0-4a3e-9da8-766157ea9c0b", + "name": "Duck Creek Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "riverbed.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa9f-436a-b275-1063392919e1", + "name": "Riverbed Technology" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "3pillarglobal.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a314-4f96-90c9-63274bf59a58", + "name": "3Pillar Global" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "axway.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6f2-4621-9e2e-a01da10b427f", + "name": "Axway" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "infobeans.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a93b-4070-8960-ce11fc1928dc", + "name": "InfoBeans" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sovos.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a720-4f63-9099-68c809606382", + "name": "Sovos" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ncino.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0bc-4767-b22e-073c77abffa5", + "name": "nCino, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "evercommerce.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae20-49f3-b9d6-20f01b79ba00", + "name": "EverCommerce" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "houzz.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a67c-426c-9433-272a5037e156", + "name": "Houzz" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "planview.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aae9-45cd-b8fa-90f5a88512e9", + "name": "Planview, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "outreach.io", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a144-4788-b18f-872c1d810aeb", + "name": "Outreach" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "liveperson.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad42-4b8f-a300-c78295c5b788", + "name": "LivePerson" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "healthedge.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afa7-4396-baef-a121a793be3b", + "name": "HealthEdge" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "qad.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af68-4163-a87f-a66a6aad32b5", + "name": "QAD" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "phenom.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afd3-485c-948f-cee696f0c83e", + "name": "Phenom" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "anyonehome.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa80-4cdf-8a7c-856f1f3a46f0", + "name": "Anyone Home Inc" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "builder.ai", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa9e-414e-84a9-dd641fdd23e2", + "name": "Engineer.ai" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "apptio.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a18b-4f50-9e04-809f83b14a98", + "name": "Apptio" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "kms-technology.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a46b-4943-a860-a8f5dfe1f757", + "name": "KMS Technology, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "jfrog.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a993-45f0-8913-64b61ae0b6ae", + "name": "JFrog" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "cerence.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab8b-4b04-b31e-021167a2c2b9", + "name": "Cerence Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ksosoft.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a47d-466b-9ea0-73fb7512ea02", + "name": "Kingsoft" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "odessainc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a018-492d-89de-f9cd4ee80437", + "name": "Odessa" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "gong.io", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a965-4a09-8f73-c23984772f81", + "name": "Gong" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "pingidentity.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ace5-416d-a696-96a2ea40ec33", + "name": "Ping Identity" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "wellsky.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a263-49f3-82c9-f642ea86f3ff", + "name": "WellSky" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tricentis.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afef-421c-873e-276efc937ce4", + "name": "Tricentis" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "bigcommerce.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aaf3-41f4-bed4-3f8a816508a0", + "name": "BigCommerce" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "6sense.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa7c-45db-9d28-e9cdc97e1b77", + "name": "6sense" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "vitechinc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aae9-4f28-8e46-2dec2461595a", + "name": "Vitech Systems Group" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "smarsh.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8d9-492f-982b-58df2d3144ed", + "name": "Smarsh" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "liferay.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aade-4b73-9a59-af974f40c4d4", + "name": "Liferay" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mendix.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-adcf-4466-8baa-21eb41f2a1c8", + "name": "Mendix" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "onestreamsoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a048-4b80-bd7e-935d937842a4", + "name": "OneStream Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "waystar.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6fa-42aa-a1b0-f24f339a08b0", + "name": "Waystar" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "isolvedhcm.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a045-4266-b9e4-0e7a0697322b", + "name": "isolved" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "hexagonsafetyinfrastructure.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a604-4f4a-a2cb-26205babdd7b", + "name": "Hexagon Safety, Infrastructure & Geospatial" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "zinnia.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a314-4ce6-a33b-833bcad71bc5", + "name": "Zinnia " + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "druva.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0a3-4656-8979-eedf17d3b723", + "name": "Druva" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "alpha-sense.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a054-4643-b7f7-a921d25c1d32", + "name": "AlphaSense" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ecisolutions.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a2ad-43bd-a0da-dbd8c792226d", + "name": "ECI Software Solutions" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "syndigo.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afc6-46ca-b95f-f036c5816df7", + "name": "Syndigo" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "litera.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abdd-48e9-bb2e-5b15d9a00be6", + "name": "Litera" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "picsart.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a607-453c-840b-ec1dd6878299", + "name": "Picsart" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "grafana.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a952-47d6-b76e-4af362c179a1", + "name": "Grafana Labs" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "eisgroup.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a443-43ca-accf-b64d7fb1cbd4", + "name": "EIS Ltd" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "activenetwork.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a76d-4540-b458-85be1997b9fc", + "name": "ACTIVE Network" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "willowtreeapps.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a46a-46c4-a06e-b53bd19a3120", + "name": "WillowTree" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "logicmonitor.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aaf4-427a-b9d0-7274634d6426", + "name": "LogicMonitor" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "jellysmack.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a122-47e7-8ee9-f71430f2413f", + "name": "Jellysmack" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "henryscheinone.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a373-4a35-996c-e9aee6a35437", + "name": "Henry Schein One" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "atlashxm.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a7a9-4a32-ab6a-910039586743", + "name": "Atlas" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "crd.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a44a-4130-85bc-0899e43642c5", + "name": "Charles River Development" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sageintacct.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a22c-467b-a8cf-50df1c440fe6", + "name": "Sage Intacct, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "plaid.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab15-4fe7-930f-5b9895203c80", + "name": "Plaid" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "salesloft.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a9c6-4a3c-bc55-ee55512535f6", + "name": "Salesloft" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "qasource.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad21-4ed4-bdf7-d73cbd598099", + "name": "QASource" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "avasoft.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afe3-4d1d-b238-c47866862c3a", + "name": "AVASOFT" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "blend.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad94-4fc4-8d49-2d922c45b189", + "name": "Blend" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "arbisoft.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abb2-4548-9819-923c53153d87", + "name": "Arbisoft" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "hchb.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a50e-441b-9428-d6b8909ecbbe", + "name": "Homecare Homebase" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "csdisco.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a099-4a0d-9dcb-6487aafbae15", + "name": "DISCO" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "nintex.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a045-4b32-8484-a6807e9e0d22", + "name": "Nintex" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "commscope.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3de-4cdd-8ee3-34149cc32272", + "name": "RUCKUS Networks" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "kanini.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a1c9-498d-9476-ff5c30111fba", + "name": "KANINI" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "kyriba.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5c6-401e-a055-11c63b1f8c63", + "name": "Kyriba" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "demandbase.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a272-41c7-a1ac-59647cbe2bad", + "name": "Demandbase" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sumologic.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad26-4a55-851b-8acc3c4f0e36", + "name": "Sumo Logic" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "constructconnect.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad87-4bc0-b7ed-a664805a753f", + "name": "ConstructConnect" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "zenoti.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3b1-45db-b798-19b4bb268f4c", + "name": "Zenoti" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "frontlineeducation.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a362-4007-b6b8-23224a3d9cab", + "name": "Frontline Education" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "operative.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a1a0-45de-bba7-b7002b85047c", + "name": "Operative" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "kore.ai", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a640-4b47-8b39-433d6ce2be67", + "name": "Kore.ai" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "addepar.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a254-4d62-83ed-1eb8f7c6fd84", + "name": "Addepar" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "housecallpro.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a000-4485-94de-70c2a98daef2", + "name": "Housecall Pro" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "turnitin.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6b8-4423-bbcc-394550345a9d", + "name": "Turnitin" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "snapon.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aca6-4963-a6dc-acdb5618e1ca", + "name": "Snap-on Business Solutions" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "xactlycorp.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa44-4972-b5b5-1e00e675843b", + "name": "Xactly Corp" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "salary.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab3d-4aa9-9a30-ea0b97bec26d", + "name": "Salary.com" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "pandadoc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac06-4880-bce0-0c55deba0e70", + "name": "PandaDoc" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "harness.io", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a414-4099-ab05-bd7978057101", + "name": "Harness" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "activecampaign.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac03-421b-af11-24a33d59c77b", + "name": "ActiveCampaign" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "joinhandshake.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afb2-41e3-87f3-7a0f61ba546a", + "name": "Handshake" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "navitaire.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab1f-48d2-b70c-a6993585da08", + "name": "Navitaire, an Amadeus company" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "onespan.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac66-4117-aa6a-fbf1f6bded69", + "name": "OneSpan" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "id.me", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3e9-4d96-9ccf-8d3b65b2cdfa", + "name": "ID.me" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tecsys.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a9b4-40da-9a06-811cca19443d", + "name": "Tecsys Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "greenhouse.io", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a30d-4604-9018-dd212faf7845", + "name": "Greenhouse Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "exiger.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aba0-40e7-bcba-3e7927950daf", + "name": "Exiger" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "neo4j.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af86-4b50-b5ba-a5835a457259", + "name": "Neo4j" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "amplitude.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a9a5-4616-a786-a7cf213c59f0", + "name": "Amplitude" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "daxko.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a7a3-46ed-b6e6-79745720af8f", + "name": "Daxko" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "jumio.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa73-4bad-9623-d1edf90219b6", + "name": "Jumio Corporation" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sumtotalsystems.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa63-4b07-957e-5c188b9e7a04", + "name": "SumTotal Systems, LLC" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "riskified.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a215-4d86-b442-f38200409a2e", + "name": "Riskified" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "securonix.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aec4-42e3-b38b-14b2d8263638", + "name": "Securonix" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "draup.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aad5-46a9-b435-f83e4cfb7b1f", + "name": "Draup" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "algolia.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afc7-48a4-8641-53ed0857e65e", + "name": "Algolia" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "bolt.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0d2-4eb5-ab51-ac96923fc0b2", + "name": "Bolt" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "meetdandy.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6b9-43a4-a96b-18c407f39db3", + "name": "Dandy" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "diverselynx.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad7d-4df4-9066-5837c4569ccb", + "name": "Diverse Lynx" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "on24.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a054-45ab-bbb1-5121d7ee5037", + "name": "ON24" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "labvantage.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4bb-4bc0-b03c-668ae3f29534", + "name": "LabVantage Solutions, Inc" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "exabeam.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a161-4faf-b0be-c865c83a524f", + "name": "Exabeam" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "iterable.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a771-4af0-9ecd-cb87c0be387b", + "name": "Iterable" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "clari.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a1bb-4da5-91e3-31ae24b94b6b", + "name": "Clari" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "voltage.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a141-49de-8a78-7f20cbd3a2a1", + "name": "HPE Security - Data Security" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ddn.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a922-4496-9561-f75b2c169b16", + "name": "DDN Storage" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "lohika.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab3c-4369-b86a-15549501c985", + "name": "Lohika" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "centricsoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5eb-4f2f-9757-6c6f804f836e", + "name": "Centric Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "omdena.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae55-4bd1-a999-85a5828c6cd9", + "name": "Omdena" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "python.org", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a160-4384-8d2e-6155f4adee0c", + "name": "Python Software Foundation" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "relevantz.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a043-441a-b269-a2378afed31c", + "name": "Relevantz " + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "viewpoint.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abd6-4c1b-90d9-ab87afd062a1", + "name": "Viewpoint" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "devo.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a2fe-4dc0-b81d-1dedea6c8473", + "name": "Devo" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "webpt.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6c1-4713-b7f9-929964a27f64", + "name": "WebPT" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "matrixcare.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5d2-44cc-97fd-f2ab5f00c22e", + "name": "MatrixCare" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "placer.io", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abb6-4964-8b6d-57fec60d63e8", + "name": "Placer.ai" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "xoxoday.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a472-4f6f-9749-06cbce08d4a5", + "name": "Xoxoday" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "stratus.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad71-4fcf-957f-7f568eb1c7d8", + "name": "Stratus Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "creatio.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a354-4ac7-9826-9dfc7efe8125", + "name": "Creatio" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "versa-networks.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a509-4be6-b4c4-6a2466a212c3", + "name": "Versa Networks" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "pdf.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3b5-446c-b410-80ca84717ef5", + "name": "PDF Solutions" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mural.co", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a70d-4aca-aaec-5878254a0f5e", + "name": "Mural" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "fourkites.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4d8-468f-94ea-14f0ebd794df", + "name": "FourKites, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "wolfram.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a1b8-4c63-b163-5dbcc96f946e", + "name": "Wolfram" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "rsidelivers.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a364-4f29-b08a-817acd872a7b", + "name": "RSI" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tealium.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a851-4f6b-9764-6178c3c4c1d8", + "name": "Tealium" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "securiti.ai", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6cc-4898-8265-3319b2006a17", + "name": "Securiti" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "lattice.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3a8-44cf-bf47-1c74b757ddb9", + "name": "Lattice" + } + } + ] + }, + "assignedTasks": { + "__typename": "TaskConnection", + "edges": [ + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0002-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0003-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0004-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0007-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0009-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-000d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-000e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-000f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0010-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0011-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0016-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0019-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-001a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0020-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0021-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0022-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0023-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0025-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0028-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0029-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-002a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-002d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-002f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0030-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0032-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0034-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0035-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0038-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-003b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-003f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0046-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-004d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-004e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0051-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0052-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-005f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0060-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0061-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0062-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0067-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-006c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0071-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0075-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0076-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0077-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0079-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-007b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-007c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-007d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0082-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0083-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0085-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0090-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0093-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0097-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0098-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0099-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-009b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-009c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-009e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00a7-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ab-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ad-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ae-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00af-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00b3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00b6-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00bc-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00c0-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00c2-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00c3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00c5-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00c6-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00c7-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ca-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00cb-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00cf-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00d0-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00d4-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00d5-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00d8-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00da-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00df-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00e2-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00e5-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ed-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ef-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00f1-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00f4-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00f7-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0101-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0102-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0107-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0108-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-010e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0110-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0113-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-011b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-011f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0121-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0124-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0127-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0128-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0129-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0130-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0132-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0136-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0137-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0138-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-013c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0141-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0145-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0146-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0148-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-014a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-014c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-014e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0150-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0153-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0155-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0156-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-015b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-015c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0161-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0163-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0165-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-016c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-016e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0170-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0172-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-017a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0183-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0186-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0189-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-018a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-018c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-018d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0192-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0194-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0195-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0196-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-019b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01a0-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01a1-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01a2-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01a6-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ac-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01b0-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01b2-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01bd-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01c0-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01c3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01c5-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01c6-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01c9-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ca-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01d1-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01d4-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01d7-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01d8-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01d9-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01dc-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01dd-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01de-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01e1-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01e8-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ed-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01f1-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01f3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01f4-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01f7-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01f8-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01f9-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01fc-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01fe-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0201-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0202-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0208-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-020a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0211-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0212-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0214-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0215-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-021e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0220-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0222-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0223-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0224-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0228-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-022a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-022f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0231-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0234-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0236-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0237-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0239-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-023c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-023d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0241-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0242-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0248-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-024c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-024e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0256-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0257-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + } + ] + }, + "avatarUrl": "", + "blocklist": { + "__typename": "BlocklistConnection", + "edges": [] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "calendarStartDay": 7, + "colorScheme": "Light", + "connectedAccounts": { + "__typename": "ConnectedAccountConnection", + "edges": [ + { + "__typename": "ConnectedAccountEdge", + "node": { + "__typename": "ConnectedAccount", + "handle": "phil.schiler@apple.dev", + "id": "20202020-cafc-4323-908d-e5b42ad69fdf" + } + } + ] + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dateFormat": "SYSTEM", + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "locale": "en", + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [] + }, + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + }, + "numberFormat": "SYSTEM", + "ownedOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 0, + "timeFormat": "SYSTEM", + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [] + }, + "timeZone": "system", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "userEmail": "phil.schiler@apple.dev", + "userId": "20202020-7169-42cf-bc47-1cfef15264b8" + }, + { + "__typename": "WorkspaceMember", + "accountOwnerForCompanies": { + "__typename": "CompanyConnection", + "edges": [] + }, + "assignedTasks": { + "__typename": "TaskConnection", + "edges": [] + }, + "avatarUrl": "", + "blocklist": { + "__typename": "BlocklistConnection", + "edges": [] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "member@company.com", + "id": "20202020-0591-4e7c-8001-123456789def" + } + } + ] + }, + "calendarStartDay": 7, + "colorScheme": "Light", + "connectedAccounts": { + "__typename": "ConnectedAccountConnection", + "edges": [] + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dateFormat": "SYSTEM", + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-463f-435b-828c-107e007a2711", + "locale": "en", + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [ + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-01cc-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-021a-4e7c-8001-123456789cde" + } + } + ] + }, + "name": { + "__typename": "FullName", + "firstName": "Jane", + "lastName": "Austen" + }, + "numberFormat": "SYSTEM", + "ownedOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 0, + "timeFormat": "SYSTEM", + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [] + }, + "timeZone": "system", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "userEmail": "jane.austen@apple.dev", + "userId": "20202020-e6b5-4680-8a32-b8209737156b" + }, + { + "__typename": "WorkspaceMember", + "accountOwnerForCompanies": { + "__typename": "CompanyConnection", + "edges": [ + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "microsoft.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a225-4b3d-a89c-7f6c30df998a", + "name": "Microsoft" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "amdocs.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a9b5-48ec-97c0-dbbfcbe8df1b", + "name": "Amdocs" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "vmware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a89d-44f9-ac9c-25e462460cb0", + "name": "VMware" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "globallogic.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a377-4693-a2d9-89dc9188a1dc", + "name": "GlobalLogic" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "workday.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad85-4b32-b670-b4b020ed0e09", + "name": "Workday" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "netsuite.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a14e-446f-aa5e-59afbcdffb16", + "name": "NetSuite" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "synopsys.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aba6-4097-ae47-053aa8fbb7e7", + "name": "Synopsys Inc" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "intuit.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a120-4ad9-8bf3-58f8691e66ce", + "name": "Intuit" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "autodesk.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aab2-4e2f-8372-cc2613fb3db8", + "name": "Autodesk" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "bosch.us", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a828-4ae2-b694-3c453632b147", + "name": "Bosch USA" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "cloudsoftwaregroup.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac47-4745-bec5-cbe19672fe13", + "name": "Cloud Software Group" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "cadence.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5be-4382-afbe-1b2e3f0ed166", + "name": "Cadence Design Systems" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "trimble.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-addd-413f-a90c-5eed6658975c", + "name": "Trimble Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "okta.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab8b-4dbf-81b5-1c18941b6457", + "name": "Okta" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "jobicy.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae04-4eae-95bb-dae396d779d8", + "name": "Freelance" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "stripe.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6f9-42e4-9891-3dbd8bd35079", + "name": "Stripe" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "concur.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a412-4896-9413-ffc4d443367f", + "name": "SAP Concur" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "snap.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aef1-4ca1-b636-aa3d104c9ead", + "name": "Snap Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mathworks.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a84a-4ce1-8785-2881210db380", + "name": "MathWorks" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ptc.co", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ace2-45fb-a109-3b59d1fdb1c3", + "name": "PTC" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "altran.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0f8-4f7a-a510-8e7c7de219ec", + "name": "Aricent" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "shipt.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa07-4364-8e0d-155f0bfbb054", + "name": "Shipt" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "veritas.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a11e-43a0-8dc1-72225d6ac3a0", + "name": "Veritas Technologies LLC" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "esri.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae08-4da3-b436-1d2560108def", + "name": "Esri" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "paycom.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6cd-44fe-a510-fdbab6364297", + "name": "Paycom" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "at.cafe", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afa7-4546-a865-18a9cd06de4c", + "name": "Café" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mavenir.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a219-4d0a-ae4b-b4f6fb1b4744", + "name": "Mavenir" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "allscripts.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a7a0-4d36-8914-735396c68fa5", + "name": "Allscripts" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "yardi.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab53-47eb-8dcd-afe5f7e317f2", + "name": "Yardi" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "iac.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ade7-4068-98ac-64b580d2d5ca", + "name": "IAC" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "dynatrace.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac6b-4e3f-8118-d6474770825e", + "name": "Dynatrace" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "uipath.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abec-4544-b5f5-b7b6c91ca36e", + "name": "UiPath" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "stealthstartup.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a075-44a9-910e-3a6841c7b534", + "name": "Stealth" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "wexinc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abe4-4946-988b-baca9f6b7e8b", + "name": "WEX" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "highradius.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4ac-4527-96fe-a86a3f1b04fe", + "name": "HighRadius" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "manh.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8b7-40cb-ba39-f34496257262", + "name": "Manhattan Associates" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "hyland.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-addf-422a-b9d4-89d0999061d7", + "name": "Hyland" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tibco.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a1cc-4c9f-91b1-68e1f2efc160", + "name": "TIBCO" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "extremenetworks.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad2c-4a39-a7fd-db5e64b1e2ca", + "name": "Extreme Networks" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "swde.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a048-4007-9024-3ac47b8484d5", + "name": "Retired Life" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "e2open.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a597-4f35-9600-d5ba68ee5325", + "name": "e2open" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "gopuff.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a73f-4892-83e6-1bb6e4c66993", + "name": "Gopuff" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "fico.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab1f-4628-8ef8-847e9f2afef0", + "name": "FICO" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "microstrategy.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af1f-4531-b89d-14773319ae2d", + "name": "MicroStrategy" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "axtria.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a2b3-4c99-8313-d3dbd2151825", + "name": "Axtria - Ingenious Insights" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "kaseya.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afc1-4458-8627-d48bf9e55828", + "name": "Kaseya" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mrisoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aeb0-46e7-973c-0f0a7e187250", + "name": "MRI Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "cornerstoneondemand.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa8f-40af-897b-9e8e4faab278", + "name": "Cornerstone OnDemand" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "redditinc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ade4-4f96-9355-3ce52596cb9c", + "name": "Reddit, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "commvault.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a200-450c-b9ed-05d147ae4132", + "name": "Commvault" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "connectwise.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5e7-4d64-aecb-2228f69475bf", + "name": "ConnectWise" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "alteryx.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a801-4d4d-b0fa-eb6ffe5936fe", + "name": "Alteryx" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "celonis.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad11-49f7-95ed-78038ef37aec", + "name": "Celonis" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "microfocus.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae68-47df-ae3c-8b7b7db28e3e", + "name": "Attachmate" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "netscout.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a77f-4d9b-ae33-f85441e6caff", + "name": "NETSCOUT" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "confluent.io", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac8a-43cf-8fc6-90cd0e55d5ca", + "name": "Confluent" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "samsara.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a994-4bcb-bea6-8075b15b5685", + "name": "Samsara" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "qlik.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a397-4de8-9767-e1445338c9e5", + "name": "Qlik" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "vertafore.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad82-4004-8d30-53c41530e9e7", + "name": "Vertafore" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "newrelic.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a63f-49b5-b285-a4bddde93c1a", + "name": "New Relic" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "o9solutions.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab71-4b60-a0b4-2cee6d899ea1", + "name": "o9 Solutions, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "automationanywhere.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-adbc-4e0f-bce4-88ea58aa1808", + "name": "Automation Anywhere" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tekion.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0d4-43cd-8047-3fe6abdf2636", + "name": "Tekion Corp" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "miro.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afc1-4a3c-bb84-d282b1f4814e", + "name": "Miro" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "accolite.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a18b-4ea6-8d0b-20aafc1e5ea0", + "name": "Accolite Digital" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "pluralsight.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aef8-4f36-a63d-fbec4d72bb82", + "name": "Pluralsight" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "onetrust.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-acdc-468f-9738-7fd8f0da5db6", + "name": "OneTrust" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "medallia.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad80-4ad9-a402-1a22882f92ff", + "name": "Medallia" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "impact.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8c1-4991-b2fc-96e56ebc65af", + "name": "impact.com" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "cccis.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aeb2-496e-a31b-00010c54395d", + "name": "CCC Intelligent Solutions" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "vertexinc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a64b-4511-bca8-83c64bf5d358", + "name": "Vertex Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "magnitglobal.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac49-4ad4-864d-142d6cbbef2a", + "name": "PRO Unlimited" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "five9.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a067-457a-a39f-3bc4e052184e", + "name": "Five9" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "icertis.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a9f6-4c90-9673-327db70dd23f", + "name": "Icertis" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "forcepoint.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4e5-41d7-8b81-f7b69e402f94", + "name": "Forcepoint" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "arisglobal.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a144-4bbb-b9f3-ff69315c4be4", + "name": "ArisGlobal" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "fcutechnologies.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aed9-4719-8750-7208603a0525", + "name": "WORKING BY MY SELF" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "agilysys.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad09-40e1-ad7d-12addfaa2875", + "name": "Agilysys" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "verkada.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-adaf-4e9d-89be-72c6a349745a", + "name": "Verkada" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "servicetitan.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8ce-4a77-b76d-47d9b986582d", + "name": "ServiceTitan" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sap.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a48b-438a-83cf-14723cad1a7a", + "name": "SAP SuccessFactors" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "oracle.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8ab-41fd-a1dc-ae6c974e183f", + "name": "MICROS Systems Inc" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "alvaria.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a837-46e1-abc6-1abca9d2fbaa", + "name": "Alvaria, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "saama.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a67f-413d-82da-ec4d766cb296", + "name": "Saama" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ancestry.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a1c2-4cea-a678-9bd4897effaa", + "name": "Ancestry" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "insightsoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-adef-416a-a0cd-bc60d75f0708", + "name": "insightsoftware" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ebix.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8c7-4b4d-848f-8475ff6d5466", + "name": "Ebix" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "communitybrands.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a433-4023-b8cb-0e93f57adc7c", + "name": "Community Brands" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mozilla.org", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afa0-4371-af3e-6858b75a19d0", + "name": "Mozilla" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "semrush.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a466-443e-8131-510fb1ec9c42", + "name": "Semrush" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "appfolioinc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a053-4383-9712-e4e91860dc04", + "name": "AppFolio, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "taboola.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a561-4416-a7a1-390f3deea8cf", + "name": "Taboola" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "virginpulse.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8ae-42dd-84a0-b893c1a0d89c", + "name": "Virgin Pulse" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "bullhorn.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a2cb-421a-b222-24c0c4fd9d82", + "name": "Bullhorn" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "relativity.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ace2-409c-bbe6-c03b985c6db8", + "name": "Relativity" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "braze.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af69-4333-a0e7-95a349ff4ef8", + "name": "Braze" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mitchell.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a97a-4a8f-97af-abddded8ddad", + "name": "Mitchell International" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "talkdesk.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af49-4994-98e0-7b9bc9062ea7", + "name": "Talkdesk" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "hsc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af2b-421c-8eff-e2a2a58716cf", + "name": "Hughes Systique Corporation (HSC)" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ridewithvia.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ade8-4b55-a4ea-3cb5b7914382", + "name": "Via" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "beyondtrust.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a35c-48ab-aa83-9067f438d3d3", + "name": "BeyondTrust" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "logmeininc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a604-4cb1-b408-47cab902e127", + "name": "LogMeIn" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "khoros.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abad-4d2b-bd60-2ba981b29a04", + "name": "Khoros" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "avepoint.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae09-40cd-ac82-cb5d7ff17796", + "name": "AvePoint" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "taskrabbit.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a1fa-4ccc-a0e7-307aba7afa7e", + "name": "Taskrabbit" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "oeconnection.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a068-47fa-b99f-dc814bc035a2", + "name": "OEC" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "calsoftinc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac80-4246-a1f0-e130b00faedb", + "name": "Calsoft" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "dataiku.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a80d-47c6-9266-8e89d89e150f", + "name": "Dataiku" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "infotechinc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a37d-4877-8711-d69cc729ae89", + "name": "Infotech" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "jaggaer.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abda-4364-b276-71c24d741f2f", + "name": "JAGGAER" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "checkr.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad5e-48af-b55d-e3f5338abfb3", + "name": "Checkr, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "carfax.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3e3-4544-b6e5-8940953018e3", + "name": "CARFAX" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "edbpostgres.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aefb-49f9-b3e0-8d2bd59432d3", + "name": "EDB" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "rent.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a48e-4b9a-9fdf-dfe5d7674283", + "name": "Rent." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "2020spaces.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad56-4879-99cf-51ae83bed363", + "name": "2020" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "atg.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad70-445b-b168-0fe285e232f3", + "name": "Art Technology Group" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "castsoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad67-49a8-9774-b118a4d8fd21", + "name": "CAST" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mediaocean.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a346-487e-85d2-085b834ba123", + "name": "Mediaocean" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "bandwidth.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5f8-479b-8282-c4614fd7f0f0", + "name": "Bandwidth Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sagitec.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a36a-4d57-a99c-b5e980a74e67", + "name": "Sagitec Solutions" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "curemd.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a18b-4f40-8a81-136308dde18e", + "name": "CureMD" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "gigamon.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3e3-44ad-b7c7-91c1208bc36e", + "name": "Gigamon" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "collibra.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-acbb-41c0-9692-1c8c5a278b74", + "name": "Collibra" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "5tran.co", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa10-4772-84d3-1faa7522dc5e", + "name": "Fivetran" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "centralsquare.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a75f-46e7-83d6-da52c24661cf", + "name": "CentralSquare Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "stubhub.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a072-49f1-8c7b-57867b64ea95", + "name": "StubHub" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "dell.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a963-4acf-be69-4dcd040872d2", + "name": "Dell Compellent" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "walkme.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0e0-48bd-a907-9b9f147852f8", + "name": "WalkMe™" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "prometheusgroup.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a9ca-4653-86fb-ba1fbc2e2292", + "name": "Prometheus Group" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "dialpad.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a53f-4873-ace7-fbf4a42fd956", + "name": "Dialpad" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "accruent.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3e6-44a2-ba1a-a9b6a45a529e", + "name": "Accruent" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "flexera.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a147-42d8-9895-7432ff7e22f2", + "name": "Flexera" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "quotient.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a859-4275-b748-98dbb3a32ba8", + "name": "Quotient Technology Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "zapier.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a52a-4115-abaa-de6ced8994f7", + "name": "Zapier" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "wso2.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a659-4e64-b9ba-8f6a718667bc", + "name": "WSO2" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "rldatix.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad24-4991-b762-87977537c30f", + "name": "RLDatix" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "waitrapp.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a631-44bd-a507-f4c972e97797", + "name": "Waitr" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "dusd.net", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa15-4a76-a35c-728a7268d87d", + "name": "Downey Unified School District" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "privateaccess.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab7c-4acc-bc26-b6fcbd981114", + "name": "Private Access, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "talentsystems.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab2b-4387-8c42-f7487d9d46d4", + "name": "Talent Systems, LLC" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "datasite.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a216-4ad4-aa26-c00e23fd5844", + "name": "Datasite" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "project44.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4c1-4dc2-ba46-b5b06b7fb6b8", + "name": "project44" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "egnyte.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a219-49d1-83cc-214e001350c9", + "name": "Egnyte" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tipalti.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4af-407b-884d-d67a5550ad5f", + "name": "Tipalti" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "altium.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a262-43b6-9f8c-87edb0ef0215", + "name": "Altium®" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "airslate.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a023-4180-9da1-6b417beacf0e", + "name": "airSlate" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "airtable.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a2da-4948-86af-f8a5cb56bccb", + "name": "Airtable" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "birdeye.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a065-4387-980b-4092a6703336", + "name": "Birdeye" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ultimatesoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a673-47a3-b412-d9e19be4a994", + "name": "Ultimate Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "highspot.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac15-4b16-b94c-39042f7d45c2", + "name": "Highspot" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sagent.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab24-4246-8226-3801c3b06e77", + "name": "Sagent" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "pas.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5be-4af6-9bc8-648553417e61", + "name": "PAS" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "wikimediafoundation.org", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a657-4453-8435-5d004b261a51", + "name": "Wikimedia Foundation" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "edifecs.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4d9-4935-bc70-e183b9ae967c", + "name": "Edifecs" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "perforce.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a101-43d7-a42f-6621ca4fa2c4", + "name": "Perforce Software" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "insurity.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a316-4d93-a56b-ac9f4b3bde66", + "name": "Insurity" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "developer.lge.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a25d-4833-b3a1-7667311bf100", + "name": "webOS" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "oati.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abcf-4ae1-8ccd-ea0105317117", + "name": "OATI" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sirionlabs.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab51-43fd-a23d-5141065d46fd", + "name": "Sirion" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "intimetec.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a595-466b-9c73-6f6fa4391b98", + "name": "In Time Tec" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tracelink.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a621-4772-b39a-f9e8ed2c4a6f", + "name": "TraceLink" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "schrodinger.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a528-4efa-8373-69cb6a370997", + "name": "Schrödinger" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "brightlysoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a469-4edb-942c-4571d7243172", + "name": "Brightly" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "acstechnologies.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a02e-4e28-b4a9-6096b36e26df", + "name": "ACS Technologies" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "uniphore.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-acd2-40db-8f19-1f2751cf4fc0", + "name": "Uniphore" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mhcautomation.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6ea-40bb-8a10-d21d882d4795", + "name": "MHC" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "getweave.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a975-4e58-bfba-8011177ed614", + "name": "Weave" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "microworkers.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac4a-4400-8cef-7099fd422895", + "name": "Microworkers" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "trilogy.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a544-4946-9c3a-94e00a24d7d6", + "name": "Trilogy" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ipipeline.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-acdd-4c32-9de6-ab8f22868b72", + "name": "iPipeline" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "doximity.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5da-485e-ba1e-0593413ce765", + "name": "Doximity" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "couchbase.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa80-4e13-a426-efa7a35df15f", + "name": "Couchbase" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "workato.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a948-4d20-bc77-deee9561d1c6", + "name": "Workato" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "saviynt.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a652-4e1c-b62a-6036a1552d3f", + "name": "Saviynt" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tivo.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae9e-43c4-987f-8babcd75cfd5", + "name": "Rovi Corporation (now TiVo)" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "bitsight.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abac-477d-a6fb-911f28423c83", + "name": "Bitsight" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "symphonyretailai.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abba-4475-9e22-0a54a3247092", + "name": "SymphonyAI Retail CPG" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "teletracnavman.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae97-4f55-adce-c82153d5e29b", + "name": "Teletrac Navman" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "buildertrend.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a70a-4071-ab3f-d8731c548d2b", + "name": "Buildertrend" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "thousandeyes.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-acc1-4851-baaa-e8b8159fafba", + "name": "ThousandEyes (part of Cisco)" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mbopartners.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a475-43a2-a7b2-d225c96003c5", + "name": "MBO Partners" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "vts.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6bd-4acf-a5ef-5f62e4bbf65d", + "name": "VTS" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "xometry.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a40b-4997-be7f-e944866b606c", + "name": "Xometry" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "quickbase.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a657-4a56-9d42-c2d9e2726a22", + "name": "Quickbase" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "agora.io", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5f0-403b-869c-d5eb3c33eb89", + "name": "Agora" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "hhaexchange.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a5be-4aff-8929-5797b9f6833d", + "name": "HHAeXchange" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ninjaone.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a917-4b80-bad4-b5ad1c122256", + "name": "NinjaOne" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "zywave.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4b6-4609-b282-39001908f263", + "name": "Zywave" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "marketo.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3ad-4a57-a6dc-9a044afa0db1", + "name": "Adobe Marketo" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "crmnext.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac13-4f26-bfcd-ed8b2c6c224d", + "name": "CRMNEXT" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "payscale.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a4af-48e1-802d-8eb305b33128", + "name": "Payscale" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "riskonnect.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab2a-4282-98d9-41980a4e4795", + "name": "Riskonnect, Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "shopkeeper.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa29-4d8f-bfa3-520ca735808c", + "name": "Shopkeeper" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "stackoverflow.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aedb-4d19-ba79-5833af334e6a", + "name": "Stack Overflow" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "1eq.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-accd-4472-ae71-18458e1147fd", + "name": "eQ Technologic" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "omnitracs.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6e8-4e71-87f2-5e67b92d521c", + "name": "Omnitracs" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "celigo.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a3a3-474a-8051-b900ffaac02f", + "name": "Celigo" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "kpa.io", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab66-4c44-86c4-bbc86ed091a9", + "name": "KPA" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "qualifacts.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ace0-49c8-ba34-b05618c6dbb9", + "name": "Qualifacts" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "accountantsworld.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab10-49f7-8111-5c8e1a7617a6", + "name": "AccountantsWorld" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "aderant.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a854-4dc6-8994-2935ddeeb59a", + "name": "Aderant" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "opengov.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a69a-4f58-9c80-8d6540c047dc", + "name": "OpenGov Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "denodo.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae80-4fbc-8e79-88233787ce46", + "name": "Denodo" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "vertexone.net", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aacb-4788-ab45-c3e28e5b1f7f", + "name": "VertexOne" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "calypso.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa36-469b-bdf8-62c986736b82", + "name": "Calypso Technology" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "sisense.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-af28-4a93-bba3-b02aa55543a3", + "name": "Sisense" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "calendly.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a0ae-46da-9697-ed949ee75b67", + "name": "Calendly" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mresult.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a946-4ecf-b960-342da68a5761", + "name": "MResult" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "mirantis.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aba2-4628-af2b-bee2757146a1", + "name": "Mirantis" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "asap.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-acdb-4e1a-a4d7-359f19a7bfe0", + "name": "ASAP" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "datastax.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a059-48ca-8d80-164009a58b92", + "name": "DataStax" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "foursquare.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-abc6-4eb7-9e03-90585a6f1345", + "name": "Foursquare" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "lastpass.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a8e9-4634-bc1b-6e1ae515b9d0", + "name": "LastPass" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "matterport.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a7a8-41a6-9930-93238de04c45", + "name": "Matterport" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "miteksystems.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a6ac-4e00-a5e3-4ffd01cdcd3c", + "name": "Mitek Systems" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "eso.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ab59-44c6-942f-191e0bab1e34", + "name": "ESO" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "quark.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a952-41ca-a3f5-94520f4ff7e5", + "name": "Quark Software Inc." + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "macrosoftinc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a058-4981-a23c-84e01c6f7cea", + "name": "Macrosoft" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "paradox.ai", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad5f-4a4f-88cd-37408995df9f", + "name": "Paradox" + } + }, + { + "__typename": "CompanyEdge", + "node": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "ceipal.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-afff-49b1-99b9-26924b60bd56", + "name": "Ceipal" + } + } + ] + }, + "assignedTasks": { + "__typename": "TaskConnection", + "edges": [ + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-000a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-000c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0013-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-001c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-001d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-001f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-002b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0036-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0037-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0039-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-003c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-003d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0040-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0041-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0043-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0048-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0049-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-004a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-004b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-004c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-004f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0053-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0054-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0059-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-005a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-005d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-005e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0063-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0066-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0068-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0069-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-006a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-006b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-006e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0072-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0078-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-007f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0081-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0084-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0086-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0088-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0089-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-008d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0094-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0096-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00a0-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00a1-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00a2-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00a3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00a4-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00a5-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00a8-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00a9-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00b0-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00b1-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00b4-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00b5-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00b7-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00b8-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ba-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00bb-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00bd-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00be-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00c4-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00c8-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00c9-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00cd-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00d1-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00d6-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00d7-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00d9-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00db-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00dd-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00e1-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00e3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00e4-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00e6-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00e7-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00e9-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ea-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00eb-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00f2-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00f5-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00f9-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00fb-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00fe-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-00ff-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0104-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0105-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0106-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0109-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-010a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0118-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-011d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-011e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0123-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0125-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0126-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-012a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-012b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-012d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0131-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-013a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-013b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-013e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-013f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0142-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0144-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0147-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0149-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-014b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-014f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0151-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0154-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0157-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0159-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-015e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-015f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0160-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0162-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0164-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0166-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0169-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0171-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0173-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0174-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0176-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0177-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0179-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-017c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-017e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-017f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0181-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0184-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0185-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0187-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-018b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0190-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0191-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0193-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0198-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-019c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-019d-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-019e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-019f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01a3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01a5-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01a8-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01a9-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ae-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01b3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01b5-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01b6-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01b7-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01b9-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ba-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01bf-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01c1-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01c2-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01c7-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01c8-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01cc-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ce-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01d5-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01df-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01e2-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01e4-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01e6-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01e9-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01ec-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01f0-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01f2-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01f6-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01fb-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-01fd-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0203-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0205-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-020c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-020f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0213-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0216-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0218-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-021a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0225-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0226-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0227-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-022b-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-022c-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0233-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0235-4e7c-8001-123456789def", + "title": "Update contact information" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-023a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-023e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-023f-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0250-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0251-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0252-4e7c-8001-123456789def", + "title": "Send project proposal" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0253-4e7c-8001-123456789def", + "title": "Review contract terms" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0254-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + }, + { + "__typename": "TaskEdge", + "node": { + "__typename": "Task", + "id": "20202020-0255-4e7c-8001-123456789def", + "title": "Update contact information" + } + } + ] + }, + "avatarUrl": "", + "blocklist": { + "__typename": "BlocklistConnection", + "edges": [] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "calendarStartDay": 7, + "colorScheme": "Light", + "connectedAccounts": { + "__typename": "ConnectedAccountConnection", + "edges": [ + { + "__typename": "ConnectedAccountEdge", + "node": { + "__typename": "ConnectedAccount", + "handle": "jony.ive@apple.dev", + "id": "20202020-0cc8-4d60-a3a4-803245698908" + } + } + ] + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dateFormat": "SYSTEM", + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "locale": "en", + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [] + }, + "name": { + "__typename": "FullName", + "firstName": "Jony", + "lastName": "Ive" + }, + "numberFormat": "SYSTEM", + "ownedOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 0, + "timeFormat": "SYSTEM", + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [] + }, + "timeZone": "system", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "userEmail": "jony.ive@apple.dev", + "userId": "20202020-3957-4908-9c36-2929a23f8357" + }, + { + "__typename": "WorkspaceMember", + "accountOwnerForCompanies": { + "__typename": "CompanyConnection", + "edges": [] + }, + "assignedTasks": { + "__typename": "TaskConnection", + "edges": [] + }, + "avatarUrl": "", + "blocklist": { + "__typename": "BlocklistConnection", + "edges": [] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "calendarStartDay": 7, + "colorScheme": "System", + "connectedAccounts": { + "__typename": "ConnectedAccountConnection", + "edges": [] + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dateFormat": "SYSTEM", + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "32323232-0001-4000-8000-000000000000", + "locale": "en", + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [] + }, + "name": { + "__typename": "FullName", + "firstName": "Sara", + "lastName": "Richardson" + }, + "numberFormat": "SYSTEM", + "ownedOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 0, + "timeFormat": "SYSTEM", + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [] + }, + "timeZone": "system", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "userEmail": "sara.richardson1@apple.dev", + "userId": "30303030-0001-4000-8000-000000000000" + }, + { + "__typename": "WorkspaceMember", + "accountOwnerForCompanies": { + "__typename": "CompanyConnection", + "edges": [] + }, + "assignedTasks": { + "__typename": "TaskConnection", + "edges": [] + }, + "avatarUrl": "", + "blocklist": { + "__typename": "BlocklistConnection", + "edges": [] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "member@company.com", + "id": "20202020-0204-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "member@company.com", + "id": "20202020-04a3-4e7c-8001-123456789def" + } + } + ] + }, + "calendarStartDay": 7, + "colorScheme": "System", + "connectedAccounts": { + "__typename": "ConnectedAccountConnection", + "edges": [] + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dateFormat": "SYSTEM", + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "32323232-0002-4000-8000-000000000000", + "locale": "en", + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [] + }, + "name": { + "__typename": "FullName", + "firstName": "Deborah", + "lastName": "Ryan" + }, + "numberFormat": "SYSTEM", + "ownedOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 0, + "timeFormat": "SYSTEM", + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [] + }, + "timeZone": "system", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "userEmail": "deborah.ryan2@apple.dev", + "userId": "30303030-0002-4000-8000-000000000000" + }, + { + "__typename": "WorkspaceMember", + "accountOwnerForCompanies": { + "__typename": "CompanyConnection", + "edges": [] + }, + "assignedTasks": { + "__typename": "TaskConnection", + "edges": [] + }, + "avatarUrl": "", + "blocklist": { + "__typename": "BlocklistConnection", + "edges": [] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "member@company.com", + "id": "20202020-0575-4e7c-8001-123456789def" + } + } + ] + }, + "calendarStartDay": 7, + "colorScheme": "Dark", + "connectedAccounts": { + "__typename": "ConnectedAccountConnection", + "edges": [] + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dateFormat": "SYSTEM", + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "32323232-0003-4000-8000-000000000000", + "locale": "en", + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [ + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-01ed-4e7c-8001-123456789cde" + } + } + ] + }, + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Gordon" + }, + "numberFormat": "SYSTEM", + "ownedOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 0, + "timeFormat": "SYSTEM", + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [] + }, + "timeZone": "system", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "userEmail": "victoria.gordon3@apple.dev", + "userId": "30303030-0003-4000-8000-000000000000" + }, + { + "__typename": "WorkspaceMember", + "accountOwnerForCompanies": { + "__typename": "CompanyConnection", + "edges": [] + }, + "assignedTasks": { + "__typename": "TaskConnection", + "edges": [] + }, + "avatarUrl": "", + "blocklist": { + "__typename": "BlocklistConnection", + "edges": [] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "calendarStartDay": 7, + "colorScheme": "Dark", + "connectedAccounts": { + "__typename": "ConnectedAccountConnection", + "edges": [] + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dateFormat": "SYSTEM", + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "32323232-0004-4000-8000-000000000000", + "locale": "en", + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [] + }, + "name": { + "__typename": "FullName", + "firstName": "Roman", + "lastName": "Gray" + }, + "numberFormat": "SYSTEM", + "ownedOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 0, + "timeFormat": "SYSTEM", + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [] + }, + "timeZone": "system", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "userEmail": "roman.gray4@apple.dev", + "userId": "30303030-0004-4000-8000-000000000000" + }, + { + "__typename": "WorkspaceMember", + "accountOwnerForCompanies": { + "__typename": "CompanyConnection", + "edges": [] + }, + "assignedTasks": { + "__typename": "TaskConnection", + "edges": [] + }, + "avatarUrl": "", + "blocklist": { + "__typename": "BlocklistConnection", + "edges": [] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "calendarStartDay": 7, + "colorScheme": "Light", + "connectedAccounts": { + "__typename": "ConnectedAccountConnection", + "edges": [] + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dateFormat": "SYSTEM", + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "32323232-0005-4000-8000-000000000000", + "locale": "en", + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [] + }, + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Palmer" + }, + "numberFormat": "SYSTEM", + "ownedOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 0, + "timeFormat": "SYSTEM", + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [] + }, + "timeZone": "system", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "userEmail": "ruth.palmer5@apple.dev", + "userId": "30303030-0005-4000-8000-000000000000" + }, + { + "__typename": "WorkspaceMember", + "accountOwnerForCompanies": { + "__typename": "CompanyConnection", + "edges": [] + }, + "assignedTasks": { + "__typename": "TaskConnection", + "edges": [] + }, + "avatarUrl": "", + "blocklist": { + "__typename": "BlocklistConnection", + "edges": [] + }, + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "calendarStartDay": 7, + "colorScheme": "Dark", + "connectedAccounts": { + "__typename": "ConnectedAccountConnection", + "edges": [] + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "dateFormat": "SYSTEM", + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "32323232-0006-4000-8000-000000000000", + "locale": "en", + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [] + }, + "name": { + "__typename": "FullName", + "firstName": "Dylan", + "lastName": "Alexander" + }, + "numberFormat": "SYSTEM", + "ownedOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 0, + "timeFormat": "SYSTEM", + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [] + }, + "timeZone": "system", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "userEmail": "dylan.alexander6@apple.dev", + "userId": "30303030-0006-4000-8000-000000000000" + } +]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/metadata/api-keys/mock-api-keys-data.ts b/packages/twenty-front/src/testing/mock-data/generated/metadata/api-keys/mock-api-keys-data.ts new file mode 100644 index 0000000000..8b4452c9f8 --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/metadata/api-keys/mock-api-keys-data.ts @@ -0,0 +1,25 @@ +/* eslint-disable */ +// @ts-nocheck + + +// This file was automatically generated — do not edit manually. + +// prettier-ignore +export const mockedApiKeys: Record[] = +[ + { + "__typename": "ApiKey", + "id": "20202020-f401-4d8a-a731-64d007c27bad", + "name": "My api key", + "expiresAt": "2025-12-31T23:59:59.000Z", + "createdAt": "2026-02-27T01:17:26.394Z", + "updatedAt": "2026-02-27T01:17:26.394Z", + "revokedAt": null, + "role": { + "__typename": "Role", + "id": "28f0a741-33c8-4af0-8542-f9ca2ad43285", + "label": "Admin", + "icon": "IconUserCog" + } + } +]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/metadata/roles/mock-roles-data.ts b/packages/twenty-front/src/testing/mock-data/generated/metadata/roles/mock-roles-data.ts index ba212f5fb8..bf66a28a39 100644 --- a/packages/twenty-front/src/testing/mock-data/generated/metadata/roles/mock-roles-data.ts +++ b/packages/twenty-front/src/testing/mock-data/generated/metadata/roles/mock-roles-data.ts @@ -11202,7 +11202,7 @@ export const mockedRoles: Role[] = "userEmail": "richard.palmer1000@apple.dev" } ], - "agents": [], - "apiKeys": [] + "apiKeys": [], + "agents": [] } ]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/metadata/views/mock-views-data.ts b/packages/twenty-front/src/testing/mock-data/generated/metadata/views/mock-views-data.ts new file mode 100644 index 0000000000..8a0cd9d81a --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/metadata/views/mock-views-data.ts @@ -0,0 +1,3921 @@ +/* eslint-disable */ +// @ts-nocheck +import { type CoreViewWithRelations } from '@/views/types/CoreViewWithRelations'; + +// This file was automatically generated — do not edit manually. + +// prettier-ignore +export const mockedCoreViews: CoreViewWithRelations[] = +[ + { + "id": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "objectMetadataId": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "type": "FIELDS_WIDGET", + "key": null, + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "Pet Care Agreement Record Page Fields", + "viewFields": [ + { + "id": "739c7cf3-d523-4482-870d-d5a0bc4bab45", + "fieldMetadataId": "11576aee-6293-4ea2-9815-31c1001679aa", + "viewId": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "isVisible": true, + "position": 11, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "6a8d14f9-e4cf-4136-8d4e-0ab60e88fdb6", + "fieldMetadataId": "ea484985-032b-4da9-aa58-f2878c1b616f", + "viewId": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "db0c61db-7725-4133-b817-21c0f7c549b2", + "fieldMetadataId": "21e86098-eed0-457c-866c-4cb17cb11b4b", + "viewId": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "isVisible": true, + "position": 1, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "c4356f8c-fadf-4342-97cf-6b4d1edcd6b6", + "fieldMetadataId": "098de65c-5162-40b3-8179-d74bcad0e611", + "viewId": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "isVisible": true, + "position": 2, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "95f726bf-5253-458c-b18a-f007b0005ab2", + "fieldMetadataId": "632de67a-8c5d-47d6-a104-735735a0c5b3", + "viewId": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "isVisible": true, + "position": 3, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "d0795684-4cd6-4489-b6ee-282383b5535d", + "fieldMetadataId": "f5b274c5-52df-4432-a2b7-3eda97a6a830", + "viewId": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "isVisible": true, + "position": 4, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "dc81a90b-016a-4c3d-8a9f-5a401a957a47", + "fieldMetadataId": "21a198d3-b457-4e93-918b-702159135ac3", + "viewId": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "isVisible": true, + "position": 5, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "e1227b9f-c861-442f-a722-2f56c0210971", + "fieldMetadataId": "59df22b5-720d-429d-a927-85dfaf93b0c2", + "viewId": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "isVisible": true, + "position": 6, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "93747495-248d-4722-be99-2bb503011530", + "fieldMetadataId": "f5165e25-c5ce-4ccc-b547-ee831c4de6ff", + "viewId": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "isVisible": true, + "position": 7, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "f962ae7c-28bf-4020-946e-a2b7252c917b", + "fieldMetadataId": "19aa48dc-c57f-49a7-aac1-a5cbbd41bb35", + "viewId": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "isVisible": true, + "position": 8, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "e8880d23-bfda-4239-9c63-461f410783b9", + "fieldMetadataId": "71da3160-935c-4fe2-b931-bc519f56344f", + "viewId": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "isVisible": true, + "position": 9, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "b0dc3413-15a8-497e-b59c-daab3e46d5e3", + "fieldMetadataId": "46edb2f7-20fd-4696-b124-ef5e336ab84c", + "viewId": "9a77f9a8-f1ea-438d-a4da-91ac585054b7", + "isVisible": true, + "position": 10, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "4ec892ca-164e-45cc-915e-9c58c91a8240", + "objectMetadataId": "276bb040-9936-4d0d-99b2-3ea46efdbf43", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Attachments", + "viewFields": [ + { + "id": "6ffc2e7f-25e2-483c-bea2-bbb48a4b4566", + "fieldMetadataId": "d379d9d0-732d-468c-9614-c698e4c9d9ed", + "viewId": "4ec892ca-164e-45cc-915e-9c58c91a8240", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "1a6c63e1-81c0-40c7-9b30-328ae386addb", + "fieldMetadataId": "22a7e21a-80bd-4615-bee3-ae53074ad40b", + "viewId": "4ec892ca-164e-45cc-915e-9c58c91a8240", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "8325eb9f-d2e4-4eeb-9044-a9f82f24cf36", + "fieldMetadataId": "a50a16b0-6b64-4336-97b9-8d5053d18a7c", + "viewId": "4ec892ca-164e-45cc-915e-9c58c91a8240", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "dd6382a8-a4b5-431b-9bc6-712ebdbd778b", + "fieldMetadataId": "67b197ec-91a2-42fa-bcf8-13625918a293", + "viewId": "4ec892ca-164e-45cc-915e-9c58c91a8240", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "7e885e61-bdff-44cc-b0a3-a29876b78254", + "fieldMetadataId": "cdb8a8eb-4a4f-462c-892b-5109d6631522", + "viewId": "4ec892ca-164e-45cc-915e-9c58c91a8240", + "isVisible": true, + "position": 5, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "cbe8e7d2-76d6-4fb2-9245-fee91db94612", + "fieldMetadataId": "5a615dbd-871f-438b-8a9e-fe19cbfa1c90", + "viewId": "4ec892ca-164e-45cc-915e-9c58c91a8240", + "isVisible": true, + "position": 6, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "699fcf99-ae7f-4af8-9ae9-6ce3e1121a66", + "fieldMetadataId": "31da9583-3cf0-4112-af04-6b93eedd19ac", + "viewId": "4ec892ca-164e-45cc-915e-9c58c91a8240", + "isVisible": true, + "position": 7, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "a7a26817-e816-4a27-b074-4171fe2bae0b", + "fieldMetadataId": "44570496-0a8f-4615-8a68-97c7fa44219d", + "viewId": "4ec892ca-164e-45cc-915e-9c58c91a8240", + "isVisible": true, + "position": 8, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "bc40059a-6b09-43c4-ae50-675e141fd41e", + "fieldMetadataId": "903d61fc-bf09-4ccf-846e-8b700855b36c", + "viewId": "4ec892ca-164e-45cc-915e-9c58c91a8240", + "isVisible": true, + "position": 9, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "f98197f6-fd99-4ab4-ab81-eb289918e978", + "fieldMetadataId": "b1645104-f89a-478a-a5ef-52effab514e8", + "viewId": "4ec892ca-164e-45cc-915e-9c58c91a8240", + "isVisible": true, + "position": 10, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "1274b414-cd83-4595-a8be-ddf0a80ed42b", + "fieldMetadataId": "3146ccd8-8508-4f76-9d28-279c97aeb628", + "viewId": "4ec892ca-164e-45cc-915e-9c58c91a8240", + "isVisible": true, + "position": 0, + "size": 210, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "836291bc-f6d7-4edb-a292-5477cfb6c865", + "objectMetadataId": "7063c812-ee93-49ec-aae9-dfc1a3078ce6", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": "f7a48639-7b0a-4a53-8bab-00cad2e94ee2", + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Calendar Events", + "viewFields": [ + { + "id": "b0b64262-0a3a-4a4d-92c3-36e3a975b63e", + "fieldMetadataId": "5d03af86-bbfb-4e94-8053-6212543697ac", + "viewId": "836291bc-f6d7-4edb-a292-5477cfb6c865", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "3f1552bb-19e9-4a41-9262-710c65894c39", + "fieldMetadataId": "f7a48639-7b0a-4a53-8bab-00cad2e94ee2", + "viewId": "836291bc-f6d7-4edb-a292-5477cfb6c865", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "fe3d9c10-410c-4379-b82b-aa9a6ebc1951", + "fieldMetadataId": "e7fa3139-480e-4e92-a480-9396bdf23fdb", + "viewId": "836291bc-f6d7-4edb-a292-5477cfb6c865", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "9222407c-e965-4a1d-9d6a-6ab023983128", + "fieldMetadataId": "282d3888-50d2-4c2b-a8de-0e3b279c447a", + "viewId": "836291bc-f6d7-4edb-a292-5477cfb6c865", + "isVisible": true, + "position": 3, + "size": 100, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "5de30189-c102-4400-9f68-a858eb53c268", + "fieldMetadataId": "11f20dfb-79cd-4576-9bd0-85b0c59b0aa7", + "viewId": "836291bc-f6d7-4edb-a292-5477cfb6c865", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "a439d32f-4b6f-4322-8628-283d768bfc64", + "fieldMetadataId": "4dbc9cf8-9c3f-40e4-9c6e-83fb2aa10892", + "viewId": "836291bc-f6d7-4edb-a292-5477cfb6c865", + "isVisible": true, + "position": 5, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "19a401de-3be4-4a06-9644-4b761444c3ac", + "fieldMetadataId": "9d0c00e2-576f-46a1-a676-53926ee3c2ae", + "viewId": "836291bc-f6d7-4edb-a292-5477cfb6c865", + "isVisible": true, + "position": 6, + "size": 100, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "0a2840ee-4d3f-4cc7-bac5-7b191bc1f3c7", + "fieldMetadataId": "e45458d7-7d52-41c0-885d-8341c44d78ff", + "viewId": "836291bc-f6d7-4edb-a292-5477cfb6c865", + "isVisible": true, + "position": 7, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "123952b3-15d7-4674-aa2c-f5e21a0ef4b7", + "objectMetadataId": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Companies", + "viewFields": [ + { + "id": "c93b06f7-a4da-45ee-844a-03e9d530f588", + "fieldMetadataId": "22f022bd-6ab1-42df-b7eb-f08d7f1b1a6d", + "viewId": "123952b3-15d7-4674-aa2c-f5e21a0ef4b7", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "71409398-e2d7-4055-8679-d2b79336debf", + "fieldMetadataId": "0745db32-3bc7-4475-9cbe-a6fede666d63", + "viewId": "123952b3-15d7-4674-aa2c-f5e21a0ef4b7", + "isVisible": true, + "position": 1, + "size": 100, + "aggregateOperation": "COUNT", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "4d37a408-2093-43d0-b489-0757a03947e9", + "fieldMetadataId": "2458a15f-4bc3-4bb3-a259-3c1bdd2117b5", + "viewId": "123952b3-15d7-4674-aa2c-f5e21a0ef4b7", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "f20c3ec1-1963-4074-8889-553b8e6798c8", + "fieldMetadataId": "ebe26ed0-4b68-48cc-b2d4-e23f3a5e265d", + "viewId": "123952b3-15d7-4674-aa2c-f5e21a0ef4b7", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "dd019deb-a1a1-4088-8699-cb76ce55d335", + "fieldMetadataId": "7ba060df-386f-4a00-87b8-1eca233b2e68", + "viewId": "123952b3-15d7-4674-aa2c-f5e21a0ef4b7", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "b3a54324-0156-4754-8ed6-78fa40b92615", + "fieldMetadataId": "c4bc7169-f7a5-4fb0-8fd8-0c4ae656089d", + "viewId": "123952b3-15d7-4674-aa2c-f5e21a0ef4b7", + "isVisible": true, + "position": 5, + "size": 150, + "aggregateOperation": "MAX", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "0c535128-3973-453d-8e0a-4c97d7b506ab", + "fieldMetadataId": "0954834a-3adc-48d6-a07e-7b4645fb24f3", + "viewId": "123952b3-15d7-4674-aa2c-f5e21a0ef4b7", + "isVisible": true, + "position": 6, + "size": 170, + "aggregateOperation": "PERCENTAGE_EMPTY", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "e44ef0d1-02f9-42ba-9463-d4e18f02f185", + "fieldMetadataId": "b0988fa7-da62-4465-b31d-a807ecf264ec", + "viewId": "123952b3-15d7-4674-aa2c-f5e21a0ef4b7", + "isVisible": true, + "position": 7, + "size": 170, + "aggregateOperation": "COUNT_NOT_EMPTY", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "aacdfdf3-fab0-4452-8cef-6b3a7cdae65d", + "objectMetadataId": "5f90b5d9-b823-4278-b3db-fc540f13936a", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Dashboards", + "viewFields": [ + { + "id": "d8e414b0-56b0-4eff-9cc0-7fcbf47ecde4", + "fieldMetadataId": "2cd07d9a-4167-4c91-9002-4f543a28f400", + "viewId": "aacdfdf3-fab0-4452-8cef-6b3a7cdae65d", + "isVisible": true, + "position": 0, + "size": 200, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "3959b180-44fb-4ba2-974c-72b44f957cdf", + "fieldMetadataId": "457e9c88-ff16-40eb-9c16-c1c5a6e3f828", + "viewId": "aacdfdf3-fab0-4452-8cef-6b3a7cdae65d", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "8d5b2124-39d3-4af7-bd8f-7bde1b526825", + "fieldMetadataId": "b3ff6a15-5e15-4ba5-8864-235828df13e2", + "viewId": "aacdfdf3-fab0-4452-8cef-6b3a7cdae65d", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "d16b3d3e-197e-4aa5-bf21-8b1cb537b2b8", + "fieldMetadataId": "7b0a89ad-99b1-4f96-a411-0ca71e80784f", + "viewId": "aacdfdf3-fab0-4452-8cef-6b3a7cdae65d", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "4a04398f-b3b0-4e7b-a90e-5621cad963eb", + "objectMetadataId": "ac31da17-9686-436d-80e4-5278dcd00e81", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Messages", + "viewFields": [ + { + "id": "ed24250e-5065-424e-9b1a-64543bdda7c3", + "fieldMetadataId": "5014da55-de66-491f-b7cc-2700c588cc56", + "viewId": "4a04398f-b3b0-4e7b-a90e-5621cad963eb", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "81897360-2c7b-47de-8988-fb4725eef0aa", + "fieldMetadataId": "b177c805-4ff4-4c09-8c28-1c9ed81a09f6", + "viewId": "4a04398f-b3b0-4e7b-a90e-5621cad963eb", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "6e3ff04f-fd36-4b95-b911-90245a971cd7", + "fieldMetadataId": "4ffdf98f-6607-4fd0-a646-1c4ca6a1e77a", + "viewId": "4a04398f-b3b0-4e7b-a90e-5621cad963eb", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "54582c14-e99a-45bf-8f8e-62591efc0e38", + "fieldMetadataId": "28edc2a0-e125-4189-ad42-37618f395678", + "viewId": "4a04398f-b3b0-4e7b-a90e-5621cad963eb", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "50a19c56-7502-4953-b76b-637e204594f4", + "fieldMetadataId": "f724990f-93e6-420f-8318-d518c4c64727", + "viewId": "4a04398f-b3b0-4e7b-a90e-5621cad963eb", + "isVisible": true, + "position": 4, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "38015216-8ab5-4ef8-a596-be934e27c853", + "fieldMetadataId": "4922fff2-2120-4bce-9567-f7ecc21a9fa2", + "viewId": "4a04398f-b3b0-4e7b-a90e-5621cad963eb", + "isVisible": true, + "position": 5, + "size": 200, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "e84d670a-c389-4a5f-951f-377ac8758c4e", + "fieldMetadataId": "c37b7a9c-202b-4122-912e-c095b6bb760e", + "viewId": "4a04398f-b3b0-4e7b-a90e-5621cad963eb", + "isVisible": true, + "position": 6, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "0ceee953-bd55-4217-93a6-269db4289def", + "objectMetadataId": "26f62a07-444a-44b2-abf6-70037ab95e25", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Message Threads", + "viewFields": [ + { + "id": "9a11457f-969a-4649-a659-dc8b862f8967", + "fieldMetadataId": "ff159b75-37ac-4745-8b55-6d72f84c992a", + "viewId": "0ceee953-bd55-4217-93a6-269db4289def", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "dcf426f1-15f3-4cea-9a26-700b518d3275", + "fieldMetadataId": "cbe35973-5189-49d4-9f9c-62e14b4ba532", + "viewId": "0ceee953-bd55-4217-93a6-269db4289def", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "9e10e56a-a3f7-40e0-a9dd-a34ddbc4a709", + "objectMetadataId": "1691dfbb-f84a-4fe8-acd4-a7f35e7673a7", + "type": "TABLE", + "key": "INDEX", + "icon": "IconNotes", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Notes", + "viewFields": [ + { + "id": "1fe789ff-1ccc-40d3-a833-6c85c6416af4", + "fieldMetadataId": "f0ce714d-d63d-46d3-a112-e7ef30b52703", + "viewId": "9e10e56a-a3f7-40e0-a9dd-a34ddbc4a709", + "isVisible": true, + "position": 0, + "size": 210, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "affd811d-85ba-4687-9340-b6a48284b94e", + "fieldMetadataId": "1acbbea8-76dd-4a1e-9d2e-fdbebc1efe1f", + "viewId": "9e10e56a-a3f7-40e0-a9dd-a34ddbc4a709", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "e3ea9ef2-d104-4e19-baa4-521dbea1f31f", + "fieldMetadataId": "71961f86-5386-4cc9-b23a-39fc5c1c7c5e", + "viewId": "9e10e56a-a3f7-40e0-a9dd-a34ddbc4a709", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "ec134e07-d76a-4a41-ac73-b053f778e9b1", + "fieldMetadataId": "fc818f5d-a41d-4213-8919-00aa67a76cff", + "viewId": "9e10e56a-a3f7-40e0-a9dd-a34ddbc4a709", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "922fee83-e1dc-4200-8ce9-3cb83e586b99", + "fieldMetadataId": "d8c58aba-09e6-4c9e-bda1-6d885465c8ec", + "viewId": "9e10e56a-a3f7-40e0-a9dd-a34ddbc4a709", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "0ae79b9a-48cc-45b3-83ab-fc465ca4a6f4", + "objectMetadataId": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Note Targets", + "viewFields": [ + { + "id": "1968f8f6-fea7-4132-8ea7-ecce60efa7cd", + "fieldMetadataId": "36027089-61d6-48e8-bb7a-61249ff1bb0b", + "viewId": "0ae79b9a-48cc-45b3-83ab-fc465ca4a6f4", + "isVisible": true, + "position": 0, + "size": 210, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "cd6a55dc-4428-440e-b96d-89599f45f716", + "fieldMetadataId": "9c7ac0eb-cbb9-4043-bc79-a6350611d037", + "viewId": "0ae79b9a-48cc-45b3-83ab-fc465ca4a6f4", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "06f9af8d-8c6d-42ad-8f08-9cb999baef68", + "fieldMetadataId": "24e72ed6-7f06-4533-969d-88920f629d32", + "viewId": "0ae79b9a-48cc-45b3-83ab-fc465ca4a6f4", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "e8177bdc-9121-423a-a9d1-7e24eb9cbf07", + "fieldMetadataId": "757b63bb-1b11-496d-8939-f16ad85e8387", + "viewId": "0ae79b9a-48cc-45b3-83ab-fc465ca4a6f4", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "e5d69d8c-4c5e-4298-b715-bb24830662da", + "fieldMetadataId": "ae386ffb-ec86-4eb4-b583-625897a42223", + "viewId": "0ae79b9a-48cc-45b3-83ab-fc465ca4a6f4", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "580054a7-0fb9-4193-b93b-ebe8dfe2a6e8", + "objectMetadataId": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Opportunities", + "viewFields": [ + { + "id": "355c269f-edbd-4814-96d5-82bc8913c218", + "fieldMetadataId": "73870ebe-aaa9-4a39-8487-5de19361629b", + "viewId": "580054a7-0fb9-4193-b93b-ebe8dfe2a6e8", + "isVisible": true, + "position": 0, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "ca53d201-a47c-4de8-b9b5-1f306a79458f", + "fieldMetadataId": "6b13a3ed-cd1c-477e-ba31-6db7b5062836", + "viewId": "580054a7-0fb9-4193-b93b-ebe8dfe2a6e8", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": "AVG", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "54efb948-f1e0-408e-9225-9be6122e4025", + "fieldMetadataId": "84911608-039f-4baa-8aeb-97b5d035298c", + "viewId": "580054a7-0fb9-4193-b93b-ebe8dfe2a6e8", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "9f2bbf13-49b1-4146-a658-ee5b05a6b588", + "fieldMetadataId": "1460b2b7-d1f9-423f-92d3-3d99106b886c", + "viewId": "580054a7-0fb9-4193-b93b-ebe8dfe2a6e8", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": "MIN", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "24e8c076-74c3-4f58-88d4-f7a6a8192a17", + "fieldMetadataId": "495a7d81-45b7-4cd2-8f8b-f01873fd78c6", + "viewId": "580054a7-0fb9-4193-b93b-ebe8dfe2a6e8", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "f2088876-6240-4b48-83d2-07a38f2e7138", + "fieldMetadataId": "6550d04e-1509-4f3d-946d-ba6694eb8605", + "viewId": "580054a7-0fb9-4193-b93b-ebe8dfe2a6e8", + "isVisible": true, + "position": 5, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "72f3a145-471c-4f38-b50a-ce975584faa4", + "objectMetadataId": "6b348756-2824-4eff-ade4-4129abe625f8", + "type": "FIELDS_WIDGET", + "key": null, + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "Pet Record Page Fields", + "viewFields": [ + { + "id": "3ad13c90-3fe6-4e1d-938b-d8fc97112f56", + "fieldMetadataId": "1f9f3c79-d695-4802-bc94-aeed27a3e018", + "viewId": "72f3a145-471c-4f38-b50a-ce975584faa4", + "isVisible": true, + "position": 11, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "af322d43-2e4e-4108-a1d2-67068d617333", + "fieldMetadataId": "32a344f6-f9c8-4288-8707-b11f22e1d99b", + "viewId": "72f3a145-471c-4f38-b50a-ce975584faa4", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "e0251cc7-3f36-4090-992d-39dc121b8846", + "fieldMetadataId": "2a944f7a-f105-43a5-9736-0d3f9924f2e5", + "viewId": "72f3a145-471c-4f38-b50a-ce975584faa4", + "isVisible": true, + "position": 1, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "c2d242e9-5bff-4ee7-91a2-6fd87e47e37c", + "fieldMetadataId": "30faf848-06fc-4eaf-9e44-23375651aec1", + "viewId": "72f3a145-471c-4f38-b50a-ce975584faa4", + "isVisible": true, + "position": 2, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "39fa92ed-105d-4204-89f8-1c2a4ab5e44a", + "fieldMetadataId": "090ea353-4dfb-40f2-9595-cc0664f02ffd", + "viewId": "72f3a145-471c-4f38-b50a-ce975584faa4", + "isVisible": true, + "position": 3, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "cb93cd5e-4b20-4567-a837-fcd7b333fd2e", + "fieldMetadataId": "86cdb011-25bc-4d99-b8a3-b8fcc15eec4c", + "viewId": "72f3a145-471c-4f38-b50a-ce975584faa4", + "isVisible": true, + "position": 4, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "7387b396-f4cd-4c17-96a6-40df90b66702", + "fieldMetadataId": "3530b13b-24c2-4e2b-8c8b-a041727d0049", + "viewId": "72f3a145-471c-4f38-b50a-ce975584faa4", + "isVisible": true, + "position": 5, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "25bceeff-4c52-444d-8ad8-08ee0bbcd7c2", + "fieldMetadataId": "cd90d262-aa96-40be-a9ec-638d2cc8a7cb", + "viewId": "72f3a145-471c-4f38-b50a-ce975584faa4", + "isVisible": true, + "position": 6, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "aee5c55d-7dfb-468e-b112-03deefa5804c", + "fieldMetadataId": "c3b04d6e-4644-4a6d-8949-5c2476574aa3", + "viewId": "72f3a145-471c-4f38-b50a-ce975584faa4", + "isVisible": true, + "position": 7, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "bb5413cf-7bff-4dfd-b49e-ae8ed8e5511e", + "fieldMetadataId": "90830515-2b58-4398-bdd5-cbe9408a2680", + "viewId": "72f3a145-471c-4f38-b50a-ce975584faa4", + "isVisible": true, + "position": 8, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "5b5707e2-039a-4ce7-9f4a-68dad57ba3b3", + "fieldMetadataId": "cc148bdf-b070-4bdf-9ae0-21005ce6ff77", + "viewId": "72f3a145-471c-4f38-b50a-ce975584faa4", + "isVisible": true, + "position": 9, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "67b70023-dae7-4882-8145-83b43593c45f", + "fieldMetadataId": "5aa9be29-57c9-4f2a-968d-47bb2762e383", + "viewId": "72f3a145-471c-4f38-b50a-ce975584faa4", + "isVisible": true, + "position": 10, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "objectMetadataId": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "viewFields": [ + { + "id": "61e708b5-1957-4a21-b733-0f25c3fc7464", + "fieldMetadataId": "3dddc5e7-6368-456b-9a4f-92d339d1d908", + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "6aa24c17-4882-4cbc-b5e0-f66cde59285e", + "fieldMetadataId": "4fa22829-910f-4477-ac53-b84d23aea7a4", + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "isVisible": true, + "position": 1, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "e542019b-52a5-4227-9a04-2bbb108981b3", + "fieldMetadataId": "94754291-ce50-4a58-94dc-e09090a2e24c", + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "isVisible": true, + "position": 2, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "d65d1cf4-89af-487c-b1fb-831fcaed441f", + "fieldMetadataId": "5a742a69-3ab7-409b-917b-51aff530422f", + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "isVisible": true, + "position": 3, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "acf3c8a9-6ea6-407c-932e-b7f2df57bca7", + "fieldMetadataId": "c74af810-d3a9-430c-8c1d-907585314e9f", + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "isVisible": true, + "position": 4, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "93d4b457-d9dc-45db-a5f4-236e600c0730", + "fieldMetadataId": "a7ff940a-c878-4e47-b38f-5fac3562f967", + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "isVisible": true, + "position": 5, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "4756bc08-c04b-4bbb-8849-f9361734d910", + "fieldMetadataId": "fcce470e-e050-4664-a896-b68fcdf16df7", + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "isVisible": true, + "position": 6, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "58e737d1-caf4-4756-bc65-158a0a3d07dc", + "fieldMetadataId": "b76ebb15-79f9-4c32-ba83-a6c613e53903", + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "isVisible": true, + "position": 7, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "16ea3d6f-a4a0-4ad3-bf20-7c5e308ec412", + "fieldMetadataId": "4f610fea-70c9-4c2c-97a6-c036867042ba", + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "isVisible": true, + "position": 8, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "7d96d50a-4f0c-4d8c-ab50-a56b998a81f9", + "fieldMetadataId": "eaa82229-6523-48f0-8159-ce9cfa4fb88e", + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "isVisible": true, + "position": 9, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "f8f29288-e882-4193-9acd-303793290bb0", + "fieldMetadataId": "b6e33f88-009c-4d8c-8593-0ca8c023247d", + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "isVisible": true, + "position": 10, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "9a318fc8-7ca3-4850-be04-9ce0a9842ab4", + "fieldMetadataId": "e04459a5-f37b-47d1-9afe-829e4255fd3f", + "viewId": "aabb1623-2f9d-40fe-8176-3de8e38ea388", + "isVisible": true, + "position": 11, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [], + "name": "All Survey results" + }, + { + "id": "1941b34d-6291-4406-8e24-5fe45584f195", + "objectMetadataId": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "type": "FIELDS_WIDGET", + "key": null, + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "Survey result Record Page Fields", + "viewFields": [ + { + "id": "740658f8-9ce4-4a1d-861a-91c4e8b42ec4", + "fieldMetadataId": "3dddc5e7-6368-456b-9a4f-92d339d1d908", + "viewId": "1941b34d-6291-4406-8e24-5fe45584f195", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "6351c757-0bba-4669-9e33-29b37847856c", + "fieldMetadataId": "4fa22829-910f-4477-ac53-b84d23aea7a4", + "viewId": "1941b34d-6291-4406-8e24-5fe45584f195", + "isVisible": true, + "position": 1, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "e54b01dd-aa92-4ae1-8140-4df460cfd297", + "fieldMetadataId": "94754291-ce50-4a58-94dc-e09090a2e24c", + "viewId": "1941b34d-6291-4406-8e24-5fe45584f195", + "isVisible": true, + "position": 2, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "923699ff-2d4e-4936-8b38-e028b556c3f2", + "fieldMetadataId": "5a742a69-3ab7-409b-917b-51aff530422f", + "viewId": "1941b34d-6291-4406-8e24-5fe45584f195", + "isVisible": true, + "position": 3, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "563dd881-375a-43a8-b2c6-5c4b857fad38", + "fieldMetadataId": "c74af810-d3a9-430c-8c1d-907585314e9f", + "viewId": "1941b34d-6291-4406-8e24-5fe45584f195", + "isVisible": true, + "position": 4, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "f0acc2a1-1d69-4575-88f0-f3219d2dcb67", + "fieldMetadataId": "a7ff940a-c878-4e47-b38f-5fac3562f967", + "viewId": "1941b34d-6291-4406-8e24-5fe45584f195", + "isVisible": true, + "position": 5, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "c5237b41-e986-46c1-974b-e11cf6c98f52", + "fieldMetadataId": "fcce470e-e050-4664-a896-b68fcdf16df7", + "viewId": "1941b34d-6291-4406-8e24-5fe45584f195", + "isVisible": true, + "position": 6, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "3e67865c-0de6-4801-b4e2-0657e32650ab", + "fieldMetadataId": "b76ebb15-79f9-4c32-ba83-a6c613e53903", + "viewId": "1941b34d-6291-4406-8e24-5fe45584f195", + "isVisible": true, + "position": 7, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "02f6741a-211c-4eee-aeda-a0b508287798", + "fieldMetadataId": "4f610fea-70c9-4c2c-97a6-c036867042ba", + "viewId": "1941b34d-6291-4406-8e24-5fe45584f195", + "isVisible": true, + "position": 8, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "c5c77f4b-a265-4c27-b133-d70c7326f118", + "fieldMetadataId": "eaa82229-6523-48f0-8159-ce9cfa4fb88e", + "viewId": "1941b34d-6291-4406-8e24-5fe45584f195", + "isVisible": true, + "position": 9, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "be666f2f-8c81-47f7-9dee-ee9d04911c4d", + "fieldMetadataId": "b6e33f88-009c-4d8c-8593-0ca8c023247d", + "viewId": "1941b34d-6291-4406-8e24-5fe45584f195", + "isVisible": true, + "position": 10, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + }, + { + "id": "59fd8121-66c4-4b53-957b-4b4ebdda306a", + "fieldMetadataId": "e04459a5-f37b-47d1-9afe-829e4255fd3f", + "viewId": "1941b34d-6291-4406-8e24-5fe45584f195", + "isVisible": true, + "position": 11, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "objectMetadataId": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "viewFields": [ + { + "id": "6ca0685f-aa7f-43f2-a14b-7275ec25e6eb", + "fieldMetadataId": "116e5496-8644-4de2-ba2e-6c8b9352fae6", + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "d50c1deb-cdc5-40e0-9864-6f6cde1e0375", + "fieldMetadataId": "beae987b-7ddb-49d4-968f-4dfef6a39083", + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "isVisible": true, + "position": 1, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "2fdd415d-e6fc-4233-a24a-846f7054f867", + "fieldMetadataId": "edb25594-ea31-4a99-b526-80c1ae0edd6e", + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "isVisible": true, + "position": 2, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "459687ea-8e75-4bb2-84d0-17f0886982ec", + "fieldMetadataId": "73809330-42b5-4790-81ec-fac18a3acec9", + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "isVisible": true, + "position": 3, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "13e499aa-de0b-4db6-bf57-79a7bee75051", + "fieldMetadataId": "63be169f-afcb-4b37-89fc-4ca6542367c0", + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "isVisible": true, + "position": 4, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "ff8fd089-23c2-48fe-8fdf-f036d1b0f66a", + "fieldMetadataId": "34042c3e-b91e-4496-8dd3-fb7800fd8108", + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "isVisible": true, + "position": 5, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "775421d2-b32b-45d1-9e66-b457469e8b96", + "fieldMetadataId": "250eabc1-d6f3-462f-b3a7-3a1ea7fcfeec", + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "isVisible": true, + "position": 6, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "a36fd605-c41a-457e-a826-6bcc639d0d36", + "fieldMetadataId": "d11c027b-bcdc-49bc-ab6b-87c7e35b8755", + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "isVisible": true, + "position": 7, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "d85847a9-5ae1-4710-b3c5-496b3437b5cf", + "fieldMetadataId": "d8f02374-471c-48db-a8c7-85a86a0f7c53", + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "isVisible": true, + "position": 8, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "1cdbaf7e-6fbf-4039-8e22-426eaa2e5dc2", + "fieldMetadataId": "06883dd7-75c6-4538-8d0f-1f30f6be4d9c", + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "isVisible": true, + "position": 9, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "eda1b55a-0725-4d95-99ef-b5b895be27ec", + "fieldMetadataId": "ed6f71a0-2b17-4fd9-af77-dbfb5184ee8f", + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "isVisible": true, + "position": 10, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "25d625ba-9f7d-4b66-b8d4-bc84cc1fd64e", + "fieldMetadataId": "5d3c4923-b4f0-4959-bce0-48e6be052104", + "viewId": "1c96690f-dfc9-4c40-8cf6-6903b968f8b6", + "isVisible": true, + "position": 11, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [], + "name": "All Employment Histories" + }, + { + "id": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "objectMetadataId": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "type": "FIELDS_WIDGET", + "key": null, + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "Employment History Record Page Fields", + "viewFields": [ + { + "id": "941eb37c-2901-448c-b6c2-d39358d4e178", + "fieldMetadataId": "116e5496-8644-4de2-ba2e-6c8b9352fae6", + "viewId": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "7840a53c-369f-49a0-8955-d6d2a4f1d6a1", + "fieldMetadataId": "beae987b-7ddb-49d4-968f-4dfef6a39083", + "viewId": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "isVisible": true, + "position": 1, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "47f5c51a-21b1-433b-8df5-b3b699eb37f9", + "fieldMetadataId": "edb25594-ea31-4a99-b526-80c1ae0edd6e", + "viewId": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "isVisible": true, + "position": 2, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "e46ce940-277b-4ad2-a497-42258df530b1", + "fieldMetadataId": "73809330-42b5-4790-81ec-fac18a3acec9", + "viewId": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "isVisible": true, + "position": 3, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "d3b0bfc6-0cd9-4a58-b016-501b085b74c8", + "fieldMetadataId": "63be169f-afcb-4b37-89fc-4ca6542367c0", + "viewId": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "isVisible": true, + "position": 4, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "081fbeda-6a9e-465a-8f0d-69026d817755", + "fieldMetadataId": "34042c3e-b91e-4496-8dd3-fb7800fd8108", + "viewId": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "isVisible": true, + "position": 5, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "fee2f843-156c-4340-8bc4-8684733e4a49", + "fieldMetadataId": "250eabc1-d6f3-462f-b3a7-3a1ea7fcfeec", + "viewId": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "isVisible": true, + "position": 6, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "f03a5450-f2a0-4d49-8398-66e796b87d9a", + "fieldMetadataId": "d11c027b-bcdc-49bc-ab6b-87c7e35b8755", + "viewId": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "isVisible": true, + "position": 7, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "a5c53ea3-6bf9-43ab-9866-2c564fc37334", + "fieldMetadataId": "d8f02374-471c-48db-a8c7-85a86a0f7c53", + "viewId": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "isVisible": true, + "position": 8, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "73a9aeaf-a385-486b-ba5e-418bb516b924", + "fieldMetadataId": "06883dd7-75c6-4538-8d0f-1f30f6be4d9c", + "viewId": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "isVisible": true, + "position": 9, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "a61721cf-4154-43ef-b32f-71ef8fa0a3ce", + "fieldMetadataId": "ed6f71a0-2b17-4fd9-af77-dbfb5184ee8f", + "viewId": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "isVisible": true, + "position": 10, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + }, + { + "id": "eb5aef53-e7ee-4c47-9ed1-949c62e9a0f1", + "fieldMetadataId": "5d3c4923-b4f0-4959-bce0-48e6be052104", + "viewId": "9f45c2fb-4d8a-4aa6-bd43-9ab278c03d2f", + "isVisible": true, + "position": 11, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "objectMetadataId": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "viewFields": [ + { + "id": "c81c5ec1-ea69-4a5d-bfd6-0af71f2784c5", + "fieldMetadataId": "ea484985-032b-4da9-aa58-f2878c1b616f", + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "67de3f0b-7ea6-49cc-8040-84726fb51c47", + "fieldMetadataId": "21e86098-eed0-457c-866c-4cb17cb11b4b", + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "isVisible": true, + "position": 1, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "21e09cea-4de0-4534-b05e-71bb0b715acb", + "fieldMetadataId": "098de65c-5162-40b3-8179-d74bcad0e611", + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "isVisible": true, + "position": 2, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "b469fbca-018e-45cd-9b76-b1e2a525b434", + "fieldMetadataId": "632de67a-8c5d-47d6-a104-735735a0c5b3", + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "isVisible": true, + "position": 3, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "80b3b6a5-5bf2-4bf0-80fd-01b84a8595f1", + "fieldMetadataId": "f5b274c5-52df-4432-a2b7-3eda97a6a830", + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "isVisible": true, + "position": 4, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "ef9f0b92-c3bc-4f27-8f6d-9e3fcb4cab43", + "fieldMetadataId": "21a198d3-b457-4e93-918b-702159135ac3", + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "isVisible": true, + "position": 5, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "169936f2-8238-45f0-a469-fb8ae405f7a5", + "fieldMetadataId": "59df22b5-720d-429d-a927-85dfaf93b0c2", + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "isVisible": true, + "position": 6, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "d9c00e02-fbf8-42d7-afdf-80b8b2980821", + "fieldMetadataId": "f5165e25-c5ce-4ccc-b547-ee831c4de6ff", + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "isVisible": true, + "position": 7, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "334c0297-bb73-4b07-8cd7-acaf3e1225f7", + "fieldMetadataId": "19aa48dc-c57f-49a7-aac1-a5cbbd41bb35", + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "isVisible": true, + "position": 8, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "3ab478bc-24e5-493c-b5d7-adf5ca0a4174", + "fieldMetadataId": "71da3160-935c-4fe2-b931-bc519f56344f", + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "isVisible": true, + "position": 9, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "47921e61-e1f7-4e82-91f2-64edf8ae22f2", + "fieldMetadataId": "46edb2f7-20fd-4696-b124-ef5e336ab84c", + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "isVisible": true, + "position": 10, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + }, + { + "id": "a96485c4-64a8-4694-911f-86c8eb5c5348", + "fieldMetadataId": "11576aee-6293-4ea2-9815-31c1001679aa", + "viewId": "efdbaee1-5bdf-4366-88e7-2ec9b35c2a8f", + "isVisible": true, + "position": 11, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [], + "name": "All Pet Care Agreements" + }, + { + "id": "b565bc45-7edb-47d9-a4b1-0258a2fe8322", + "objectMetadataId": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All People", + "viewFields": [ + { + "id": "ea1176ab-0a42-478f-ba8d-01fafe3f0f59", + "fieldMetadataId": "ca449ef8-9e1f-4068-a495-aa0637aaa2f5", + "viewId": "b565bc45-7edb-47d9-a4b1-0258a2fe8322", + "isVisible": true, + "position": 0, + "size": 210, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "4cb0ddf0-5d71-40d7-91cb-cf2e77d8f78d", + "fieldMetadataId": "f846b233-9ac7-4222-88d5-f06ea1d97543", + "viewId": "b565bc45-7edb-47d9-a4b1-0258a2fe8322", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": "COUNT_UNIQUE_VALUES", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "40b58d15-0e96-43f2-a21c-75107afbbbe4", + "fieldMetadataId": "45a32fb5-0ebf-4a4f-a272-3d3ea1fafb7a", + "viewId": "b565bc45-7edb-47d9-a4b1-0258a2fe8322", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "13b3e219-7177-4fe3-b8dc-baeab8042985", + "fieldMetadataId": "bb9817f1-4487-4cfc-b743-6a5cd374cd78", + "viewId": "b565bc45-7edb-47d9-a4b1-0258a2fe8322", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "baf18dd8-f048-4655-8128-d85e948ec944", + "fieldMetadataId": "7fb5b899-ee4a-43db-ae10-36f9688b130b", + "viewId": "b565bc45-7edb-47d9-a4b1-0258a2fe8322", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": "PERCENTAGE_EMPTY", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "3b879b9e-bd67-4227-9241-818fde095575", + "fieldMetadataId": "18f17d62-517d-4619-b4f6-391bd54a63ad", + "viewId": "b565bc45-7edb-47d9-a4b1-0258a2fe8322", + "isVisible": true, + "position": 5, + "size": 150, + "aggregateOperation": "MIN", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "fb2e4aa8-1225-45b8-a788-e86f12eadfc9", + "fieldMetadataId": "c38ed21b-9e25-450e-a627-1085249ad83a", + "viewId": "b565bc45-7edb-47d9-a4b1-0258a2fe8322", + "isVisible": true, + "position": 6, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "7d1c318d-461c-43da-9c4c-45f6575b3e20", + "fieldMetadataId": "fa1ea693-2dd8-4ce5-8f18-ee29709d2142", + "viewId": "b565bc45-7edb-47d9-a4b1-0258a2fe8322", + "isVisible": true, + "position": 7, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "cb8599ce-8af7-4382-ae30-de875eea0192", + "fieldMetadataId": "31b75aea-4480-4bcb-a721-c7e865779d81", + "viewId": "b565bc45-7edb-47d9-a4b1-0258a2fe8322", + "isVisible": true, + "position": 8, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "b26a928f-742d-4de5-bb2f-b0eedfefe618", + "fieldMetadataId": "e7c52f56-410c-457d-8fe3-7c07b373d1a5", + "viewId": "b565bc45-7edb-47d9-a4b1-0258a2fe8322", + "isVisible": true, + "position": 9, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "b19183db-da5f-4d05-8507-0097ab7c7267", + "objectMetadataId": "919364e3-e0b3-4ea3-9e9b-07001572881c", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Tasks", + "viewFields": [ + { + "id": "eecec4e1-e231-4d43-9714-e8dd33354790", + "fieldMetadataId": "7f90d9d3-0e7a-4392-bc59-535efbe5ff3c", + "viewId": "b19183db-da5f-4d05-8507-0097ab7c7267", + "isVisible": true, + "position": 0, + "size": 210, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "3056153a-7347-48e4-ac0b-8c51d1aac433", + "fieldMetadataId": "f7bf94fe-1cbc-42e0-8b2c-0e8ef1ed8c64", + "viewId": "b19183db-da5f-4d05-8507-0097ab7c7267", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "dee1e64b-062c-4be8-b9b8-379035303a8d", + "fieldMetadataId": "017ad6e6-1e18-47fc-abe3-5c332eca430f", + "viewId": "b19183db-da5f-4d05-8507-0097ab7c7267", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "ea191b55-de84-4ca4-bca7-f96c2c18ee2b", + "fieldMetadataId": "e7b03c49-574d-4e0c-9999-96a06e00441d", + "viewId": "b19183db-da5f-4d05-8507-0097ab7c7267", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "bb16b110-0f53-48f8-96a3-b5bba08d40e3", + "fieldMetadataId": "bdb36854-d68b-472c-8b10-c4f484b95f00", + "viewId": "b19183db-da5f-4d05-8507-0097ab7c7267", + "isVisible": true, + "position": 5, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "e253eebc-ac0a-4957-8da1-7aaf0429e723", + "fieldMetadataId": "5c19ca1f-2590-4fb0-8068-77808593fe8d", + "viewId": "b19183db-da5f-4d05-8507-0097ab7c7267", + "isVisible": true, + "position": 6, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "9d899cb4-23df-4c85-86a1-0203d919e301", + "fieldMetadataId": "15cffcf2-ed38-4ee1-956a-d8bc9d2bef16", + "viewId": "b19183db-da5f-4d05-8507-0097ab7c7267", + "isVisible": true, + "position": 7, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "80b7a1e2-522f-424b-9128-aabd2c5728f2", + "fieldMetadataId": "2d31c009-a760-4817-80c9-060998d14ba6", + "viewId": "b19183db-da5f-4d05-8507-0097ab7c7267", + "isVisible": true, + "position": 8, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "dca8802b-ca95-4eb3-9be7-04560b981432", + "objectMetadataId": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Task Targets", + "viewFields": [ + { + "id": "1742a743-0c88-4fe4-ae7b-88d3c04dea73", + "fieldMetadataId": "2950701d-9a1d-4217-89d8-8b075cad6ec0", + "viewId": "dca8802b-ca95-4eb3-9be7-04560b981432", + "isVisible": true, + "position": 0, + "size": 210, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "9b236589-424d-4a5f-9c6c-dd25d62bdd6a", + "fieldMetadataId": "40044cb8-94ea-4468-92d1-7cd0c2aaf748", + "viewId": "dca8802b-ca95-4eb3-9be7-04560b981432", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "b38b7462-eb40-4e2c-81bd-5f74ba72f089", + "fieldMetadataId": "61d23471-5a4f-442e-ac77-98d2b4322b61", + "viewId": "dca8802b-ca95-4eb3-9be7-04560b981432", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "ae4e9104-6818-4cb0-bf23-1afbcf90d131", + "fieldMetadataId": "d7f6546e-0759-456d-a45d-abf106898378", + "viewId": "dca8802b-ca95-4eb3-9be7-04560b981432", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "e37425c9-9d5a-4ddf-b3a5-08808a015cf7", + "fieldMetadataId": "be913b69-a9db-4fb6-b803-9be42723ca99", + "viewId": "dca8802b-ca95-4eb3-9be7-04560b981432", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "objectMetadataId": "64d19806-f11a-493e-af13-2059861c8139", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Timeline Activities", + "viewFields": [ + { + "id": "4834d531-041d-4a40-ac45-ec522059a044", + "fieldMetadataId": "581495fa-a57c-4332-87cc-1850e3e7be1e", + "viewId": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "isVisible": true, + "position": 0, + "size": 210, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "2343486c-9c2a-4404-8d64-a1a3d81f6b5b", + "fieldMetadataId": "583b91a0-07d8-4a57-9fd6-7e5411b4c79b", + "viewId": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "9279fa3d-6f94-4914-afbe-6dd4f29f12dd", + "fieldMetadataId": "b2727db1-04db-4642-a8cb-27a0df069005", + "viewId": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "ecc91f5a-248a-488a-8e12-b41c1d14bdb6", + "fieldMetadataId": "4d8e1cd3-2778-48fd-b53a-0006430df933", + "viewId": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "22b67fbf-4ddb-439f-bac2-2b76b623223c", + "fieldMetadataId": "2f2f768d-e4e1-4efe-8628-5606abef4e4c", + "viewId": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "3c659fe9-a5a2-4c99-a4fd-d2d30dffc263", + "fieldMetadataId": "0e56d6a8-35e4-4591-a69d-eea8ee702b5c", + "viewId": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "isVisible": true, + "position": 5, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "755931ff-d18f-4214-933c-be379ea592b4", + "fieldMetadataId": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "viewId": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "isVisible": true, + "position": 6, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "95e1b7bd-35c5-4d74-9a4d-67890c9aab60", + "fieldMetadataId": "96989642-cbee-49e9-97ee-9dcbce6ce61a", + "viewId": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "isVisible": true, + "position": 7, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "b1fc2020-e992-4732-8dd5-d4113de8a381", + "fieldMetadataId": "94ddf355-e729-4a37-8558-5b50ced499d0", + "viewId": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "isVisible": true, + "position": 8, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "172e0965-5707-4660-8715-79ce20d3c837", + "fieldMetadataId": "fbec850c-ca94-4696-8a05-bf2aa2aa43ed", + "viewId": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "isVisible": true, + "position": 9, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "561bccde-c7f9-4cb1-b65d-e9873831b732", + "fieldMetadataId": "a3e3b5bb-869e-4f85-a198-2555b5489db8", + "viewId": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "isVisible": true, + "position": 10, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "455ee2ff-a059-439d-9728-907d2864ace7", + "fieldMetadataId": "9394ad17-cd2e-4473-87e7-3208eb3ad5d3", + "viewId": "a4e22630-4fd8-462b-b0bf-4c0756bf38d3", + "isVisible": true, + "position": 11, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "fbcbcef2-9812-44ee-b4de-3ea16dbadc18", + "objectMetadataId": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", + "type": "TABLE", + "key": "INDEX", + "icon": "IconTable", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Workflows", + "viewFields": [ + { + "id": "dd99a4a8-9e64-4f29-869d-94477e384fcb", + "fieldMetadataId": "f301e223-384e-4a56-b80e-8b84f733ca3b", + "viewId": "fbcbcef2-9812-44ee-b4de-3ea16dbadc18", + "isVisible": true, + "position": 0, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "7ad88fa6-e552-4f23-9bfc-81f4d98d672a", + "fieldMetadataId": "8e2f3d90-866d-4b5f-b9b3-f96822010533", + "viewId": "fbcbcef2-9812-44ee-b4de-3ea16dbadc18", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "a9c93bca-45a0-4737-a264-bcef07636981", + "fieldMetadataId": "a2b6e0eb-1319-488a-8a34-0a49d3a344cc", + "viewId": "fbcbcef2-9812-44ee-b4de-3ea16dbadc18", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "07e2096b-11f2-4b1b-b0ca-f2682f4941e8", + "fieldMetadataId": "3020144e-007d-40bf-b06f-e1357078d3f9", + "viewId": "fbcbcef2-9812-44ee-b4de-3ea16dbadc18", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "e6997071-1749-44f3-b019-cb91bd3fbe5a", + "fieldMetadataId": "0a87b634-8df5-471e-a593-9722294e5367", + "viewId": "fbcbcef2-9812-44ee-b4de-3ea16dbadc18", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "8d511a93-dc9c-4247-b211-4b465b770512", + "fieldMetadataId": "19b372d2-98a4-4bb1-9ba7-6d326162ec1a", + "viewId": "fbcbcef2-9812-44ee-b4de-3ea16dbadc18", + "isVisible": true, + "position": 5, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "d4e6ffc1-e8e1-4132-a4b1-71d1ec6fa6ca", + "objectMetadataId": "613d9797-95db-4eaa-99b2-1814b529f26b", + "type": "TABLE", + "key": "INDEX", + "icon": "IconPlayerPlay", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "Runs", + "viewFields": [ + { + "id": "5bdc095b-6f38-483e-9e92-5499c586efaf", + "fieldMetadataId": "d3b34ccf-3a54-46cd-ad2f-d37479807295", + "viewId": "d4e6ffc1-e8e1-4132-a4b1-71d1ec6fa6ca", + "isVisible": true, + "position": 0, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "447e56ee-dd94-4a66-b748-b9df23200b1f", + "fieldMetadataId": "1554dabd-cb9c-469a-9f0c-9c04d8d026bf", + "viewId": "d4e6ffc1-e8e1-4132-a4b1-71d1ec6fa6ca", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "fe683bbd-ee55-448f-8012-2b41fa520736", + "fieldMetadataId": "029a4058-0a5f-41fa-82ad-3fd8bb8e60ad", + "viewId": "d4e6ffc1-e8e1-4132-a4b1-71d1ec6fa6ca", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "e4dae4df-94a9-484c-b9e8-bf3e5943b218", + "objectMetadataId": "54bf871f-e183-471f-a66c-309507af74da", + "type": "TABLE", + "key": "INDEX", + "icon": "IconRestore", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "Versions", + "viewFields": [ + { + "id": "c8c83760-e31d-4baa-8f76-2441fe74a419", + "fieldMetadataId": "d4edcdea-25ae-48cc-8423-c7a456e92ebb", + "viewId": "e4dae4df-94a9-484c-b9e8-bf3e5943b218", + "isVisible": true, + "position": 0, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "b132342d-2a2c-4f75-9b8d-d838897ba3e2", + "fieldMetadataId": "b53ff967-d031-4948-8511-244de53d3e1c", + "viewId": "e4dae4df-94a9-484c-b9e8-bf3e5943b218", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "6a782fad-c5f8-4fdd-a028-6bc8a9ab339b", + "fieldMetadataId": "b5c76c44-5aea-418c-b9df-0d6575a3a4c7", + "viewId": "e4dae4df-94a9-484c-b9e8-bf3e5943b218", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "c346f2f6-f227-4bf9-bbe7-c9a66e764f6e", + "fieldMetadataId": "8283c602-19de-4212-a860-67bac80041d5", + "viewId": "e4dae4df-94a9-484c-b9e8-bf3e5943b218", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "147f5472-2cf5-4299-a51c-acbaa53c3a3c", + "fieldMetadataId": "4686750d-3e69-4f1d-a191-360e627e2f60", + "viewId": "e4dae4df-94a9-484c-b9e8-bf3e5943b218", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "679e7a05-4562-4f42-8920-d5ef82d5cb5d", + "objectMetadataId": "e6723828-4d1e-4780-a758-a7996e788b0a", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "All Workspace Members", + "viewFields": [ + { + "id": "277fa976-07e8-4aa7-9ebe-ef0e3d2e70f8", + "fieldMetadataId": "5cb19fe2-0520-4dec-bc24-2e16a2dc9588", + "viewId": "679e7a05-4562-4f42-8920-d5ef82d5cb5d", + "isVisible": true, + "position": 0, + "size": 210, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "35fc6de3-1b07-44b4-80ee-460bef3c7605", + "fieldMetadataId": "40127007-983c-487e-aad4-7931b5388a07", + "viewId": "679e7a05-4562-4f42-8920-d5ef82d5cb5d", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "6f860a03-0442-4d49-b815-6e69c914140a", + "fieldMetadataId": "33c895f2-e6ec-4d2f-b0c0-391e041c04a4", + "viewId": "679e7a05-4562-4f42-8920-d5ef82d5cb5d", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "fe84a714-f182-4851-8e41-716eba2ae510", + "fieldMetadataId": "70156151-d92a-49ab-8f18-fb1ede8ccf09", + "viewId": "679e7a05-4562-4f42-8920-d5ef82d5cb5d", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "objectMetadataId": "532838bd-be8c-40e7-8344-c1ae38c28361", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "viewFields": [ + { + "id": "76b7232b-236d-4a5e-add9-758f1a16e999", + "fieldMetadataId": "5c5a439c-f4e4-458b-b0a4-d496a3b0e71a", + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "ec84abdf-6c65-4077-acbe-421a9bb10a3f", + "fieldMetadataId": "804861ca-679b-41ff-97f1-86aefbdc47fe", + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "isVisible": true, + "position": 1, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "05a6ca59-19e0-49d9-a185-09f1f29f842c", + "fieldMetadataId": "348fc208-0205-4b01-8d48-a1e2733bd4f2", + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "isVisible": true, + "position": 2, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "3a105367-5e44-49b1-9aff-72e2d65c21ca", + "fieldMetadataId": "a7d4422a-989f-43c7-b1be-37ead1806bed", + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "isVisible": true, + "position": 3, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "0cced348-9bf2-4344-a33e-6625f813acde", + "fieldMetadataId": "a3a30a4d-b0a3-4fe8-8994-9b26ad0ff30f", + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "isVisible": true, + "position": 4, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "70754215-f05a-4383-b8f7-c1165f27f2aa", + "fieldMetadataId": "5760a2ed-5811-421b-b5b9-5b8f2450aa2d", + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "isVisible": true, + "position": 5, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "9703b6cd-1995-4cd9-9925-db2457a4cc0b", + "fieldMetadataId": "c3a364bb-a0d5-433d-937f-e291179b994a", + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "isVisible": true, + "position": 6, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "2d6937d7-85d3-4506-9bf4-eb78b0cfaeb1", + "fieldMetadataId": "2366a1fb-80e5-4ec3-89e0-a86d3ffc0f74", + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "isVisible": true, + "position": 7, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "b637dd33-12b3-462f-8efa-43866fc1b470", + "fieldMetadataId": "c9a81cb8-d1a2-4091-8637-60b79c71813a", + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "isVisible": true, + "position": 8, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "b24633b8-5ca0-4a80-ac25-2f018b69dde7", + "fieldMetadataId": "1e3199b0-d19c-4e51-8f3e-fb1471febb98", + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "isVisible": true, + "position": 9, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "4c2c1a2a-0f37-45cc-9539-32037221b1b8", + "fieldMetadataId": "23d12b1b-64a2-4c69-9fed-f9cb33cb05a7", + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "isVisible": true, + "position": 10, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "b0d48794-913b-421e-8f4b-03518a32207c", + "fieldMetadataId": "e1c6b2d8-889e-49a0-8343-1df45b593641", + "viewId": "d7acbb01-5896-4cf3-9a8f-1da3fc0ccaad", + "isVisible": true, + "position": 11, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [], + "name": "All Rockets" + }, + { + "id": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "objectMetadataId": "532838bd-be8c-40e7-8344-c1ae38c28361", + "type": "FIELDS_WIDGET", + "key": null, + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "Rocket Record Page Fields", + "viewFields": [ + { + "id": "7786f6a4-6c4b-4534-bb54-43191f9c0780", + "fieldMetadataId": "5c5a439c-f4e4-458b-b0a4-d496a3b0e71a", + "viewId": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "df374450-5951-4984-ae53-dbef151bcb4d", + "fieldMetadataId": "804861ca-679b-41ff-97f1-86aefbdc47fe", + "viewId": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "isVisible": true, + "position": 1, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "d2f02a24-e4ac-438f-a309-c09859981ac2", + "fieldMetadataId": "348fc208-0205-4b01-8d48-a1e2733bd4f2", + "viewId": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "isVisible": true, + "position": 2, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "a2752996-e045-48eb-9d12-b178fbac9efd", + "fieldMetadataId": "a7d4422a-989f-43c7-b1be-37ead1806bed", + "viewId": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "isVisible": true, + "position": 3, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "88688b5e-f132-4551-a8dd-6bbfeaad71eb", + "fieldMetadataId": "a3a30a4d-b0a3-4fe8-8994-9b26ad0ff30f", + "viewId": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "isVisible": true, + "position": 4, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "f7ccdd6a-b378-4abd-87dd-a122eb2da838", + "fieldMetadataId": "5760a2ed-5811-421b-b5b9-5b8f2450aa2d", + "viewId": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "isVisible": true, + "position": 5, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "88843603-740b-476f-ac0a-3730e482a28d", + "fieldMetadataId": "c3a364bb-a0d5-433d-937f-e291179b994a", + "viewId": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "isVisible": true, + "position": 6, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "ee007564-a038-443a-9349-07b07f2247d2", + "fieldMetadataId": "2366a1fb-80e5-4ec3-89e0-a86d3ffc0f74", + "viewId": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "isVisible": true, + "position": 7, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "d9ad7172-81f5-435d-ac90-8ba9e3da29d6", + "fieldMetadataId": "c9a81cb8-d1a2-4091-8637-60b79c71813a", + "viewId": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "isVisible": true, + "position": 8, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "4a520693-8367-4aa2-b309-b272a7205934", + "fieldMetadataId": "1e3199b0-d19c-4e51-8f3e-fb1471febb98", + "viewId": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "isVisible": true, + "position": 9, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "4aeb3dbc-77fc-4e6e-97fa-6b5c9f9be1e0", + "fieldMetadataId": "23d12b1b-64a2-4c69-9fed-f9cb33cb05a7", + "viewId": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "isVisible": true, + "position": 10, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + }, + { + "id": "05393902-2a4a-4803-8093-0044b41e6f88", + "fieldMetadataId": "e1c6b2d8-889e-49a0-8343-1df45b593641", + "viewId": "90172bfa-dc11-4a57-9512-3aadd0a42294", + "isVisible": true, + "position": 11, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [] + }, + { + "id": "05e9c242-42b1-4dee-82d2-959f5577484f", + "objectMetadataId": "6b348756-2824-4eff-ade4-4129abe625f8", + "type": "TABLE", + "key": "INDEX", + "icon": "IconList", + "position": 0, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": null, + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "viewFields": [ + { + "id": "30ff8d88-f73a-43ed-979f-b32015ed4bf9", + "fieldMetadataId": "32a344f6-f9c8-4288-8707-b11f22e1d99b", + "viewId": "05e9c242-42b1-4dee-82d2-959f5577484f", + "isVisible": true, + "position": 0, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "e6062200-b8d4-4c78-b1e1-a0ff462b5c83", + "fieldMetadataId": "2a944f7a-f105-43a5-9736-0d3f9924f2e5", + "viewId": "05e9c242-42b1-4dee-82d2-959f5577484f", + "isVisible": true, + "position": 1, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "4e0eb07f-8aae-4e49-a9db-00d3a4279936", + "fieldMetadataId": "30faf848-06fc-4eaf-9e44-23375651aec1", + "viewId": "05e9c242-42b1-4dee-82d2-959f5577484f", + "isVisible": true, + "position": 2, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "4ce0a9e7-539d-4c18-99f5-c8e16e34d968", + "fieldMetadataId": "090ea353-4dfb-40f2-9595-cc0664f02ffd", + "viewId": "05e9c242-42b1-4dee-82d2-959f5577484f", + "isVisible": true, + "position": 3, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "f14d365e-9533-4805-9ca4-8ff324750974", + "fieldMetadataId": "86cdb011-25bc-4d99-b8a3-b8fcc15eec4c", + "viewId": "05e9c242-42b1-4dee-82d2-959f5577484f", + "isVisible": true, + "position": 4, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "3ddd47f4-5fcf-44b6-a7a8-b810aeed057a", + "fieldMetadataId": "3530b13b-24c2-4e2b-8c8b-a041727d0049", + "viewId": "05e9c242-42b1-4dee-82d2-959f5577484f", + "isVisible": true, + "position": 5, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "a10a0f79-0a4c-4bd9-bf49-b12ed0c6b96a", + "fieldMetadataId": "cd90d262-aa96-40be-a9ec-638d2cc8a7cb", + "viewId": "05e9c242-42b1-4dee-82d2-959f5577484f", + "isVisible": true, + "position": 6, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "6b238ae7-e8ee-4a7e-9f24-cc18e1561481", + "fieldMetadataId": "c3b04d6e-4644-4a6d-8949-5c2476574aa3", + "viewId": "05e9c242-42b1-4dee-82d2-959f5577484f", + "isVisible": true, + "position": 7, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "8ea505f9-581f-4334-a26e-081241a4a215", + "fieldMetadataId": "90830515-2b58-4398-bdd5-cbe9408a2680", + "viewId": "05e9c242-42b1-4dee-82d2-959f5577484f", + "isVisible": true, + "position": 8, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "07187794-acb4-48a5-86bc-85f93c762c0d", + "fieldMetadataId": "cc148bdf-b070-4bdf-9ae0-21005ce6ff77", + "viewId": "05e9c242-42b1-4dee-82d2-959f5577484f", + "isVisible": true, + "position": 9, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "4ba2e356-2e7a-431d-80cb-6db60493d11a", + "fieldMetadataId": "5aa9be29-57c9-4f2a-968d-47bb2762e383", + "viewId": "05e9c242-42b1-4dee-82d2-959f5577484f", + "isVisible": true, + "position": 10, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + }, + { + "id": "01d5f6e0-77f1-475b-89ac-e15c25a62e80", + "fieldMetadataId": "1f9f3c79-d695-4802-bc94-aeed27a3e018", + "viewId": "05e9c242-42b1-4dee-82d2-959f5577484f", + "isVisible": true, + "position": 11, + "size": 180, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [], + "viewFieldGroups": [], + "name": "All Pets" + }, + { + "id": "1091edb1-d86f-43b4-8754-b5d6ca7e197a", + "objectMetadataId": "919364e3-e0b3-4ea3-9e9b-07001572881c", + "type": "KANBAN", + "key": null, + "icon": "IconLayoutKanban", + "position": 1, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": "f7bf94fe-1cbc-42e0-8b2c-0e8ef1ed8c64", + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "By Status", + "viewFields": [ + { + "id": "e2543c2d-c174-4002-bd2e-9a3dd94da499", + "fieldMetadataId": "5c19ca1f-2590-4fb0-8068-77808593fe8d", + "viewId": "1091edb1-d86f-43b4-8754-b5d6ca7e197a", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "62640791-af0b-47bb-9e41-8dd82b1135ff", + "fieldMetadataId": "2d31c009-a760-4817-80c9-060998d14ba6", + "viewId": "1091edb1-d86f-43b4-8754-b5d6ca7e197a", + "isVisible": true, + "position": 6, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "ed3290d3-e5a8-421d-a421-42fbeb0fdb4d", + "fieldMetadataId": "7f90d9d3-0e7a-4392-bc59-535efbe5ff3c", + "viewId": "1091edb1-d86f-43b4-8754-b5d6ca7e197a", + "isVisible": true, + "position": 0, + "size": 210, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "3d2b1da7-9e4e-4ff0-ad67-855e4eb18626", + "fieldMetadataId": "f7bf94fe-1cbc-42e0-8b2c-0e8ef1ed8c64", + "viewId": "1091edb1-d86f-43b4-8754-b5d6ca7e197a", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "b159056b-c0be-4211-82c2-4c20a0abf0e6", + "fieldMetadataId": "bdb36854-d68b-472c-8b10-c4f484b95f00", + "viewId": "1091edb1-d86f-43b4-8754-b5d6ca7e197a", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [ + { + "id": "036b3260-26b6-4a83-9ce5-1edcddb7d843", + "isVisible": true, + "fieldValue": "IN_PROGRESS", + "position": 1, + "viewId": "1091edb1-d86f-43b4-8754-b5d6ca7e197a", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "571a399a-6da3-4079-802e-0c9bda47f9e9", + "isVisible": true, + "fieldValue": "DONE", + "position": 2, + "viewId": "1091edb1-d86f-43b4-8754-b5d6ca7e197a", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "ec481224-a7db-4919-8c91-cda2b2633504", + "isVisible": true, + "fieldValue": "TODO", + "position": 0, + "viewId": "1091edb1-d86f-43b4-8754-b5d6ca7e197a", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFieldGroups": [] + }, + { + "id": "aca11eef-8a82-4852-a52e-f4c5742f4c1e", + "objectMetadataId": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "type": "KANBAN", + "key": null, + "icon": "IconLayoutKanban", + "position": 2, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": "SUM", + "kanbanAggregateOperationFieldMetadataId": "6b13a3ed-cd1c-477e-ba31-6db7b5062836", + "mainGroupByFieldMetadataId": "35115cd4-1211-43d1-9162-21ae53d63d03", + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "By Stage", + "viewFields": [ + { + "id": "a562a715-0752-4014-8486-24a9dc2758cf", + "fieldMetadataId": "1460b2b7-d1f9-423f-92d3-3d99106b886c", + "viewId": "aca11eef-8a82-4852-a52e-f4c5742f4c1e", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "8ef5cc43-38e2-4201-85f0-932a1b76833d", + "fieldMetadataId": "495a7d81-45b7-4cd2-8f8b-f01873fd78c6", + "viewId": "aca11eef-8a82-4852-a52e-f4c5742f4c1e", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "f59df772-2838-4463-854f-7925d140a46b", + "fieldMetadataId": "6550d04e-1509-4f3d-946d-ba6694eb8605", + "viewId": "aca11eef-8a82-4852-a52e-f4c5742f4c1e", + "isVisible": true, + "position": 5, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "89171b4e-81b7-4b84-b0b5-ac9379bb10c1", + "fieldMetadataId": "73870ebe-aaa9-4a39-8487-5de19361629b", + "viewId": "aca11eef-8a82-4852-a52e-f4c5742f4c1e", + "isVisible": true, + "position": 0, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "1bbd54df-168b-4865-a453-fdee89b0d2e5", + "fieldMetadataId": "6b13a3ed-cd1c-477e-ba31-6db7b5062836", + "viewId": "aca11eef-8a82-4852-a52e-f4c5742f4c1e", + "isVisible": true, + "position": 1, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "1e5f9389-8c1e-4136-bbb0-8d68d96ba595", + "fieldMetadataId": "84911608-039f-4baa-8aeb-97b5d035298c", + "viewId": "aca11eef-8a82-4852-a52e-f4c5742f4c1e", + "isVisible": true, + "position": 2, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [ + { + "id": "c2839a1c-9760-4c9f-a175-72c9a0fb3823", + "isVisible": true, + "fieldValue": "NEW", + "position": 0, + "viewId": "aca11eef-8a82-4852-a52e-f4c5742f4c1e", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "acde23ac-f3e5-45d0-9af9-45edaf209492", + "isVisible": true, + "fieldValue": "SCREENING", + "position": 1, + "viewId": "aca11eef-8a82-4852-a52e-f4c5742f4c1e", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "0fda98df-83e6-410c-a4ef-20042568271c", + "isVisible": true, + "fieldValue": "MEETING", + "position": 2, + "viewId": "aca11eef-8a82-4852-a52e-f4c5742f4c1e", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "d0e077dd-667f-4a59-a0a3-9a5774510059", + "isVisible": true, + "fieldValue": "PROPOSAL", + "position": 3, + "viewId": "aca11eef-8a82-4852-a52e-f4c5742f4c1e", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "9a5a8c16-f5fa-4b53-a8b2-0440e7733cbc", + "isVisible": true, + "fieldValue": "CUSTOMER", + "position": 4, + "viewId": "aca11eef-8a82-4852-a52e-f4c5742f4c1e", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFieldGroups": [] + }, + { + "id": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "objectMetadataId": "919364e3-e0b3-4ea3-9e9b-07001572881c", + "type": "TABLE", + "key": null, + "icon": "IconUserCircle", + "position": 2, + "isCompact": false, + "openRecordIn": "SIDE_PANEL", + "kanbanAggregateOperation": null, + "kanbanAggregateOperationFieldMetadataId": null, + "mainGroupByFieldMetadataId": "f7bf94fe-1cbc-42e0-8b2c-0e8ef1ed8c64", + "shouldHideEmptyGroups": false, + "anyFieldFilterValue": null, + "calendarFieldMetadataId": null, + "calendarLayout": null, + "visibility": "WORKSPACE", + "createdByUserWorkspaceId": null, + "name": "Assigned to Me", + "viewFields": [ + { + "id": "66776245-634f-4dae-8e78-12dd2293a6b5", + "fieldMetadataId": "e7b03c49-574d-4e0c-9999-96a06e00441d", + "viewId": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "isVisible": true, + "position": 4, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "a7294422-c4ae-4c06-95c8-237199de82ce", + "fieldMetadataId": "bdb36854-d68b-472c-8b10-c4f484b95f00", + "viewId": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "isVisible": true, + "position": 5, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "4c77ce1f-55e5-4a86-9488-dd74cda3cdd4", + "fieldMetadataId": "5c19ca1f-2590-4fb0-8068-77808593fe8d", + "viewId": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "isVisible": true, + "position": 6, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "37295b11-2d2f-4cf8-a288-86d19c98a7a5", + "fieldMetadataId": "15cffcf2-ed38-4ee1-956a-d8bc9d2bef16", + "viewId": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "isVisible": true, + "position": 7, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "cca35158-9174-4911-9380-172cafa27297", + "fieldMetadataId": "2d31c009-a760-4817-80c9-060998d14ba6", + "viewId": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "isVisible": true, + "position": 8, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "d656bc13-77ae-4bdc-a723-7e2cfbccb553", + "fieldMetadataId": "7f90d9d3-0e7a-4392-bc59-535efbe5ff3c", + "viewId": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "isVisible": true, + "position": 0, + "size": 210, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "5dfeef1e-06cc-40af-a7e3-3d1cffe3909c", + "fieldMetadataId": "017ad6e6-1e18-47fc-abe3-5c332eca430f", + "viewId": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "isVisible": true, + "position": 3, + "size": 150, + "aggregateOperation": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilters": [ + { + "id": "74c305af-bb4a-43d5-843e-69bed85322bd", + "fieldMetadataId": "5c19ca1f-2590-4fb0-8068-77808593fe8d", + "operand": "IS", + "value": "{\"isCurrentWorkspaceMemberSelected\":true,\"selectedRecordIds\":[]}", + "viewFilterGroupId": null, + "positionInViewFilterGroup": null, + "subFieldName": null, + "viewId": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFilterGroups": [], + "viewSorts": [], + "viewGroups": [ + { + "id": "190ea3ef-92e0-43e5-9bb3-d660b44db6a5", + "isVisible": true, + "fieldValue": "DONE", + "position": 2, + "viewId": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "55f268d9-0ea7-4cf2-a37b-3224350d657e", + "isVisible": true, + "fieldValue": "", + "position": 3, + "viewId": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "27390aff-a5ca-4359-9bdb-feaf93ceda87", + "isVisible": true, + "fieldValue": "TODO", + "position": 0, + "viewId": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + }, + { + "id": "c478ef93-1ffd-4867-9a83-ce9cf89b245d", + "isVisible": true, + "fieldValue": "IN_PROGRESS", + "position": 1, + "viewId": "7e2d46e0-f677-4768-98f2-6f95536e2650", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "deletedAt": null + } + ], + "viewFieldGroups": [] + } +]; diff --git a/packages/twenty-front/src/testing/mock-data/view-fields.ts b/packages/twenty-front/src/testing/mock-data/view-fields.ts deleted file mode 100644 index a1cccbbcce..0000000000 --- a/packages/twenty-front/src/testing/mock-data/view-fields.ts +++ /dev/null @@ -1,411 +0,0 @@ -import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; -import { mockedViewsData } from './views'; - -const companyObjectMetadata = getMockObjectMetadataItemOrThrow('company'); - -const personObjectMetadata = getMockObjectMetadataItemOrThrow('person'); - -const opportunityObjectMetadata = - getMockObjectMetadataItemOrThrow('opportunity'); - -export const mockedViewFieldsData = [ - // Companies - { - id: '79035310-e955-4986-a4a4-73f9d9949c6a', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'name', - )?.id, - viewId: mockedViewsData[0].id, - position: 0, - isVisible: true, - size: 180, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '2a96bbc8-d86d-439a-8e50-4b07ebd27750', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'domainName', - )?.id, - viewId: mockedViewsData[0].id, - position: 1, - isVisible: true, - size: 100, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '0c1b4c7b-6a3d-4fb0-bf2b-5d7c8fb844ed', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'accountOwner', - )?.id, - viewId: mockedViewsData[0].id, - position: 2, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: 'cc7f9560-32b5-4b82-8fd9-b05fe77c8cf7', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'createdAt', - )?.id, - viewId: mockedViewsData[0].id, - position: 3, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '3de4d078-3396-4480-be2d-6f3b1a228b0d', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'employees', - )?.id, - viewId: mockedViewsData[0].id, - position: 4, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '4650c8fb-0f1e-4342-88dc-adedae1445f9', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'linkedinLink', - )?.id, - viewId: mockedViewsData[0].id, - position: 5, - isVisible: true, - size: 170, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '727430bf-6ff8-4c85-9828-cbe72ac0fc27', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'address', - )?.id, - viewId: mockedViewsData[0].id, - position: 6, - isVisible: true, - size: 170, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - - // Companies v2 - { - id: '79035310-e955-4986-a4a4-73f9d9949c6a', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'name', - )?.id, - viewId: mockedViewsData[3].id, - position: 0, - isVisible: true, - size: 180, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '2a96bbc8-d86d-439a-8e50-4b07ebd27750', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'domainName', - )?.id, - viewId: mockedViewsData[3].id, - position: 1, - isVisible: true, - size: 100, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '0c1b4c7b-6a3d-4fb0-bf2b-5d7c8fb844ed', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'accountOwner', - )?.id, - viewId: mockedViewsData[3].id, - position: 2, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: 'cc7f9560-32b5-4b82-8fd9-b05fe77c8cf7', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'createdAt', - )?.id, - viewId: mockedViewsData[3].id, - position: 3, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '3de4d078-3396-4480-be2d-6f3b1a228b0d', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'employees', - )?.id, - viewId: mockedViewsData[3].id, - position: 4, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '4650c8fb-0f1e-4342-88dc-adedae1445f9', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'linkedinLink', - )?.id, - viewId: mockedViewsData[3].id, - position: 5, - isVisible: true, - size: 170, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '727430bf-6ff8-4c85-9828-cbe72ac0fc27', - fieldMetadataId: companyObjectMetadata?.fields.find( - (field) => field.name === 'address', - )?.id, - viewId: mockedViewsData[3].id, - position: 6, - isVisible: true, - size: 170, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - - // People - { - id: '28894146-4fde-4a16-a9ca-1a31b5b788b4', - fieldMetadataId: personObjectMetadata?.fields.find( - (field) => field.name === 'name', - )?.id, - viewId: mockedViewsData[1].id, - position: 0, - isVisible: true, - size: 210, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: 'e1e24864-8601-4cd8-8a63-09c1285f2e39', - fieldMetadataId: personObjectMetadata?.fields.find( - (field) => field.name === 'emails', - )?.id, - viewId: mockedViewsData[1].id, - position: 1, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '5a1df716-7211-445a-9f16-9783a00998a7', - fieldMetadataId: personObjectMetadata?.fields.find( - (field) => field.name === 'company', - )?.id, - viewId: mockedViewsData[1].id, - position: 2, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: 'a6e1197a-7e84-4d92-ace2-367c0bc46c49', - fieldMetadataId: personObjectMetadata?.fields.find( - (field) => field.name === 'phones', - )?.id, - viewId: mockedViewsData[1].id, - position: 3, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: 'c9343097-d14b-4559-a5fa-626c1527d39f', - fieldMetadataId: personObjectMetadata?.fields.find( - (field) => field.name === 'createdAt', - )?.id, - viewId: mockedViewsData[1].id, - position: 4, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: 'a873e5f0-fed6-47e9-a712-6854eab3ec77', - fieldMetadataId: personObjectMetadata?.fields.find( - (field) => field.name === 'city', - )?.id, - viewId: mockedViewsData[1].id, - position: 5, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '66f134b8-5329-422f-b88e-83e6bb707eb5', - fieldMetadataId: personObjectMetadata?.fields.find( - (field) => field.name === 'jobTitle', - )?.id, - viewId: mockedViewsData[1].id, - position: 6, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '648faa24-cabb-482a-8578-ba3f09906017', - fieldMetadataId: personObjectMetadata?.fields.find( - (field) => field.name === 'linkedinLink', - )?.id, - viewId: mockedViewsData[1].id, - position: 7, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '3a9e7f0d-a4ce-4ad5-aac7-3a24eb1a412d', - fieldMetadataId: personObjectMetadata?.fields.find( - (field) => field.name === 'xLink', - )?.id, - viewId: mockedViewsData[1].id, - position: 8, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - - // Opportunities - { - id: '35a42e2d-83dd-4b57-ada6-f90616da706d', - fieldMetadataId: opportunityObjectMetadata?.fields.find( - (field) => field.name === 'name', - )?.id, - viewId: mockedViewsData[2].id, - position: 0, - isVisible: true, - size: 180, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '3159acd8-463f-458d-bf9a-af8ac6f57dc0', - fieldMetadataId: opportunityObjectMetadata?.fields.find( - (field) => field.name === 'closeDate', - )?.id, - viewId: mockedViewsData[2].id, - position: 2, - isVisible: true, - size: 100, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: 'afc0819d-b694-4e3c-a2e6-25261aa3ed2c', - fieldMetadataId: opportunityObjectMetadata?.fields.find( - (field) => field.name === 'company', - )?.id, - viewId: mockedViewsData[2].id, - position: 3, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: 'ec0507bb-aedc-4695-ba96-d81bdeb9db83', - fieldMetadataId: opportunityObjectMetadata?.fields.find( - (field) => field.name === 'createdAt', - )?.id, - viewId: mockedViewsData[2].id, - position: 4, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, - { - id: '3f1585f6-44f6-45c5-b840-bc05af5d0008', - fieldMetadataId: opportunityObjectMetadata?.fields.find( - (field) => field.name === 'pointOfContact', - )?.id, - viewId: mockedViewsData[2].id, - position: 5, - isVisible: true, - size: 150, - createdAt: '2021-09-01T00:00:00.000Z', - updatedAt: '2021-09-01T00:00:00.000Z', - deletedAt: null, - __typename: 'ViewField', - }, -]; diff --git a/packages/twenty-front/src/testing/mock-data/views.ts b/packages/twenty-front/src/testing/mock-data/views.ts deleted file mode 100644 index e9ae482130..0000000000 --- a/packages/twenty-front/src/testing/mock-data/views.ts +++ /dev/null @@ -1,207 +0,0 @@ -import { AggregateOperations } from '@/object-record/record-table/constants/AggregateOperations'; -import { type CoreViewWithRelations } from '@/views/types/CoreViewWithRelations'; -import { type View } from '@/views/types/View'; -import { ViewKey } from '@/views/types/ViewKey'; -import { ViewOpenRecordInType } from '@/views/types/ViewOpenRecordInType'; -import { ViewType } from '@/views/types/ViewType'; -import { - ViewKey as CoreViewKey, - ViewOpenRecordIn as CoreViewOpenRecordIn, - ViewType as CoreViewType, - ViewVisibility as CoreViewVisibility, - ViewVisibility, -} from '~/generated-metadata/graphql'; -import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; - -const companyObjectMetadata = getMockObjectMetadataItemOrThrow('company'); - -const personObjectMetadata = getMockObjectMetadataItemOrThrow('person'); - -const opportunityObjectMetadata = - getMockObjectMetadataItemOrThrow('opportunity'); - -export const mockedViewsData: View[] = [ - { - id: '37a8a866-eb17-4e76-9382-03143a2f6a80', - name: 'All companies', - objectMetadataId: companyObjectMetadata.id, - type: ViewType.Table, - icon: 'IconSkyline', - key: ViewKey.Index, - mainGroupByFieldMetadataId: null, - shouldHideEmptyGroups: false, - kanbanAggregateOperation: AggregateOperations.COUNT, - kanbanAggregateOperationFieldMetadataId: '', - position: 0, - isCompact: false, - openRecordIn: ViewOpenRecordInType.SIDE_PANEL, - viewFilterGroups: [], - viewGroups: [], - viewFields: [], - viewFilters: [], - viewSorts: [], - visibility: ViewVisibility.WORKSPACE, - __typename: 'View', - }, - { - id: '6095799e-b48f-4e00-b071-10818083593a', - name: 'All people', - objectMetadataId: personObjectMetadata.id, - type: ViewType.Table, - icon: 'IconPerson', - key: ViewKey.Index, - mainGroupByFieldMetadataId: null, - shouldHideEmptyGroups: false, - kanbanAggregateOperation: AggregateOperations.COUNT, - kanbanAggregateOperationFieldMetadataId: '', - position: 0, - isCompact: false, - openRecordIn: ViewOpenRecordInType.SIDE_PANEL, - viewFilterGroups: [], - viewGroups: [], - viewFields: [], - viewFilters: [], - viewSorts: [], - visibility: ViewVisibility.WORKSPACE, - __typename: 'View', - }, - { - id: 'e26f66b7-f890-4a5c-b4d2-ec09987b5308', - name: 'All opportunities', - objectMetadataId: opportunityObjectMetadata.id, - type: ViewType.Kanban, - icon: 'IconOpportunity', - key: ViewKey.Index, - mainGroupByFieldMetadataId: null, - shouldHideEmptyGroups: false, - kanbanAggregateOperation: AggregateOperations.COUNT, - kanbanAggregateOperationFieldMetadataId: '', - position: 0, - isCompact: false, - openRecordIn: ViewOpenRecordInType.SIDE_PANEL, - viewFilterGroups: [], - viewGroups: [], - viewFields: [], - viewFilters: [], - viewSorts: [], - visibility: ViewVisibility.WORKSPACE, - __typename: 'View', - }, - { - id: '5c307222-1dd5-4ff3-ab06-8d990e9b3c74', - name: 'All companies (v2)', - objectMetadataId: companyObjectMetadata.id, - type: ViewType.Table, - icon: 'IconSkyline', - key: null, - mainGroupByFieldMetadataId: null, - shouldHideEmptyGroups: false, - kanbanAggregateOperation: AggregateOperations.COUNT, - kanbanAggregateOperationFieldMetadataId: '', - position: 0, - isCompact: false, - openRecordIn: ViewOpenRecordInType.SIDE_PANEL, - viewFilterGroups: [], - viewGroups: [], - viewFields: [], - viewFilters: [], - viewSorts: [], - visibility: ViewVisibility.WORKSPACE, - __typename: 'View', - }, -]; - -export const mockedCoreViewsData: CoreViewWithRelations[] = [ - { - id: '37a8a866-eb17-4e76-9382-03143a2f6a80', - name: 'All companies', - objectMetadataId: companyObjectMetadata.id, - type: CoreViewType.TABLE, - icon: 'IconSkyline', - key: CoreViewKey.INDEX, - shouldHideEmptyGroups: false, - kanbanAggregateOperation: AggregateOperations.COUNT, - kanbanAggregateOperationFieldMetadataId: '', - position: 0, - isCompact: false, - openRecordIn: CoreViewOpenRecordIn.SIDE_PANEL, - viewFieldGroups: [], - viewFilterGroups: [], - viewGroups: [], - viewFields: [], - viewFilters: [], - viewSorts: [], - visibility: CoreViewVisibility.WORKSPACE, - createdByUserWorkspaceId: null, - __typename: 'CoreView', - }, - { - id: '6095799e-b48f-4e00-b071-10818083593a', - name: 'All people', - objectMetadataId: personObjectMetadata.id, - type: CoreViewType.TABLE, - icon: 'IconPerson', - key: CoreViewKey.INDEX, - shouldHideEmptyGroups: false, - kanbanAggregateOperation: AggregateOperations.COUNT, - kanbanAggregateOperationFieldMetadataId: '', - position: 0, - isCompact: false, - openRecordIn: CoreViewOpenRecordIn.SIDE_PANEL, - viewFieldGroups: [], - viewFilterGroups: [], - viewGroups: [], - viewFields: [], - viewFilters: [], - viewSorts: [], - visibility: CoreViewVisibility.WORKSPACE, - createdByUserWorkspaceId: null, - __typename: 'CoreView', - }, - { - id: 'e26f66b7-f890-4a5c-b4d2-ec09987b5308', - name: 'All opportunities', - objectMetadataId: opportunityObjectMetadata.id, - type: CoreViewType.KANBAN, - icon: 'IconOpportunity', - key: CoreViewKey.INDEX, - shouldHideEmptyGroups: false, - kanbanAggregateOperation: AggregateOperations.COUNT, - kanbanAggregateOperationFieldMetadataId: '', - position: 0, - isCompact: false, - openRecordIn: CoreViewOpenRecordIn.SIDE_PANEL, - viewFieldGroups: [], - viewFilterGroups: [], - viewGroups: [], - viewFields: [], - viewFilters: [], - viewSorts: [], - visibility: CoreViewVisibility.WORKSPACE, - createdByUserWorkspaceId: null, - __typename: 'CoreView', - }, - { - id: '5c307222-1dd5-4ff3-ab06-8d990e9b3c74', - name: 'All companies (v2)', - objectMetadataId: companyObjectMetadata.id, - type: CoreViewType.TABLE, - icon: 'IconSkyline', - key: null, - shouldHideEmptyGroups: false, - kanbanAggregateOperation: AggregateOperations.COUNT, - kanbanAggregateOperationFieldMetadataId: '', - position: 0, - isCompact: false, - openRecordIn: CoreViewOpenRecordIn.SIDE_PANEL, - viewFieldGroups: [], - viewFilterGroups: [], - viewGroups: [], - viewFields: [], - viewFilters: [], - viewSorts: [], - visibility: CoreViewVisibility.WORKSPACE, - createdByUserWorkspaceId: null, - __typename: 'CoreView', - }, -]; diff --git a/packages/twenty-front/src/testing/mock-data/workspace-members.ts b/packages/twenty-front/src/testing/mock-data/workspace-members.ts deleted file mode 100644 index 3da5c1243a..0000000000 --- a/packages/twenty-front/src/testing/mock-data/workspace-members.ts +++ /dev/null @@ -1,70 +0,0 @@ -import { type CurrentWorkspaceMember } from '@/auth/states/currentWorkspaceMemberState'; -import { type WorkspaceMember } from '@/workspace-member/types/WorkspaceMember'; -import { - WorkspaceMemberDateFormatEnum, - WorkspaceMemberTimeFormatEnum, -} from '~/generated-metadata/graphql'; - -export const mockWorkspaceMembers: WorkspaceMember[] = [ - { - id: '20202020-463f-435b-828c-107e007a2711', - name: { - firstName: 'Jane', - lastName: 'Doe', - }, - __typename: 'WorkspaceMember', - userEmail: 'jane.doe@twenty.com', - locale: 'en', - avatarUrl: '', - createdAt: '2023-12-18T09:51:19.645Z', - updatedAt: '2023-12-18T09:51:19.645Z', - userId: '20202020-7169-42cf-bc47-1cfef15264b8', - colorScheme: 'Light' as const, - timeZone: 'America/New_York', - dateFormat: WorkspaceMemberDateFormatEnum.DAY_FIRST, - timeFormat: WorkspaceMemberTimeFormatEnum.HOUR_24, - }, - { - id: '20202020-77d5-4cb6-b60a-f4a835a85d61', - name: { - firstName: 'John', - lastName: 'Wick', - }, - userEmail: 'john.wick@twenty.com', - __typename: 'WorkspaceMember', - locale: 'en', - avatarUrl: '', - createdAt: '2023-12-18T09:51:19.645Z', - updatedAt: '2023-12-18T09:51:19.645Z', - userId: '20202020-3957-4908-9c36-2929a23f8357', - colorScheme: 'Dark' as const, - timeZone: 'America/New_York', - dateFormat: WorkspaceMemberDateFormatEnum.DAY_FIRST, - timeFormat: WorkspaceMemberTimeFormatEnum.HOUR_24, - }, -]; - -export const mockCurrentWorkspaceMembers: CurrentWorkspaceMember[] = - mockWorkspaceMembers.map( - ({ - id, - locale, - name, - avatarUrl, - colorScheme, - dateFormat, - timeFormat, - timeZone, - userEmail, - }) => ({ - id, - locale, - name, - avatarUrl, - colorScheme, - dateFormat, - timeFormat, - timeZone, - userEmail, - }), - );