From 86fbf69e95b103d5114f5eea120bffb346047f3c Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Fri, 27 Feb 2026 14:06:18 +0100 Subject: [PATCH] Fix more tests (#18287) Improve mock in front tests --- .../scripts/generate-mock-data.ts | 2 + .../scripts/mock-data/generate-record-data.ts | 59 +- .../scripts/mock-data/generate-roles.ts | 150 + .../__tests__/useCreateActivityInDB.test.tsx | 8 +- .../__stories__/TaskGroups.stories.tsx | 9 +- .../__stories__/TaskList.stories.tsx | 8 +- .../TimelineActivities.stories.tsx | 8 +- .../__tests__/groupEventsByMonth.test.ts | 38 +- .../CommandMenuContextRecordChip.stories.tsx | 12 +- .../useSetGlobalCommandMenuContext.test.tsx | 4 +- .../__tests__/useDefaultHomePagePath.test.ts | 4 +- ...bjectMetadataItemsToObjectMetadataItems.ts | 6 +- .../__tests__/getRecordNodeFromRecord.test.ts | 5 +- .../hooks/__mocks__/useDeleteManyRecords.ts | 13 +- .../hooks/__mocks__/useFetchAllRecordIds.ts | 21 +- .../__mocks__/useFindDuplicateRecords.ts | 4 +- .../hooks/__mocks__/useUpdateManyRecords.ts | 19 +- .../useDeleteOneRecord.test.tsx.snap | 329 +- .../__tests__/useDeleteManyRecords.test.tsx | 4 +- .../__tests__/useDeleteOneRecord.test.tsx | 36 +- .../useRecordIndexTableQuery.test.tsx | 28 +- .../__tests__/useUpdateManyRecords.test.tsx | 4 +- .../getAggregateLabelWithFieldName.test.ts | 8 +- ...eRawValueIntoAggregateDisplayValue.test.ts | 5 +- .../RecordDetailDuplicatesSection.stories.tsx | 9 +- .../RecordDetailRelationSection.stories.tsx | 24 +- .../RelationManyToOneFieldInput.stories.tsx | 15 +- ...omputeViewRecordGqlOperationFilter.test.ts | 16 +- .../__tests__/isRecordMatchingFilter.test.ts | 7 +- .../__stories__/RecordTable.stories.tsx | 20 +- ...readsheetImportGetUnicityTableHook.test.ts | 4 +- .../computeOptimisticRecordFromInput.test.ts | 25 +- .../SettingsRoleAssignment.stories.tsx | 25 +- .../SettingsRolePermissions.stories.tsx | 8 +- .../stories/SettingsRoleSettings.stories.tsx | 10 +- ...dataItemFromViewBarFilterDropdown.test.tsx | 4 +- ...WorkflowEditActionDeleteRecord.stories.tsx | 9 +- ...WorkflowEditActionUpdateRecord.stories.tsx | 9 +- .../__stories__/RecordShowPage.stories.tsx | 20 +- .../decorators/ContextStoreDecorator.tsx | 4 +- .../decorators/RecordTableDecorator.tsx | 4 +- .../testing/decorators/getFieldDecorator.tsx | 16 +- .../twenty-front/src/testing/graphqlMocks.ts | 108 +- .../src/testing/mock-data/companies.ts | 50 - .../src/testing/mock-data/favorite.ts | 6 +- .../data/companies/mock-companies-data.ts | 228 +- .../generated/data/notes/mock-notes-data.ts | 840 + .../generated/data/people/mock-people-data.ts | 1867 + .../generated/data/tasks/mock-tasks-data.ts | 960 + .../mock-timelineActivities-data.ts | 790 + .../metadata/objects/mock-objects-metadata.ts | 38854 ++++++++-------- .../metadata/roles/mock-roles-data.ts | 11208 +++++ .../src/testing/mock-data/notes.ts | 130 - .../src/testing/mock-data/people.ts | 1811 - .../src/testing/mock-data/roles.ts | 82 - .../src/testing/mock-data/tasks.ts | 90 - .../testing/mock-data/timeline-activities.ts | 142 - .../src/testing/utils/generateMockRecord.ts | 16 + .../utils/generateMockRecordConnection.ts | 2 +- .../testing/utils/generateMockRecordNode.ts | 16 +- .../utils/generatedMockObjectMetadataItems.ts | 37 +- 61 files changed, 35917 insertions(+), 22333 deletions(-) create mode 100644 packages/twenty-front/scripts/mock-data/generate-roles.ts delete mode 100644 packages/twenty-front/src/testing/mock-data/companies.ts create mode 100644 packages/twenty-front/src/testing/mock-data/generated/data/notes/mock-notes-data.ts create mode 100644 packages/twenty-front/src/testing/mock-data/generated/data/people/mock-people-data.ts create mode 100644 packages/twenty-front/src/testing/mock-data/generated/data/tasks/mock-tasks-data.ts create mode 100644 packages/twenty-front/src/testing/mock-data/generated/data/timelineActivities/mock-timelineActivities-data.ts create mode 100644 packages/twenty-front/src/testing/mock-data/generated/metadata/roles/mock-roles-data.ts delete mode 100644 packages/twenty-front/src/testing/mock-data/notes.ts delete mode 100644 packages/twenty-front/src/testing/mock-data/people.ts delete mode 100644 packages/twenty-front/src/testing/mock-data/roles.ts delete mode 100644 packages/twenty-front/src/testing/mock-data/tasks.ts delete mode 100644 packages/twenty-front/src/testing/mock-data/timeline-activities.ts create mode 100644 packages/twenty-front/src/testing/utils/generateMockRecord.ts diff --git a/packages/twenty-front/scripts/generate-mock-data.ts b/packages/twenty-front/scripts/generate-mock-data.ts index 7f0ff34d7b..c3136d49bd 100644 --- a/packages/twenty-front/scripts/generate-mock-data.ts +++ b/packages/twenty-front/scripts/generate-mock-data.ts @@ -1,6 +1,7 @@ /* eslint-disable no-console */ 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 { authenticate } from './mock-data/utils.js'; const main = async () => { @@ -8,6 +9,7 @@ const main = async () => { const metadata = await generateMetadata(token); await generateRecordData(token, metadata); + await generateRoles(token); console.log('All mock data generated!'); }; 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 601b81bbe1..2101077aaa 100644 --- a/packages/twenty-front/scripts/mock-data/generate-record-data.ts +++ b/packages/twenty-front/scripts/mock-data/generate-record-data.ts @@ -1,4 +1,4 @@ -/* eslint-disable no-console */ +/* eslint-disable no-console, lingui/no-unlocalized-strings */ import { print } from 'graphql'; import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem'; @@ -9,6 +9,14 @@ import { graphqlRequest, writeGeneratedFile } from './utils.js'; const RECORDS_LIMIT = 10; +const OBJECTS_TO_GENERATE = [ + 'company', + 'person', + 'task', + 'note', + 'timelineActivity', +]; + // Production query builders omit __typename on connection/edge wrappers // since Apollo Client injects them automatically. Raw fetch needs them explicit. const addTypenamesToSelections = (query: string): string => @@ -34,28 +42,27 @@ const toObjectMetadataItems = (rawMetadata: { } as unknown as ObjectMetadataItem; }); -export const generateRecordData = async ( +const generateForObject = async ( token: string, - rawMetadata: { objects: { edges: { node: Record }[] } }, + objectMetadataItems: ObjectMetadataItem[], + objectNameSingular: string, ) => { - const objectMetadataItems = toObjectMetadataItems(rawMetadata); - - const companyObject = objectMetadataItems.find( - (item) => item.nameSingular === 'company', + const objectMetadataItem = objectMetadataItems.find( + (item) => item.nameSingular === objectNameSingular, ); - if (!companyObject) { - throw new Error('Company object metadata not found'); + if (!objectMetadataItem) { + throw new Error(`${objectNameSingular} object metadata not found`); } const recordGqlFields = generateDepthRecordGqlFieldsFromObject({ objectMetadataItems, - objectMetadataItem: companyObject, + objectMetadataItem, depth: 1, }); const queryDocument = generateFindManyRecordsQuery({ - objectMetadataItem: companyObject, + objectMetadataItem, objectMetadataItems, recordGqlFields, objectPermissionsByObjectMetadataId: {}, @@ -64,22 +71,38 @@ export const generateRecordData = async ( const query = addTypenamesToSelections(print(queryDocument)); console.log( - `Fetching ${companyObject.namePlural} (limit: ${RECORDS_LIMIT}) from /graphql ...`, + `Fetching ${objectMetadataItem.namePlural} (limit: ${RECORDS_LIMIT}) from /graphql ...`, ); const data = (await graphqlRequest('/graphql', query, token, { limit: RECORDS_LIMIT, })) as Record }[] }>; - const records = data[companyObject.namePlural].edges.map((edge) => edge.node); + const records = data[objectMetadataItem.namePlural].edges.map( + (edge) => edge.node, + ); - console.log(` Got ${records.length} ${companyObject.namePlural}.`); + console.log(` Got ${records.length} ${objectMetadataItem.namePlural}.`); + + const pascalName = + objectNameSingular.charAt(0).toUpperCase() + objectNameSingular.slice(1); writeGeneratedFile( - 'data/companies/mock-companies-data.ts', - 'mockedCompanyRecords', - 'Record[]', - '', + `data/${objectMetadataItem.namePlural}/mock-${objectMetadataItem.namePlural}-data.ts`, + `mocked${pascalName}Records`, + 'ObjectRecord[]', + "import { type ObjectRecord } from '@/object-record/types/ObjectRecord';", records, ); }; + +export const generateRecordData = async ( + token: string, + rawMetadata: { objects: { edges: { node: Record }[] } }, +) => { + const objectMetadataItems = toObjectMetadataItems(rawMetadata); + + for (const objectNameSingular of OBJECTS_TO_GENERATE) { + await generateForObject(token, objectMetadataItems, objectNameSingular); + } +}; diff --git a/packages/twenty-front/scripts/mock-data/generate-roles.ts b/packages/twenty-front/scripts/mock-data/generate-roles.ts new file mode 100644 index 0000000000..5dfec5235a --- /dev/null +++ b/packages/twenty-front/scripts/mock-data/generate-roles.ts @@ -0,0 +1,150 @@ +/* eslint-disable no-console, lingui/no-unlocalized-strings */ +import { graphqlRequest, writeGeneratedFile } from './utils.js'; + +// Inline the full GetRoles query with all fragments so we don't need +// @apollo/client at generation time. +const GET_ROLES_QUERY = ` + query GetRoles { + getRoles { + __typename + id + label + description + icon + canUpdateAllSettings + canAccessAllTools + isEditable + canReadAllObjectRecords + canUpdateAllObjectRecords + canSoftDeleteAllObjectRecords + canDestroyAllObjectRecords + canBeAssignedToUsers + canBeAssignedToAgents + canBeAssignedToApiKeys + workspaceMembers { + __typename + id + name { + __typename + firstName + lastName + } + avatarUrl + userEmail + } + agents { + __typename + id + name + label + description + icon + prompt + modelId + responseFormat + roleId + isCustom + modelConfiguration + evaluationInputs + applicationId + createdAt + updatedAt + } + apiKeys { + __typename + id + name + expiresAt + revokedAt + } + permissionFlags { + __typename + id + flag + roleId + } + objectPermissions { + __typename + objectMetadataId + canReadObjectRecords + canUpdateObjectRecords + canSoftDeleteObjectRecords + canDestroyObjectRecords + restrictedFields + rowLevelPermissionPredicates { + __typename + id + fieldMetadataId + objectMetadataId + operand + subFieldName + workspaceMemberFieldMetadataId + workspaceMemberSubFieldName + rowLevelPermissionPredicateGroupId + positionInRowLevelPermissionPredicateGroup + roleId + value + } + rowLevelPermissionPredicateGroups { + __typename + id + parentRowLevelPermissionPredicateGroupId + logicalOperator + positionInRowLevelPermissionPredicateGroup + roleId + objectMetadataId + } + } + fieldPermissions { + __typename + objectMetadataId + fieldMetadataId + canReadFieldValue + canUpdateFieldValue + id + roleId + } + rowLevelPermissionPredicates { + __typename + id + fieldMetadataId + objectMetadataId + operand + subFieldName + workspaceMemberFieldMetadataId + workspaceMemberSubFieldName + rowLevelPermissionPredicateGroupId + positionInRowLevelPermissionPredicateGroup + roleId + value + } + rowLevelPermissionPredicateGroups { + __typename + id + parentRowLevelPermissionPredicateGroupId + logicalOperator + positionInRowLevelPermissionPredicateGroup + roleId + objectMetadataId + } + } + } +`; + +export const generateRoles = async (token: string) => { + console.log('Fetching roles from /metadata ...'); + + const data = (await graphqlRequest('/metadata', GET_ROLES_QUERY, token)) as { + getRoles: Record[]; + }; + + console.log(` Got ${data.getRoles.length} roles.`); + + writeGeneratedFile( + 'metadata/roles/mock-roles-data.ts', + 'mockedRoles', + 'Role[]', + "import { type Role } from '~/generated-metadata/graphql';", + data.getRoles, + ); +}; diff --git a/packages/twenty-front/src/modules/activities/hooks/__tests__/useCreateActivityInDB.test.tsx b/packages/twenty-front/src/modules/activities/hooks/__tests__/useCreateActivityInDB.test.tsx index aa261a8638..88aaa16ec2 100644 --- a/packages/twenty-front/src/modules/activities/hooks/__tests__/useCreateActivityInDB.test.tsx +++ b/packages/twenty-front/src/modules/activities/hooks/__tests__/useCreateActivityInDB.test.tsx @@ -3,13 +3,19 @@ import { act, renderHook } from '@testing-library/react'; import { createOneActivityOperationSignatureFactory } from '@/activities/graphql/operation-signatures/factories/createOneActivityOperationSignatureFactory'; import { useCreateActivityInDB } from '@/activities/hooks/useCreateActivityInDB'; +import { type Task } from '@/activities/types/Task'; import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular'; import { generateCreateOneRecordMutation } from '@/object-metadata/utils/generateCreateOneRecordMutation'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; import { getJestMetadataAndApolloMocksWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksWrapper'; -import { mockedTasks } from '~/testing/mock-data/tasks'; +import { mockedTaskRecords } from '~/testing/mock-data/generated/data/tasks/mock-tasks-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; +const mockedTasks = mockedTaskRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); + const mockedDate = '2024-03-15T12:00:00.000Z'; const toISOStringMock = jest.fn(() => mockedDate); global.Date.prototype.toISOString = toISOStringMock; diff --git a/packages/twenty-front/src/modules/activities/tasks/components/__stories__/TaskGroups.stories.tsx b/packages/twenty-front/src/modules/activities/tasks/components/__stories__/TaskGroups.stories.tsx index 6e52a69ec9..1100737082 100644 --- a/packages/twenty-front/src/modules/activities/tasks/components/__stories__/TaskGroups.stories.tsx +++ b/packages/twenty-front/src/modules/activities/tasks/components/__stories__/TaskGroups.stories.tsx @@ -8,8 +8,9 @@ import { ComponentWithRouterDecorator } from '~/testing/decorators/ComponentWith import { ObjectMetadataItemsDecorator } from '~/testing/decorators/ObjectMetadataItemsDecorator'; import { RightDrawerDecorator } from '~/testing/decorators/RightDrawerDecorator'; import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; import { graphqlMocks } from '~/testing/graphqlMocks'; -import { mockedTasks } from '~/testing/mock-data/tasks'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; const meta: Meta = { title: 'Modules/Activity/TaskGroups', @@ -38,10 +39,14 @@ type Story = StoryObj; export const Empty: Story = {}; +const flatPersonRecords = mockedPersonRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); + export const WithTasks: Story = { args: { targetableObject: { - id: mockedTasks[0].taskTargets?.[0].targetPersonId, + id: flatPersonRecords[0].id, targetObjectNameSingular: 'person', } as ActivityTargetableObject, }, diff --git a/packages/twenty-front/src/modules/activities/tasks/components/__stories__/TaskList.stories.tsx b/packages/twenty-front/src/modules/activities/tasks/components/__stories__/TaskList.stories.tsx index 4189656181..8e62d7a41a 100644 --- a/packages/twenty-front/src/modules/activities/tasks/components/__stories__/TaskList.stories.tsx +++ b/packages/twenty-front/src/modules/activities/tasks/components/__stories__/TaskList.stories.tsx @@ -1,6 +1,8 @@ import { type Meta, type StoryObj } from '@storybook/react-vite'; import { TaskList } from '@/activities/tasks/components/TaskList'; +import { type Task } from '@/activities/types/Task'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; import { ComponentDecorator } from 'twenty-ui/testing'; import { ContextStoreDecorator } from '~/testing/decorators/ContextStoreDecorator'; import { MemoryRouterDecorator } from '~/testing/decorators/MemoryRouterDecorator'; @@ -8,7 +10,11 @@ import { ObjectMetadataItemsDecorator } from '~/testing/decorators/ObjectMetadat import { RightDrawerDecorator } from '~/testing/decorators/RightDrawerDecorator'; import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator'; import { graphqlMocks } from '~/testing/graphqlMocks'; -import { mockedTasks } from '~/testing/mock-data/tasks'; +import { mockedTaskRecords } from '~/testing/mock-data/generated/data/tasks/mock-tasks-data'; + +const mockedTasks = mockedTaskRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); const meta: Meta = { title: 'Modules/Activity/TaskList', diff --git a/packages/twenty-front/src/modules/activities/timeline-activities/components/__stories__/TimelineActivities.stories.tsx b/packages/twenty-front/src/modules/activities/timeline-activities/components/__stories__/TimelineActivities.stories.tsx index abc643e76e..a0f3c1fa8c 100644 --- a/packages/twenty-front/src/modules/activities/timeline-activities/components/__stories__/TimelineActivities.stories.tsx +++ b/packages/twenty-front/src/modules/activities/timeline-activities/components/__stories__/TimelineActivities.stories.tsx @@ -9,7 +9,7 @@ import { ComponentDecorator } from 'twenty-ui/testing'; import { PageLayoutType } from '~/generated-metadata/graphql'; import { ObjectMetadataItemsDecorator } from '~/testing/decorators/ObjectMetadataItemsDecorator'; import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator'; -import { mockedTimelineActivities } from '~/testing/mock-data/timeline-activities'; +import { mockedTimelineActivityRecords } from '~/testing/mock-data/generated/data/timelineActivities/mock-timelineActivities-data'; const meta: Meta = { title: 'Modules/TimelineActivities/TimelineCard', @@ -59,9 +59,9 @@ const meta: Meta = { return HttpResponse.json({ data: { timelineActivities: { - edges: mockedTimelineActivities.map((activity) => ({ - node: activity, - cursor: activity.id, + edges: mockedTimelineActivityRecords.map((record) => ({ + node: record, + cursor: record.id, })), pageInfo: { hasNextPage: false, diff --git a/packages/twenty-front/src/modules/activities/timeline-activities/utils/__tests__/groupEventsByMonth.test.ts b/packages/twenty-front/src/modules/activities/timeline-activities/utils/__tests__/groupEventsByMonth.test.ts index f585fdb23c..6048d4a1b6 100644 --- a/packages/twenty-front/src/modules/activities/timeline-activities/utils/__tests__/groupEventsByMonth.test.ts +++ b/packages/twenty-front/src/modules/activities/timeline-activities/utils/__tests__/groupEventsByMonth.test.ts @@ -1,19 +1,39 @@ -import { mockedTimelineActivities } from '~/testing/mock-data/timeline-activities'; - +import { type TimelineActivity } from '@/activities/timeline-activities/types/TimelineActivity'; import { groupEventsByMonth } from '@/activities/timeline-activities/utils/groupEventsByMonth'; +import { mockedTimelineActivityRecords } from '~/testing/mock-data/generated/data/timelineActivities/mock-timelineActivities-data'; + +const mockedTimelineActivities = + mockedTimelineActivityRecords as unknown as TimelineActivity[]; describe('groupEventsByMonth', () => { it('should group activities by month', () => { const grouped = groupEventsByMonth(mockedTimelineActivities); - expect(grouped).toHaveLength(2); - expect(grouped[0].items).toHaveLength(4); - expect(grouped[1].items).toHaveLength(1); + const totalItems = grouped.reduce( + (sum, group) => sum + group.items.length, + 0, + ); + expect(totalItems).toBe(mockedTimelineActivities.length); - expect(grouped[0].year).toBe(2023); - expect(grouped[1].year).toBe(2022); + for (const group of grouped) { + for (const item of group.items) { + const date = new Date(item.createdAt); + expect(date.getMonth()).toBe(group.month); + expect(date.getFullYear()).toBe(group.year); + } + } + }); - expect(grouped[0].month).toBe(3); - expect(grouped[1].month).toBe(4); + it('should sort groups by most recent first', () => { + const grouped = groupEventsByMonth(mockedTimelineActivities); + + for (let index = 1; index < grouped.length; index++) { + const previous = grouped[index - 1]; + const current = grouped[index]; + const isPreviousMoreRecent = + previous.year > current.year || + (previous.year === current.year && previous.month > current.month); + expect(isPreviousMoreRecent).toBe(true); + } }); }); diff --git a/packages/twenty-front/src/modules/command-menu/components/__stories__/CommandMenuContextRecordChip.stories.tsx b/packages/twenty-front/src/modules/command-menu/components/__stories__/CommandMenuContextRecordChip.stories.tsx index 4263432658..47604975bb 100644 --- a/packages/twenty-front/src/modules/command-menu/components/__stories__/CommandMenuContextRecordChip.stories.tsx +++ b/packages/twenty-front/src/modules/command-menu/components/__stories__/CommandMenuContextRecordChip.stories.tsx @@ -13,7 +13,7 @@ import { jotaiStore } from '@/ui/utilities/state/jotai/jotaiStore'; import { type ObjectRecord } from '@/object-record/types/ObjectRecord'; import { ComponentDecorator } from 'twenty-ui/testing'; import { getJestMetadataAndApolloMocksAndActionMenuWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksAndActionMenuWrapper'; -import { getCompaniesMock } from '~/testing/mock-data/companies'; +import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; const FIND_MANY_COMPANIES = gql` @@ -102,9 +102,7 @@ const companyMockObjectMetadataItem = generatedMockObjectMetadataItems.find( (item) => item.nameSingular === 'company', ); -const companiesMock = getCompaniesMock(); - -const companyMock = companiesMock[0]; +const companyMock = mockedCompanyRecords[0]; const chipGeneratorPerObjectPerField: Record< string, @@ -144,7 +142,7 @@ const createContextStoreWrapper = ({ companies, componentInstanceId, }: { - companies: typeof companiesMock; + companies: typeof mockedCompanyRecords; componentInstanceId: string; }) => { return getJestMetadataAndApolloMocksAndActionMenuWrapper({ @@ -236,7 +234,7 @@ export const Default: Story = {}; export const WithTwoCompanies: Story = { decorators: [ (Story) => { - const twoCompaniesMock = companiesMock.slice(0, 2); + const twoCompaniesMock = mockedCompanyRecords.slice(0, 2); const TwoCompaniesWrapper = createContextStoreWrapper({ companies: twoCompaniesMock, componentInstanceId: '2', @@ -254,7 +252,7 @@ export const WithTwoCompanies: Story = { export const WithTenCompanies: Story = { decorators: [ (Story) => { - const tenCompaniesMock = companiesMock.slice(0, 10); + const tenCompaniesMock = mockedCompanyRecords.slice(0, 10); const TenCompaniesWrapper = createContextStoreWrapper({ companies: tenCompaniesMock, componentInstanceId: '3', diff --git a/packages/twenty-front/src/modules/command-menu/hooks/__tests__/useSetGlobalCommandMenuContext.test.tsx b/packages/twenty-front/src/modules/command-menu/hooks/__tests__/useSetGlobalCommandMenuContext.test.tsx index c0f1ed611e..0cd80fe0a2 100644 --- a/packages/twenty-front/src/modules/command-menu/hooks/__tests__/useSetGlobalCommandMenuContext.test.tsx +++ b/packages/twenty-front/src/modules/command-menu/hooks/__tests__/useSetGlobalCommandMenuContext.test.tsx @@ -16,7 +16,7 @@ import { ContextStoreViewType } from '@/context-store/types/ContextStoreViewType import { recordStoreFamilyState } from '@/object-record/record-store/states/recordStoreFamilyState'; import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue'; import { getJestMetadataAndApolloMocksAndActionMenuWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksAndActionMenuWrapper'; -import { getPeopleRecordConnectionMock } from '~/testing/mock-data/people'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { contextStoreFilterGroupsComponentState } from '@/context-store/states/contextStoreFilterGroupsComponentState'; @@ -24,7 +24,7 @@ const personMockObjectMetadataItem = generatedMockObjectMetadataItems.find( (item) => item.nameSingular === 'person', )!; -const peopleMock = getPeopleRecordConnectionMock(); +const peopleMock = [...mockedPersonRecords]; jotaiStore.set( recordStoreFamilyState.atomFamily(peopleMock[0].id), diff --git a/packages/twenty-front/src/modules/navigation/hooks/__tests__/useDefaultHomePagePath.test.ts b/packages/twenty-front/src/modules/navigation/hooks/__tests__/useDefaultHomePagePath.test.ts index 23aa76d94f..e44fa40d30 100644 --- a/packages/twenty-front/src/modules/navigation/hooks/__tests__/useDefaultHomePagePath.test.ts +++ b/packages/twenty-front/src/modules/navigation/hooks/__tests__/useDefaultHomePagePath.test.ts @@ -15,8 +15,8 @@ import { ViewType, ViewVisibility, } from '~/generated-metadata/graphql'; -import { getMockCompanyObjectMetadataItem } from '~/testing/mock-data/companies'; import { mockedUserData } from '~/testing/mock-data/users'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; const Wrapper = ({ children }: { children: ReactNode }) => @@ -48,7 +48,7 @@ const renderHooks = ({ { id: 'viewId', name: 'Test View', - objectMetadataId: getMockCompanyObjectMetadataItem().id, + objectMetadataId: getMockObjectMetadataItemOrThrow('company').id, type: ViewType.TABLE, key: null, isCompact: false, diff --git a/packages/twenty-front/src/modules/object-metadata/utils/mapPaginatedObjectMetadataItemsToObjectMetadataItems.ts b/packages/twenty-front/src/modules/object-metadata/utils/mapPaginatedObjectMetadataItemsToObjectMetadataItems.ts index 97b45c3f4b..fa1e601882 100644 --- a/packages/twenty-front/src/modules/object-metadata/utils/mapPaginatedObjectMetadataItemsToObjectMetadataItems.ts +++ b/packages/twenty-front/src/modules/object-metadata/utils/mapPaginatedObjectMetadataItemsToObjectMetadataItems.ts @@ -31,10 +31,10 @@ export const mapPaginatedObjectMetadataItemsToObjectMetadataItems = ({ })), labelIdentifierFieldMetadataId, indexMetadatas: indexMetadataList.map( - (index) => + ({ indexFieldMetadataList: indexFields, ...indexRest }) => ({ - ...index, - indexFieldMetadatas: index.indexFieldMetadataList.map( + ...indexRest, + indexFieldMetadatas: indexFields.map( (indexFieldMetadata) => ({ ...indexFieldMetadata, diff --git a/packages/twenty-front/src/modules/object-record/cache/utils/__tests__/getRecordNodeFromRecord.test.ts b/packages/twenty-front/src/modules/object-record/cache/utils/__tests__/getRecordNodeFromRecord.test.ts index ca97c7dc4c..8c1234880a 100644 --- a/packages/twenty-front/src/modules/object-record/cache/utils/__tests__/getRecordNodeFromRecord.test.ts +++ b/packages/twenty-front/src/modules/object-record/cache/utils/__tests__/getRecordNodeFromRecord.test.ts @@ -1,11 +1,10 @@ import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem'; -import { getPeopleRecordConnectionMock } from '~/testing/mock-data/people'; - +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { getRecordNodeFromRecord } from '@/object-record/cache/utils/getRecordNodeFromRecord'; -const peopleMock = getPeopleRecordConnectionMock(); +const peopleMock = [...mockedPersonRecords]; describe('getRecordNodeFromRecord', () => { it('computes relation records cache references by default', () => { diff --git a/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useDeleteManyRecords.ts b/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useDeleteManyRecords.ts index dba5c1fefa..2ac2d4f609 100644 --- a/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useDeleteManyRecords.ts +++ b/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useDeleteManyRecords.ts @@ -1,6 +1,7 @@ +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; import { ObjectRecord } from '@/object-record/types/ObjectRecord'; import { gql } from '@apollo/client'; -import { getMockPersonRecord } from '~/testing/mock-data/people'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; export const query = gql` mutation DeleteManyPeople($filter: PersonFilterInput!) { @@ -16,10 +17,16 @@ export const personIds = [ '37faabcd-cb39-4a0a-8618-7e3fda9afca0', ]; -export const personRecords = personIds.map((personId, index) => - getMockPersonRecord({ id: personId, deletedAt: null }, index), +const flatPersonRecords = mockedPersonRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), ); +export const personRecords = personIds.map((personId, index) => ({ + ...flatPersonRecords[index], + id: personId, + deletedAt: null, +})); + export const variables = { filter: { id: { diff --git a/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useFetchAllRecordIds.ts b/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useFetchAllRecordIds.ts index 005a8f196b..8aa82a2d05 100644 --- a/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useFetchAllRecordIds.ts +++ b/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useFetchAllRecordIds.ts @@ -1,7 +1,9 @@ -import { RecordGqlConnectionEdgesRequired } from '@/object-record/graphql/types/RecordGqlConnectionEdgesRequired'; +import { type RecordGqlConnectionEdgesRequired } from '@/object-record/graphql/types/RecordGqlConnectionEdgesRequired'; import { gql } from '@apollo/client'; -import { peopleQueryResult } from '~/testing/mock-data/people'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; +import { generateMockRecordConnection } from '~/testing/utils/generateMockRecordConnection'; export const query = gql` query FindManyPeople( @@ -36,11 +38,20 @@ export const query = gql` export const mockPageSize = 2; +const flatPersonRecords = mockedPersonRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); + +const baseConnection = generateMockRecordConnection({ + objectNameSingular: 'person', + records: flatPersonRecords, +}); + export const peopleMockWithIdsOnly: RecordGqlConnectionEdgesRequired = { - ...peopleQueryResult.people, - edges: peopleQueryResult.people.edges.map((edge) => ({ + ...baseConnection, + edges: baseConnection.edges.map((edge, index) => ({ ...edge, - node: { __typename: 'Person', id: edge.node.id }, + cursor: `cursor-${index}`, })), }; diff --git a/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useFindDuplicateRecords.ts b/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useFindDuplicateRecords.ts index ed071dcd49..8e1d0f5958 100644 --- a/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useFindDuplicateRecords.ts +++ b/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useFindDuplicateRecords.ts @@ -1,8 +1,8 @@ import { PERSON_FRAGMENT_WITH_DEPTH_ZERO_RELATIONS } from '@/object-record/hooks/__mocks__/personFragments'; import { gql } from '@apollo/client'; -import { getPeopleRecordConnectionMock } from '~/testing/mock-data/people'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; -const peopleMock = getPeopleRecordConnectionMock(); +const peopleMock = [...mockedPersonRecords]; export const query = gql` query FindDuplicatePerson($ids: [UUID!]!) { diff --git a/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useUpdateManyRecords.ts b/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useUpdateManyRecords.ts index f40538df81..57ce7ef55b 100644 --- a/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useUpdateManyRecords.ts +++ b/packages/twenty-front/src/modules/object-record/hooks/__mocks__/useUpdateManyRecords.ts @@ -1,6 +1,7 @@ +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; import { ObjectRecord } from '@/object-record/types/ObjectRecord'; import { gql } from '@apollo/client'; -import { getMockPersonRecord } from '~/testing/mock-data/people'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; export const query = gql` mutation UpdateManyPeople( @@ -19,10 +20,15 @@ export const personIds = [ '37faabcd-cb39-4a0a-8618-7e3fda9afca0', ]; -export const personRecords = personIds.map((personId, index) => - getMockPersonRecord({ id: personId }, index), +const flatPersonRecords = mockedPersonRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), ); +export const personRecords = personIds.map((personId, index) => ({ + ...flatPersonRecords[index], + id: personId, +})); + export const updateInput = { city: 'Updated City', }; @@ -37,8 +43,11 @@ export const variables = { }; export const updatedPersonRecords = personIds.map( - (personId, index) => - getMockPersonRecord({ id: personId, city: 'Updated City' }, index), + (personId, index) => ({ + ...flatPersonRecords[index], + id: personId, + city: 'Updated City', + }), ); export const responseData = personIds.map((personId) => ({ id: personId })); 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 715af39b1b..5264f5f45f 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 @@ -4,71 +4,91 @@ exports[`useDeleteOneRecord A. Starting from empty cache 1. Should successfully { "__typename": "Person", "deletedAt": "2024-02-14T09:45:00Z", - "id": "da3c2c4b-da01-4b81-9734-226069eb4cd0", + "id": "20202020-b000-4485-94de-70c2a98daef2", } `; exports[`useDeleteOneRecord B. Starting from filled cache 1. Should handle successfull record deletion 1`] = ` { "__typename": "Person", - "avatarUrl": null, - "city": "ASd", - "company": { - "__typename": "Company", - "domainName": { - "__typename": "Links", - "primaryLinkLabel": "", - "primaryLinkUrl": "https://linkedin.com", - "secondaryLinks": [], - }, - "id": "20202020-3ec3-4fe3-8997-b76aa0bfa408", - "name": "Linkedin", - }, - "createdAt": "2025-01-02T09:52:46.814Z", + "attachments": [], + "avatarFile": null, + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-88.png", + "calendarEventParticipants": [], + "caredForPets": [], + "city": "New Jennifer", + "company": {}, + "companyId": "20202020-aa0b-48a9-85ba-e223975696ea", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "context": null, - "name": "Tim Apple", - "source": "MANUAL", - "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Jony Ive", + "source": "WEBHOOK", + "workspaceMemberId": "20202020-77d5-4cb6-b60a-f4a835a85d61", }, "deletedAt": "2024-02-14T09:45:00Z", "emails": { + "__typename": "Emails", "additionalEmails": [], - "primaryEmail": "asd.com", + "primaryEmail": "jeffery.griffin@example.com", }, - "id": "da3c2c4b-da01-4b81-9734-226069eb4cd0", + "favorites": [], + "id": "20202020-b000-4485-94de-70c2a98daef2", "intro": "", - "jobTitle": "", + "jobTitle": "Embryologist, clinical", "linkedinLink": { "__typename": "Links", "primaryLinkLabel": "", - "primaryLinkUrl": "", + "primaryLinkUrl": "https://linkedin.com/in/person-442", "secondaryLinks": [], }, + "messageParticipants": [ + {}, + ], "name": { "__typename": "FullName", - "firstName": "Test", - "lastName": "Test", + "firstName": "Jeffery", + "lastName": "Griffin", }, - "noteTargets": [], + "noteTargets": [ + {}, + ], "performanceRating": null, "phones": { + "__typename": "Phones", + "additionalPhones": [], + "primaryPhoneCallingCode": "+49", + "primaryPhoneCountryCode": "DE", + "primaryPhoneNumber": "7114567890", + }, + "pointOfContactForOpportunities": [], + "position": 442, + "previousCompanies": [], + "taskTargets": [ + {}, + ], + "timelineActivities": [ + {}, + {}, + {}, + ], + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "context": null, + "name": "Jony Ive", + "source": "WEBHOOK", + "workspaceMemberId": "20202020-77d5-4cb6-b60a-f4a835a85d61", + }, + "whatsapp": { + "__typename": "Phones", "additionalPhones": [], "primaryPhoneCallingCode": "+33", "primaryPhoneCountryCode": "FR", - "primaryPhoneNumber": "781234562", - }, - "position": 0, - "taskTargets": [], - "updatedAt": "2025-01-02T09:52:46.814Z", - "whatsapp": { - "additionalPhones": [], - "primaryPhoneCallingCode": "", - "primaryPhoneCountryCode": "", "primaryPhoneNumber": "", }, - "workPreference": null, + "workPreference": [], "xLink": { "__typename": "Links", "primaryLinkLabel": "", @@ -122,25 +142,8 @@ exports[`useDeleteOneRecord B. Starting from filled cache 1. Should handle succe {}, ], "people": [ - { - "__typename": "Person", - "avatarUrl": null, - "id": "20202020-1c0e-494c-a1b6-85b1c6fefaa5", - "name": { - "__typename": "FullName", - "firstName": "Christoph", - "lastName": "Callisto", - }, - }, - { - "__typename": "Person", - "id": "20202020-ac73-4797-824e-87a1f5aea9e0", - "name": { - "__typename": "FullName", - "firstName": "Sylvie", - "lastName": "Palmer", - }, - }, + {}, + {}, ], "position": 1, "taskTargets": [], @@ -150,64 +153,84 @@ exports[`useDeleteOneRecord B. Starting from filled cache 1. Should handle succe exports[`useDeleteOneRecord B. Starting from filled cache 2. Should handle optimistic cache on record deletion 1`] = ` { "__typename": "Person", - "avatarUrl": null, - "city": "ASd", - "company": { - "__typename": "Company", - "domainName": { - "__typename": "Links", - "primaryLinkLabel": "", - "primaryLinkUrl": "https://linkedin.com", - "secondaryLinks": [], - }, - "id": "20202020-3ec3-4fe3-8997-b76aa0bfa408", - "name": "Linkedin", - }, - "createdAt": "2025-01-02T09:52:46.814Z", + "attachments": [], + "avatarFile": null, + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-88.png", + "calendarEventParticipants": [], + "caredForPets": [], + "city": "New Jennifer", + "company": {}, + "companyId": "20202020-aa0b-48a9-85ba-e223975696ea", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "context": null, - "name": "Tim Apple", - "source": "MANUAL", - "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Jony Ive", + "source": "WEBHOOK", + "workspaceMemberId": "20202020-77d5-4cb6-b60a-f4a835a85d61", }, "deletedAt": Any, "emails": { + "__typename": "Emails", "additionalEmails": [], - "primaryEmail": "asd.com", + "primaryEmail": "jeffery.griffin@example.com", }, - "id": "da3c2c4b-da01-4b81-9734-226069eb4cd0", + "favorites": [], + "id": "20202020-b000-4485-94de-70c2a98daef2", "intro": "", - "jobTitle": "", + "jobTitle": "Embryologist, clinical", "linkedinLink": { "__typename": "Links", "primaryLinkLabel": "", - "primaryLinkUrl": "", + "primaryLinkUrl": "https://linkedin.com/in/person-442", "secondaryLinks": [], }, + "messageParticipants": [ + {}, + ], "name": { "__typename": "FullName", - "firstName": "Test", - "lastName": "Test", + "firstName": "Jeffery", + "lastName": "Griffin", }, - "noteTargets": [], + "noteTargets": [ + {}, + ], "performanceRating": null, "phones": { + "__typename": "Phones", + "additionalPhones": [], + "primaryPhoneCallingCode": "+49", + "primaryPhoneCountryCode": "DE", + "primaryPhoneNumber": "7114567890", + }, + "pointOfContactForOpportunities": [], + "position": 442, + "previousCompanies": [], + "taskTargets": [ + {}, + ], + "timelineActivities": [ + {}, + {}, + {}, + ], + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "context": null, + "name": "Jony Ive", + "source": "WEBHOOK", + "workspaceMemberId": "20202020-77d5-4cb6-b60a-f4a835a85d61", + }, + "whatsapp": { + "__typename": "Phones", "additionalPhones": [], "primaryPhoneCallingCode": "+33", "primaryPhoneCountryCode": "FR", - "primaryPhoneNumber": "781234562", - }, - "position": 0, - "taskTargets": [], - "updatedAt": "2025-01-02T09:52:46.814Z", - "whatsapp": { - "additionalPhones": [], - "primaryPhoneCallingCode": "", - "primaryPhoneCountryCode": "", "primaryPhoneNumber": "", }, - "workPreference": null, + "workPreference": [], "xLink": { "__typename": "Links", "primaryLinkLabel": "", @@ -261,25 +284,8 @@ exports[`useDeleteOneRecord B. Starting from filled cache 2. Should handle optim {}, ], "people": [ - { - "__typename": "Person", - "avatarUrl": null, - "id": "20202020-1c0e-494c-a1b6-85b1c6fefaa5", - "name": { - "__typename": "FullName", - "firstName": "Christoph", - "lastName": "Callisto", - }, - }, - { - "__typename": "Person", - "id": "20202020-ac73-4797-824e-87a1f5aea9e0", - "name": { - "__typename": "FullName", - "firstName": "Sylvie", - "lastName": "Palmer", - }, - }, + {}, + {}, ], "position": 1, "taskTargets": [], @@ -289,64 +295,84 @@ exports[`useDeleteOneRecord B. Starting from filled cache 2. Should handle optim exports[`useDeleteOneRecord B. Starting from filled cache 3. Should handle optimistic cache rollback on record deletion failure 1`] = ` { "__typename": "Person", - "avatarUrl": null, - "city": "ASd", - "company": { - "__typename": "Company", - "domainName": { - "__typename": "Links", - "primaryLinkLabel": "", - "primaryLinkUrl": "https://linkedin.com", - "secondaryLinks": [], - }, - "id": "20202020-3ec3-4fe3-8997-b76aa0bfa408", - "name": "Linkedin", - }, - "createdAt": "2025-01-02T09:52:46.814Z", + "attachments": [], + "avatarFile": null, + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-88.png", + "calendarEventParticipants": [], + "caredForPets": [], + "city": "New Jennifer", + "company": {}, + "companyId": "20202020-aa0b-48a9-85ba-e223975696ea", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "context": null, - "name": "Tim Apple", - "source": "MANUAL", - "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Jony Ive", + "source": "WEBHOOK", + "workspaceMemberId": "20202020-77d5-4cb6-b60a-f4a835a85d61", }, "deletedAt": null, "emails": { + "__typename": "Emails", "additionalEmails": [], - "primaryEmail": "asd.com", + "primaryEmail": "jeffery.griffin@example.com", }, - "id": "da3c2c4b-da01-4b81-9734-226069eb4cd0", + "favorites": [], + "id": "20202020-b000-4485-94de-70c2a98daef2", "intro": "", - "jobTitle": "", + "jobTitle": "Embryologist, clinical", "linkedinLink": { "__typename": "Links", "primaryLinkLabel": "", - "primaryLinkUrl": "", + "primaryLinkUrl": "https://linkedin.com/in/person-442", "secondaryLinks": [], }, + "messageParticipants": [ + {}, + ], "name": { "__typename": "FullName", - "firstName": "Test", - "lastName": "Test", + "firstName": "Jeffery", + "lastName": "Griffin", }, - "noteTargets": [], + "noteTargets": [ + {}, + ], "performanceRating": null, "phones": { + "__typename": "Phones", + "additionalPhones": [], + "primaryPhoneCallingCode": "+49", + "primaryPhoneCountryCode": "DE", + "primaryPhoneNumber": "7114567890", + }, + "pointOfContactForOpportunities": [], + "position": 442, + "previousCompanies": [], + "taskTargets": [ + {}, + ], + "timelineActivities": [ + {}, + {}, + {}, + ], + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "context": null, + "name": "Jony Ive", + "source": "WEBHOOK", + "workspaceMemberId": "20202020-77d5-4cb6-b60a-f4a835a85d61", + }, + "whatsapp": { + "__typename": "Phones", "additionalPhones": [], "primaryPhoneCallingCode": "+33", "primaryPhoneCountryCode": "FR", - "primaryPhoneNumber": "781234562", - }, - "position": 0, - "taskTargets": [], - "updatedAt": "2025-01-02T09:52:46.814Z", - "whatsapp": { - "additionalPhones": [], - "primaryPhoneCallingCode": "", - "primaryPhoneCountryCode": "", "primaryPhoneNumber": "", }, - "workPreference": null, + "workPreference": [], "xLink": { "__typename": "Links", "primaryLinkLabel": "", @@ -400,25 +426,8 @@ exports[`useDeleteOneRecord B. Starting from filled cache 3. Should handle optim {}, ], "people": [ - { - "__typename": "Person", - "avatarUrl": null, - "id": "20202020-1c0e-494c-a1b6-85b1c6fefaa5", - "name": { - "__typename": "FullName", - "firstName": "Christoph", - "lastName": "Callisto", - }, - }, - { - "__typename": "Person", - "id": "20202020-ac73-4797-824e-87a1f5aea9e0", - "name": { - "__typename": "FullName", - "firstName": "Sylvie", - "lastName": "Palmer", - }, - }, + {}, + {}, ], "position": 1, "taskTargets": [], diff --git a/packages/twenty-front/src/modules/object-record/hooks/__tests__/useDeleteManyRecords.test.tsx b/packages/twenty-front/src/modules/object-record/hooks/__tests__/useDeleteManyRecords.test.tsx index fb544c7727..a72bb7b430 100644 --- a/packages/twenty-front/src/modules/object-record/hooks/__tests__/useDeleteManyRecords.test.tsx +++ b/packages/twenty-front/src/modules/object-record/hooks/__tests__/useDeleteManyRecords.test.tsx @@ -17,8 +17,8 @@ import { InMemoryCache } from '@apollo/client'; import { type MockedResponse } from '@apollo/client/testing'; import { act } from 'react'; import { getJestMetadataAndApolloMocksWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksWrapper'; -import { getMockPersonObjectMetadataItem } from '~/testing/mock-data/people'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; const getDefaultMocks = ( overrides?: Partial, @@ -42,7 +42,7 @@ const mockRefetchAggregateQueries = jest.fn(); (useRefetchAggregateQueries as jest.Mock).mockReturnValue({ refetchAggregateQueries: mockRefetchAggregateQueries, }); -const objectMetadataItem = getMockPersonObjectMetadataItem(); +const objectMetadataItem = getMockObjectMetadataItemOrThrow('person'); const objectMetadataItems = generatedMockObjectMetadataItems; const expectedCachedRecordsWithDeletedAt = personRecords.map( (personRecord) => ({ 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 6e1e86afa3..d88fa75ea7 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 @@ -8,17 +8,11 @@ import { type MockedResponse } from '@apollo/client/testing'; import { InMemoryTestingCacheInstance } from '~/testing/cache/inMemoryTestingCacheInstance'; import { getJestMetadataAndApolloMocksWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksWrapper'; -import { getMockCompanyObjectMetadataItem } from '~/testing/mock-data/companies'; -import { - allMockCompanyRecordsWithRelation, - findMockCompanyWithRelationRecord, -} from '~/testing/mock-data/companiesWithRelations'; -import { - allMockPersonRecords, - getMockPersonObjectMetadataItem, - getMockPersonRecord, -} from '~/testing/mock-data/people'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; +import { allMockCompanyRecordsWithRelation } from '~/testing/mock-data/companiesWithRelations'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; jest.mock('@/object-record/hooks/useRefetchAggregateQueries'); const mockRefetchAggregateQueries = jest.fn(); @@ -26,15 +20,21 @@ const mockRefetchAggregateQueries = jest.fn(); refetchAggregateQueries: mockRefetchAggregateQueries, }); +const flatPersonRecords = mockedPersonRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); + describe('useDeleteOneRecord', () => { - const personRecord = getMockPersonRecord({ + const matchingCompanyId = allMockCompanyRecordsWithRelation[0].id; + const personRecord = { + ...flatPersonRecords[0], deletedAt: null, - }); - const relatedCompanyRecord = findMockCompanyWithRelationRecord({ - id: personRecord.company.id, - }); - const personObjectMetadataItem = getMockPersonObjectMetadataItem(); - const companyObjectMetadataItem = getMockCompanyObjectMetadataItem(); + companyId: matchingCompanyId, + company: { ...allMockCompanyRecordsWithRelation[0] }, + }; + const relatedCompanyRecord = allMockCompanyRecordsWithRelation[0]; + const personObjectMetadataItem = getMockObjectMetadataItemOrThrow('person'); + const companyObjectMetadataItem = getMockObjectMetadataItemOrThrow('company'); const objectMetadataItems = generatedMockObjectMetadataItems; const getDefaultMocks = ( @@ -203,7 +203,7 @@ describe('useDeleteOneRecord', () => { }, { objectMetadataItem: personObjectMetadataItem, - records: allMockPersonRecords, + records: flatPersonRecords, }, ], }); diff --git a/packages/twenty-front/src/modules/object-record/hooks/__tests__/useRecordIndexTableQuery.test.tsx b/packages/twenty-front/src/modules/object-record/hooks/__tests__/useRecordIndexTableQuery.test.tsx index a5be53e666..8c4ce92c95 100644 --- a/packages/twenty-front/src/modules/object-record/hooks/__tests__/useRecordIndexTableQuery.test.tsx +++ b/packages/twenty-front/src/modules/object-record/hooks/__tests__/useRecordIndexTableQuery.test.tsx @@ -11,16 +11,20 @@ import { ViewComponentInstanceContext } from '@/views/states/contexts/ViewCompon import { type MockedResponse } from '@apollo/client/testing'; import gql from 'graphql-tag'; import { QUERY_DEFAULT_LIMIT_RECORDS } from 'twenty-shared/constants'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; import { getJestMetadataAndApolloMocksWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksWrapper'; import { JestRecordIndexContextProviderWrapper } from '~/testing/jest/JestRecordIndexContextProviderWrapper'; -import { - getMockPersonObjectMetadataItem, - peopleQueryResult, -} from '~/testing/mock-data/people'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; +import { generateMockRecordConnection } from '~/testing/utils/generateMockRecordConnection'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; const recordTableId = 'people'; const objectNameSingular = 'person'; -const mockPersonObjectMetadataItem = getMockPersonObjectMetadataItem(); +const mockPersonObjectMetadataItem = getMockObjectMetadataItemOrThrow('person'); + +const flatPersonRecords = mockedPersonRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); const ObjectNamePluralSetter = ({ children }: { children: ReactNode }) => { return <>{children}; @@ -104,14 +108,10 @@ const mocks: MockedResponse[] = [ }, result: jest.fn(() => ({ data: { - people: peopleQueryResult.people, - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - startCursor: null, - endCursor: null, - }, - totalCount: 16, + people: generateMockRecordConnection({ + objectNameSingular: 'person', + records: flatPersonRecords, + }), }, })), }, @@ -182,7 +182,7 @@ describe('useRecordIndexTableQuery', () => { ); await waitFor(() => { - expect(result.current.records).toHaveLength(16); + expect(result.current.records).toHaveLength(flatPersonRecords.length); }); }); }); diff --git a/packages/twenty-front/src/modules/object-record/hooks/__tests__/useUpdateManyRecords.test.tsx b/packages/twenty-front/src/modules/object-record/hooks/__tests__/useUpdateManyRecords.test.tsx index d61bea04a0..aa3e7ea8e2 100644 --- a/packages/twenty-front/src/modules/object-record/hooks/__tests__/useUpdateManyRecords.test.tsx +++ b/packages/twenty-front/src/modules/object-record/hooks/__tests__/useUpdateManyRecords.test.tsx @@ -18,8 +18,8 @@ import { InMemoryCache } from '@apollo/client'; import { type MockedResponse } from '@apollo/client/testing'; import { act } from 'react'; import { getJestMetadataAndApolloMocksWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksWrapper'; -import { getMockPersonObjectMetadataItem } from '~/testing/mock-data/people'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; const getDefaultMocks = ( overrides?: Partial, @@ -44,7 +44,7 @@ const mockRefetchAggregateQueries = jest.fn(); refetchAggregateQueries: mockRefetchAggregateQueries, }); -const objectMetadataItem = getMockPersonObjectMetadataItem(); +const objectMetadataItem = getMockObjectMetadataItemOrThrow('person'); const objectMetadataItems = generatedMockObjectMetadataItems; const expectedCachedRecordsWithUpdatedCity = personRecords.map( diff --git a/packages/twenty-front/src/modules/object-record/record-aggregate/utils/__tests__/getAggregateLabelWithFieldName.test.ts b/packages/twenty-front/src/modules/object-record/record-aggregate/utils/__tests__/getAggregateLabelWithFieldName.test.ts index 733fc474dd..d14633f359 100644 --- a/packages/twenty-front/src/modules/object-record/record-aggregate/utils/__tests__/getAggregateLabelWithFieldName.test.ts +++ b/packages/twenty-front/src/modules/object-record/record-aggregate/utils/__tests__/getAggregateLabelWithFieldName.test.ts @@ -1,12 +1,12 @@ import { getAggregateLabelWithFieldName } from '@/object-record/record-aggregate/utils/getAggregateLabelWithFieldName'; import { AggregateOperations } from '@/object-record/record-table/constants/AggregateOperations'; import { findByProperty } from 'twenty-shared/utils'; -import { getMockCompanyObjectMetadataItem } from '~/testing/mock-data/companies'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; describe('getAggregateLabelWithFieldName', () => { - const mockFieldMetadataItem = getMockCompanyObjectMetadataItem().fields.find( - findByProperty('name', 'name'), - )!; + const mockFieldMetadataItem = getMockObjectMetadataItemOrThrow( + 'company', + ).fields.find(findByProperty('name', 'name'))!; it('should return correct label for provided field metadata item and operation', () => { expect( diff --git a/packages/twenty-front/src/modules/object-record/record-aggregate/utils/__tests__/transformAggregateRawValueIntoAggregateDisplayValue.test.ts b/packages/twenty-front/src/modules/object-record/record-aggregate/utils/__tests__/transformAggregateRawValueIntoAggregateDisplayValue.test.ts index 453c7b0900..a49bc3b3bf 100644 --- a/packages/twenty-front/src/modules/object-record/record-aggregate/utils/__tests__/transformAggregateRawValueIntoAggregateDisplayValue.test.ts +++ b/packages/twenty-front/src/modules/object-record/record-aggregate/utils/__tests__/transformAggregateRawValueIntoAggregateDisplayValue.test.ts @@ -7,10 +7,11 @@ import { DateAggregateOperations } from '@/object-record/record-table/constants/ import { enUS } from 'date-fns/locale'; import { findByProperty } from 'twenty-shared/utils'; import { FieldMetadataType } from '~/generated-metadata/graphql'; -import { getMockCompanyObjectMetadataItem } from '~/testing/mock-data/companies'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; describe('transformAggregateRawValueIntoAggregateDisplayValue', () => { - const mockCompanyObjectMetadataItem = getMockCompanyObjectMetadataItem(); + const mockCompanyObjectMetadataItem = + getMockObjectMetadataItemOrThrow('company'); const mockCompanyEmployeesFieldMetadataItem = mockCompanyObjectMetadataItem.fields.find( findByProperty('name', 'employees'), diff --git a/packages/twenty-front/src/modules/object-record/record-field-list/record-detail-section/duplicate/components/__stories__/RecordDetailDuplicatesSection.stories.tsx b/packages/twenty-front/src/modules/object-record/record-field-list/record-detail-section/duplicate/components/__stories__/RecordDetailDuplicatesSection.stories.tsx index 328e0b26d3..0c7a8921df 100644 --- a/packages/twenty-front/src/modules/object-record/record-field-list/record-detail-section/duplicate/components/__stories__/RecordDetailDuplicatesSection.stories.tsx +++ b/packages/twenty-front/src/modules/object-record/record-field-list/record-detail-section/duplicate/components/__stories__/RecordDetailDuplicatesSection.stories.tsx @@ -6,13 +6,10 @@ import { MemoryRouterDecorator } from '~/testing/decorators/MemoryRouterDecorato import { ObjectMetadataItemsDecorator } from '~/testing/decorators/ObjectMetadataItemsDecorator'; import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator'; import { graphqlMocks } from '~/testing/graphqlMocks'; -import { getCompaniesMock } from '~/testing/mock-data/companies'; - import { RecordDetailDuplicatesSection } from '@/object-record/record-field-list/record-detail-section/duplicate/components/RecordDetailDuplicatesSection'; import { ComponentDecorator } from 'twenty-ui/testing'; import { PageLayoutType } from '~/generated-metadata/graphql'; - -const companiesMock = getCompaniesMock(); +import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; const meta: Meta = { title: @@ -23,7 +20,7 @@ const meta: Meta = { = { MemoryRouterDecorator, ], args: { - objectRecordId: companiesMock[0].id, + objectRecordId: mockedCompanyRecords[0].id, objectNameSingular: CoreObjectNameSingular.Company, }, parameters: { diff --git a/packages/twenty-front/src/modules/object-record/record-field-list/record-detail-section/relation/components/__stories__/RecordDetailRelationSection.stories.tsx b/packages/twenty-front/src/modules/object-record/record-field-list/record-detail-section/relation/components/__stories__/RecordDetailRelationSection.stories.tsx index 8dd39e29b0..a467ec6c4e 100644 --- a/packages/twenty-front/src/modules/object-record/record-field-list/record-detail-section/relation/components/__stories__/RecordDetailRelationSection.stories.tsx +++ b/packages/twenty-front/src/modules/object-record/record-field-list/record-detail-section/relation/components/__stories__/RecordDetailRelationSection.stories.tsx @@ -7,8 +7,6 @@ import { ObjectMetadataItemsDecorator } from '~/testing/decorators/ObjectMetadat import { RecordStoreDecorator } from '~/testing/decorators/RecordStoreDecorator'; import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator'; import { graphqlMocks } from '~/testing/graphqlMocks'; -import { getCompaniesMock } from '~/testing/mock-data/companies'; - import { ContextStoreComponentInstanceContext } from '@/context-store/states/contexts/ContextStoreComponentInstanceContext'; import { RecordFieldsScopeContextProvider } from '@/object-record/record-field-list/contexts/RecordFieldsScopeContext'; import { RecordDetailRelationSection } from '@/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationSection'; @@ -16,11 +14,11 @@ import { LayoutRenderingProvider } from '@/ui/layout/contexts/LayoutRenderingCon import { ComponentDecorator } from 'twenty-ui/testing'; import { PageLayoutType } from '~/generated-metadata/graphql'; import { RightDrawerDecorator } from '~/testing/decorators/RightDrawerDecorator'; -import { allMockPersonRecords } from '~/testing/mock-data/people'; +import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; -const companiesMock = getCompaniesMock(); - const mockedCompanyObjectMetadataItem = generatedMockObjectMetadataItems.find( (item) => item.nameSingular === 'company', ); @@ -38,7 +36,7 @@ const meta: Meta = { = { > = { ], parameters: { msw: graphqlMocks, - records: companiesMock, + records: mockedCompanyRecords, }, }; @@ -87,15 +85,19 @@ type Story = StoryObj; export const EmptyState: Story = {}; +const flatPersonRecords = mockedPersonRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); + export const WithRecords: Story = { decorators: [RecordStoreDecorator], parameters: { records: [ { - ...companiesMock[0], - people: allMockPersonRecords, + ...mockedCompanyRecords[0], + people: flatPersonRecords, }, - ...allMockPersonRecords, + ...flatPersonRecords, ], }, }; diff --git a/packages/twenty-front/src/modules/object-record/record-field/ui/meta-types/input/components/__stories__/RelationManyToOneFieldInput.stories.tsx b/packages/twenty-front/src/modules/object-record/record-field/ui/meta-types/input/components/__stories__/RelationManyToOneFieldInput.stories.tsx index 34ffaaced3..a8e7bc331e 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/ui/meta-types/input/components/__stories__/RelationManyToOneFieldInput.stories.tsx +++ b/packages/twenty-front/src/modules/object-record/record-field/ui/meta-types/input/components/__stories__/RelationManyToOneFieldInput.stories.tsx @@ -27,7 +27,7 @@ import { useSetAtomComponentState } from '@/ui/utilities/state/jotai/hooks/useSe import { FieldMetadataType } from 'twenty-shared/types'; import { RelationManyToOneFieldInput } from '@/object-record/record-field/ui/meta-types/input/components/RelationManyToOneFieldInput'; -import { getCompaniesMock } from '~/testing/mock-data/companies'; +import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; import { getMockFieldMetadataItemOrThrow } from '~/testing/utils/getMockFieldMetadataItemOrThrow'; import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; import { getFieldInputEventContextProviderWithJestMocks } from './utils/getFieldInputEventContextProviderWithJestMocks'; @@ -42,7 +42,6 @@ const peopleFieldOnCompany = getMockFieldMetadataItemOrThrow({ objectMetadataItem: companyMetadata, fieldName: 'people', }); -const companiesMock = getCompaniesMock(); const RelationWorkspaceSetterEffect = () => { const setRecordFieldInputLayoutDirectionLoading = useSetAtomComponentState( @@ -169,9 +168,13 @@ export const Submit: Story = { expect(handleSubmitMocked).toHaveBeenCalledTimes(0); - const item = await canvas.findByText(companiesMock[0].name, undefined, { - timeout: 3000, - }); + const item = await canvas.findByText( + mockedCompanyRecords[0].name, + undefined, + { + timeout: 3000, + }, + ); await userEvent.click(item); @@ -186,7 +189,7 @@ export const Cancel: Story = { const canvas = within(canvasElement); expect(handleCancelMocked).toHaveBeenCalledTimes(0); - await canvas.findByText(companiesMock[0].name, undefined, { + await canvas.findByText(mockedCompanyRecords[0].name, undefined, { timeout: 3000, }); diff --git a/packages/twenty-front/src/modules/object-record/record-filter/utils/__tests__/computeViewRecordGqlOperationFilter.test.ts b/packages/twenty-front/src/modules/object-record/record-filter/utils/__tests__/computeViewRecordGqlOperationFilter.test.ts index a5037c75a2..070b9ecaed 100644 --- a/packages/twenty-front/src/modules/object-record/record-filter/utils/__tests__/computeViewRecordGqlOperationFilter.test.ts +++ b/packages/twenty-front/src/modules/object-record/record-filter/utils/__tests__/computeViewRecordGqlOperationFilter.test.ts @@ -10,13 +10,11 @@ import { isDefined, } from 'twenty-shared/utils'; import { FieldMetadataType } from '~/generated-metadata/graphql'; -import { getCompaniesMock } from '~/testing/mock-data/companies'; +import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; import { getMockFieldMetadataItemOrThrow } from '~/testing/utils/getMockFieldMetadataItemOrThrow'; import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; -const companiesMock = getCompaniesMock(); - const companyMockObjectMetadataItem = getMockObjectMetadataItemOrThrow('company'); @@ -44,9 +42,9 @@ describe('computeViewRecordGqlOperationFilter', () => { const nameFilter: RecordFilter = { id: 'company-name-filter', - value: companiesMock[0].name, + value: mockedCompanyRecords[0].name, fieldMetadataId: companyMockNameFieldMetadataId.id, - displayValue: companiesMock[0].name, + displayValue: mockedCompanyRecords[0].name, operand: RecordFilterOperand.CONTAINS, type: 'TEXT', label: 'Name', @@ -61,7 +59,7 @@ describe('computeViewRecordGqlOperationFilter', () => { expect(result).toEqual({ name: { - ilike: `%${companiesMock[0].name}%`, + ilike: `%${mockedCompanyRecords[0].name}%`, }, }); }); @@ -87,9 +85,9 @@ describe('computeViewRecordGqlOperationFilter', () => { const nameFilter: RecordFilter = { id: 'company-name-filter', - value: companiesMock[0].name, + value: mockedCompanyRecords[0].name, fieldMetadataId: companyMockNameFieldMetadataId.id, - displayValue: companiesMock[0].name, + displayValue: mockedCompanyRecords[0].name, operand: ViewFilterOperand.CONTAINS, type: FieldMetadataType.TEXT, label: 'Name', @@ -116,7 +114,7 @@ describe('computeViewRecordGqlOperationFilter', () => { and: [ { name: { - ilike: `%${companiesMock[0].name}%`, + ilike: `%${mockedCompanyRecords[0].name}%`, }, }, { diff --git a/packages/twenty-front/src/modules/object-record/record-filter/utils/__tests__/isRecordMatchingFilter.test.ts b/packages/twenty-front/src/modules/object-record/record-filter/utils/__tests__/isRecordMatchingFilter.test.ts index 75ba860370..53d804ec56 100644 --- a/packages/twenty-front/src/modules/object-record/record-filter/utils/__tests__/isRecordMatchingFilter.test.ts +++ b/packages/twenty-front/src/modules/object-record/record-filter/utils/__tests__/isRecordMatchingFilter.test.ts @@ -1,12 +1,15 @@ import { type RecordGqlOperationFilter } from 'twenty-shared/types'; -import { getCompaniesMock } from '~/testing/mock-data/companies'; +import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { type Company } from '@/companies/types/Company'; import { getCompanyDomainName } from '@/object-metadata/utils/getCompanyDomainName'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; import { isRecordMatchingFilter } from '@/object-record/record-filter/utils/isRecordMatchingFilter'; -const companiesMock = getCompaniesMock(); +const companiesMock = mockedCompanyRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); const companyMockObjectMetadataItem = generatedMockObjectMetadataItems.find( (item) => item.nameSingular === 'company', 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 2d02615da8..15e1dde3a2 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 @@ -10,13 +10,11 @@ import { MemoryRouterDecorator } from '~/testing/decorators/MemoryRouterDecorato import { ObjectMetadataItemsDecorator } from '~/testing/decorators/ObjectMetadataItemsDecorator'; import { RecordTableDecorator } from '~/testing/decorators/RecordTableDecorator'; import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator'; -import { getCompaniesMock } from '~/testing/mock-data/companies'; 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 { sleep } from '~/utils/sleep'; -const companiesMock = getCompaniesMock(); - const meta: Meta = { title: 'Modules/ObjectRecord/RecordTable/RecordTable', component: RecordTableWithWrappers, @@ -73,7 +71,11 @@ export const ScrolledLeft: Story = { }, play: async ({ canvasElement }) => { const canvas = within(canvasElement); - await canvas.findAllByText(companiesMock[0].name, {}, { timeout: 3000 }); + await canvas.findAllByText( + mockedCompanyRecords[0].name, + {}, + { timeout: 3000 }, + ); const scrollWrapper = canvasElement.ownerDocument.body.querySelector( '.scroll-wrapper-x-enabled', @@ -91,7 +93,7 @@ export const ScrolledLeft: Story = { }, }); - await canvas.findByText(companiesMock[1].name); + await canvas.findByText(mockedCompanyRecords[1].name); }, }; @@ -103,7 +105,11 @@ export const ScrolledBottom: Story = { }, play: async ({ canvasElement }) => { const canvas = within(canvasElement); - await canvas.findAllByText(companiesMock[0].name, {}, { timeout: 3000 }); + await canvas.findAllByText( + mockedCompanyRecords[0].name, + {}, + { timeout: 3000 }, + ); const scrollWrapper = canvasElement.ownerDocument.body.querySelector( '.scroll-wrapper-y-enabled', @@ -121,6 +127,6 @@ export const ScrolledBottom: Story = { }, }); - await canvas.findByText(companiesMock[1].name); + await canvas.findByText(mockedCompanyRecords[1].name); }, }; diff --git a/packages/twenty-front/src/modules/object-record/spreadsheet-import/utils/__tests__/spreadsheetImportGetUnicityTableHook.test.ts b/packages/twenty-front/src/modules/object-record/spreadsheet-import/utils/__tests__/spreadsheetImportGetUnicityTableHook.test.ts index 498faed975..9fe72009ff 100644 --- a/packages/twenty-front/src/modules/object-record/spreadsheet-import/utils/__tests__/spreadsheetImportGetUnicityTableHook.test.ts +++ b/packages/twenty-front/src/modules/object-record/spreadsheet-import/utils/__tests__/spreadsheetImportGetUnicityTableHook.test.ts @@ -2,11 +2,11 @@ import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataI import { spreadsheetImportGetUnicityTableHook } from '@/object-record/spreadsheet-import/utils/spreadsheetImportGetUnicityTableHook'; import { type ImportedStructuredRow } from '@/spreadsheet-import/types'; import { IndexType } from '~/generated-metadata/graphql'; -import { getMockCompanyObjectMetadataItem } from '~/testing/mock-data/companies'; import { getMockFieldMetadataItemOrThrow } from '~/testing/utils/getMockFieldMetadataItemOrThrow'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; describe('spreadsheetImportGetUnicityTableHook', () => { - const baseMockCompany = getMockCompanyObjectMetadataItem(); + const baseMockCompany = getMockObjectMetadataItemOrThrow('company'); const nameField = getMockFieldMetadataItemOrThrow({ objectMetadataItem: baseMockCompany, 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 2f79abe035..76f4443119 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 @@ -4,18 +4,17 @@ import { generateDepthRecordGqlFieldsFromRecord } from '@/object-record/graphql/ import { type FieldActorForInputValue } from '@/object-record/record-field/ui/types/FieldMetadata'; import { computeOptimisticRecordFromInput } from '@/object-record/utils/computeOptimisticRecordFromInput'; import { InMemoryCache } from '@apollo/client'; -import { getMockCompanyObjectMetadataItem } from '~/testing/mock-data/companies'; -import { getMockPersonObjectMetadataItem } from '~/testing/mock-data/people'; import { mockCurrentWorkspaceMembers } from '~/testing/mock-data/workspace-members'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { getMockFieldMetadataItemOrThrow } from '~/testing/utils/getMockFieldMetadataItemOrThrow'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; describe('computeOptimisticRecordFromInput', () => { const currentWorkspaceMember = mockCurrentWorkspaceMembers[0]; const currentWorkspaceMemberFullname = `${currentWorkspaceMember.name.firstName} ${currentWorkspaceMember.name.lastName}`; it('should generate correct optimistic record if no relation field is present', () => { const cache = new InMemoryCache(); - const personObjectMetadataItem = getMockPersonObjectMetadataItem(); + const personObjectMetadataItem = getMockObjectMetadataItemOrThrow('person'); const result = computeOptimisticRecordFromInput({ currentWorkspaceMember, @@ -35,7 +34,7 @@ describe('computeOptimisticRecordFromInput', () => { it('should generate correct optimistic record with actor field', () => { const cache = new InMemoryCache(); - const personObjectMetadataItem = getMockPersonObjectMetadataItem(); + const personObjectMetadataItem = getMockObjectMetadataItemOrThrow('person'); const actorFieldValueForInput: FieldActorForInputValue = { context: {}, source: 'API', @@ -65,7 +64,7 @@ describe('computeOptimisticRecordFromInput', () => { it('should generate correct optimistic record createdBy when recordInput contains id', () => { const cache = new InMemoryCache(); - const personObjectMetadataItem = getMockPersonObjectMetadataItem(); + const personObjectMetadataItem = getMockObjectMetadataItemOrThrow('person'); const result = computeOptimisticRecordFromInput({ currentWorkspaceMember, objectMetadataItems: generatedMockObjectMetadataItems, @@ -94,7 +93,7 @@ describe('computeOptimisticRecordFromInput', () => { it('should generate correct optimistic record if relation field is present but cache is empty', () => { const cache = new InMemoryCache(); - const personObjectMetadataItem = getMockPersonObjectMetadataItem(); + const personObjectMetadataItem = getMockObjectMetadataItemOrThrow('person'); const result = computeOptimisticRecordFromInput({ currentWorkspaceMember, @@ -114,8 +113,9 @@ describe('computeOptimisticRecordFromInput', () => { it('should generate correct optimistic record even if recordInput contains field __typename', () => { const cache = new InMemoryCache(); - const personObjectMetadataItem = getMockPersonObjectMetadataItem(); - const companyObjectMetadataItem = getMockCompanyObjectMetadataItem(); + const personObjectMetadataItem = getMockObjectMetadataItemOrThrow('person'); + const companyObjectMetadataItem = + getMockObjectMetadataItemOrThrow('company'); const companyRecord = { id: '123', @@ -163,8 +163,9 @@ describe('computeOptimisticRecordFromInput', () => { it('should generate correct optimistic record if relation field is present and cache is not empty', () => { const cache = new InMemoryCache(); - const personObjectMetadataItem = getMockPersonObjectMetadataItem(); - const companyObjectMetadataItem = getMockCompanyObjectMetadataItem(); + const personObjectMetadataItem = getMockObjectMetadataItemOrThrow('person'); + const companyObjectMetadataItem = + getMockObjectMetadataItemOrThrow('company'); const companyRecord = { id: '123', @@ -214,7 +215,7 @@ describe('computeOptimisticRecordFromInput', () => { it('should generate correct optimistic record if relation field is null and cache is empty', () => { const cache = new InMemoryCache(); - const personObjectMetadataItem = getMockPersonObjectMetadataItem(); + const personObjectMetadataItem = getMockObjectMetadataItemOrThrow('person'); const result = computeOptimisticRecordFromInput({ currentWorkspaceMember, @@ -235,7 +236,7 @@ describe('computeOptimisticRecordFromInput', () => { it('should throw an error if recordInput contains fields unrelated to the current objectMetadata', () => { const cache = new InMemoryCache(); - const personObjectMetadataItem = getMockPersonObjectMetadataItem(); + const personObjectMetadataItem = getMockObjectMetadataItemOrThrow('person'); expect(() => computeOptimisticRecordFromInput({ diff --git a/packages/twenty-front/src/modules/settings/roles/role-assignment/components/stories/SettingsRoleAssignment.stories.tsx b/packages/twenty-front/src/modules/settings/roles/role-assignment/components/stories/SettingsRoleAssignment.stories.tsx index 625b04e215..f28f0749f0 100644 --- a/packages/twenty-front/src/modules/settings/roles/role-assignment/components/stories/SettingsRoleAssignment.stories.tsx +++ b/packages/twenty-front/src/modules/settings/roles/role-assignment/components/stories/SettingsRoleAssignment.stories.tsx @@ -1,10 +1,13 @@ +import { DateFormat } from '@/localization/constants/DateFormat'; +import { TimeFormat } from '@/localization/constants/TimeFormat'; import { SettingsRoleAssignment } from '@/settings/roles/role-assignment/components/SettingsRoleAssignment'; import { settingsDraftRoleFamilyState } from '@/settings/roles/states/settingsDraftRoleFamilyState'; import { useSetAtomFamilyState } from '@/ui/utilities/state/jotai/hooks/useSetAtomFamilyState'; +import { UserContext } from '@/users/contexts/UserContext'; import { type Meta, type StoryObj } from '@storybook/react-vite'; import { isDefined } from 'twenty-shared/utils'; import { ComponentDecorator, RouterDecorator } from 'twenty-ui/testing'; -import { getRolesMock } from '~/testing/mock-data/roles'; +import { mockedRoles } from '~/testing/mock-data/generated/metadata/roles/mock-roles-data'; const SettingsRoleAssignmentWrapper = ( args: React.ComponentProps, @@ -14,7 +17,7 @@ const SettingsRoleAssignmentWrapper = ( args.roleId, ); - const role = getRolesMock().find((role) => role.id === args.roleId); + const role = mockedRoles.find((role) => role.id === args.roleId); if (isDefined(role)) { setSettingsDraftRole(role); @@ -26,7 +29,21 @@ const SettingsRoleAssignmentWrapper = ( const meta: Meta = { title: 'Modules/Settings/Roles/RoleAssignment/SettingsRoleAssignment', component: SettingsRoleAssignmentWrapper, - decorators: [RouterDecorator, ComponentDecorator], + decorators: [ + (Story) => ( + + + + ), + RouterDecorator, + ComponentDecorator, + ], }; export default meta; @@ -34,7 +51,7 @@ type Story = StoryObj; export const Default: Story = { args: { - roleId: '1', + roleId: mockedRoles[0].id, }, }; diff --git a/packages/twenty-front/src/modules/settings/roles/role-permissions/components/stories/SettingsRolePermissions.stories.tsx b/packages/twenty-front/src/modules/settings/roles/role-permissions/components/stories/SettingsRolePermissions.stories.tsx index 6c3de310b8..8d99714885 100644 --- a/packages/twenty-front/src/modules/settings/roles/role-permissions/components/stories/SettingsRolePermissions.stories.tsx +++ b/packages/twenty-front/src/modules/settings/roles/role-permissions/components/stories/SettingsRolePermissions.stories.tsx @@ -4,7 +4,7 @@ import { useSetAtomFamilyState } from '@/ui/utilities/state/jotai/hooks/useSetAt import { type Meta, type StoryObj } from '@storybook/react-vite'; import { isDefined } from 'twenty-shared/utils'; import { ComponentDecorator, RouterDecorator } from 'twenty-ui/testing'; -import { getRolesMock } from '~/testing/mock-data/roles'; +import { mockedRoles } from '~/testing/mock-data/generated/metadata/roles/mock-roles-data'; const SettingsRolePermissionsWrapper = ( args: React.ComponentProps, @@ -14,7 +14,7 @@ const SettingsRolePermissionsWrapper = ( args.roleId, ); - const role = getRolesMock().find((role) => role.id === args.roleId); + const role = mockedRoles.find((role) => role.id === args.roleId); if (isDefined(role)) { setSettingsDraftRole(role); @@ -39,14 +39,14 @@ type Story = StoryObj; export const Default: Story = { args: { - roleId: '1', + roleId: mockedRoles[0].id, isEditable: true, }, }; export const ReadOnly: Story = { args: { - roleId: '1', + roleId: mockedRoles[0].id, isEditable: false, }, }; diff --git a/packages/twenty-front/src/modules/settings/roles/role-settings/components/stories/SettingsRoleSettings.stories.tsx b/packages/twenty-front/src/modules/settings/roles/role-settings/components/stories/SettingsRoleSettings.stories.tsx index 11b615ab59..26c5d731dd 100644 --- a/packages/twenty-front/src/modules/settings/roles/role-settings/components/stories/SettingsRoleSettings.stories.tsx +++ b/packages/twenty-front/src/modules/settings/roles/role-settings/components/stories/SettingsRoleSettings.stories.tsx @@ -4,7 +4,7 @@ import { useSetAtomFamilyState } from '@/ui/utilities/state/jotai/hooks/useSetAt import { type Meta, type StoryObj } from '@storybook/react-vite'; import { isDefined } from 'twenty-shared/utils'; import { ComponentDecorator, RouterDecorator } from 'twenty-ui/testing'; -import { getRolesMock } from '~/testing/mock-data/roles'; +import { mockedRoles } from '~/testing/mock-data/generated/metadata/roles/mock-roles-data'; const SettingsRoleSettingsWrapper = ( args: React.ComponentProps, @@ -14,7 +14,7 @@ const SettingsRoleSettingsWrapper = ( args.roleId, ); - const role = getRolesMock().find((role) => role.id === args.roleId); + const role = mockedRoles.find((role) => role.id === args.roleId); if (isDefined(role)) { setSettingsDraftRole(role); @@ -40,7 +40,7 @@ type Story = StoryObj; export const Default: Story = { args: { - roleId: '1', + roleId: mockedRoles[0].id, isEditable: true, isCreateMode: false, }, @@ -48,7 +48,7 @@ export const Default: Story = { export const ReadOnly: Story = { args: { - roleId: '1', + roleId: mockedRoles[0].id, isEditable: false, isCreateMode: false, }, @@ -64,7 +64,7 @@ export const PendingRole: Story = { export const CreateMode: Story = { args: { - roleId: '1', + roleId: mockedRoles[0].id, isEditable: true, isCreateMode: true, }, diff --git a/packages/twenty-front/src/modules/views/hooks/__tests__/useInitializeFilterOnFieldMetadataItemFromViewBarFilterDropdown.test.tsx b/packages/twenty-front/src/modules/views/hooks/__tests__/useInitializeFilterOnFieldMetadataItemFromViewBarFilterDropdown.test.tsx index 9f2e3da916..74b16ac1dc 100644 --- a/packages/twenty-front/src/modules/views/hooks/__tests__/useInitializeFilterOnFieldMetadataItemFromViewBarFilterDropdown.test.tsx +++ b/packages/twenty-front/src/modules/views/hooks/__tests__/useInitializeFilterOnFieldMetadataItemFromViewBarFilterDropdown.test.tsx @@ -24,8 +24,8 @@ import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/use import { useSetAtomComponentState } from '@/ui/utilities/state/jotai/hooks/useSetAtomComponentState'; import { ViewBarFilterDropdownIds } from '@/views/constants/ViewBarFilterDropdownIds'; import { getFilterTypeFromFieldType } from 'twenty-shared/utils'; -import { getMockPersonObjectMetadataItem } from '~/testing/mock-data/people'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; const mockPushFocusItemToFocusStack = jest.fn(); @@ -35,7 +35,7 @@ jest.mock('@/ui/utilities/focus/hooks/usePushFocusItemToFocusStack', () => ({ }), })); -const peopleObjectMetadataItemMock = getMockPersonObjectMetadataItem(); +const peopleObjectMetadataItemMock = getMockObjectMetadataItemOrThrow('person'); const personCityFieldMetadataItemMock = peopleObjectMetadataItemMock.fields.find((field) => field.name === 'city'); const personCompanyFieldMetadataItemMock = diff --git a/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionDeleteRecord.stories.tsx b/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionDeleteRecord.stories.tsx index 0bcca859ff..fa8177ffb7 100644 --- a/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionDeleteRecord.stories.tsx +++ b/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionDeleteRecord.stories.tsx @@ -8,8 +8,9 @@ import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator'; import { WorkflowStepActionDrawerDecorator } from '~/testing/decorators/WorkflowStepActionDrawerDecorator'; import { WorkflowStepDecorator } from '~/testing/decorators/WorkflowStepDecorator'; import { WorkspaceDecorator } from '~/testing/decorators/WorkspaceDecorator'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; import { graphqlMocks } from '~/testing/graphqlMocks'; -import { allMockPersonRecords } from '~/testing/mock-data/people'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; import { getWorkflowNodeIdMock } from '~/testing/mock-data/workflow'; const DEFAULT_ACTION = { @@ -96,7 +97,11 @@ export const DisabledWithEmptyValues: Story = { }, }; -const peopleMock = allMockPersonRecords[0]; +const flatPersonRecords = mockedPersonRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); + +const peopleMock = flatPersonRecords[0]; export const DisabledWithDefaultStaticValues: Story = { args: { diff --git a/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionUpdateRecord.stories.tsx b/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionUpdateRecord.stories.tsx index 52f1ae85d8..c351e08461 100644 --- a/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionUpdateRecord.stories.tsx +++ b/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionUpdateRecord.stories.tsx @@ -8,8 +8,9 @@ import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator'; import { WorkflowStepActionDrawerDecorator } from '~/testing/decorators/WorkflowStepActionDrawerDecorator'; import { WorkflowStepDecorator } from '~/testing/decorators/WorkflowStepDecorator'; import { WorkspaceDecorator } from '~/testing/decorators/WorkspaceDecorator'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; import { graphqlMocks } from '~/testing/graphqlMocks'; -import { allMockPersonRecords } from '~/testing/mock-data/people'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; import { getWorkflowNodeIdMock } from '~/testing/mock-data/workflow'; const DEFAULT_ACTION = { @@ -109,7 +110,11 @@ export const DisabledWithEmptyValues: Story = { }, }; -const peopleMock = allMockPersonRecords[0]; +const flatPersonRecords = mockedPersonRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); + +const peopleMock = flatPersonRecords[0]; export const DisabledWithDefaultStaticValues: Story = { args: { diff --git a/packages/twenty-front/src/pages/object-record/__stories__/RecordShowPage.stories.tsx b/packages/twenty-front/src/pages/object-record/__stories__/RecordShowPage.stories.tsx index 471cf02576..5b77d02644 100644 --- a/packages/twenty-front/src/pages/object-record/__stories__/RecordShowPage.stories.tsx +++ b/packages/twenty-front/src/pages/object-record/__stories__/RecordShowPage.stories.tsx @@ -2,16 +2,19 @@ import { type Meta, type StoryObj } from '@storybook/react-vite'; import { HttpResponse, graphql } from 'msw'; import { type PageDecoratorArgs } from '~/testing/decorators/PageDecorator'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; import { graphqlMocks } from '~/testing/graphqlMocks'; -import { - allMockPersonRecords, - peopleQueryResult, -} from '~/testing/mock-data/people'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; import { mockedWorkspaceMemberData } from '~/testing/mock-data/users'; +import { generateMockRecordConnection } from '~/testing/utils/generateMockRecordConnection'; import { RecordShowPage } from '~/pages/object-record/RecordShowPage'; -const personRecord = allMockPersonRecords[0]; +const flatPersonRecords = mockedPersonRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); + +const personRecord = flatPersonRecords[0]; const meta: Meta = { title: 'Pages/ObjectRecord/RecordShowPage', component: RecordShowPage, @@ -27,7 +30,12 @@ const meta: Meta = { handlers: [ graphql.query('FindManyPeople', () => { return HttpResponse.json({ - data: peopleQueryResult, + data: { + people: generateMockRecordConnection({ + objectNameSingular: 'person', + records: flatPersonRecords, + }), + }, }); }), graphql.query('FindOnePerson', () => { diff --git a/packages/twenty-front/src/testing/decorators/ContextStoreDecorator.tsx b/packages/twenty-front/src/testing/decorators/ContextStoreDecorator.tsx index 55e4fed904..a116f4e4b3 100644 --- a/packages/twenty-front/src/testing/decorators/ContextStoreDecorator.tsx +++ b/packages/twenty-front/src/testing/decorators/ContextStoreDecorator.tsx @@ -6,7 +6,7 @@ import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context import { ContextStoreComponentInstanceContext } from '@/context-store/states/contexts/ContextStoreComponentInstanceContext'; import { useSetAtomComponentState } from '@/ui/utilities/state/jotai/hooks/useSetAtomComponentState'; import { isUndefined } from '@sniptt/guards'; -import { getMockCompanyObjectMetadataItem } from '~/testing/mock-data/companies'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; export const ContextStoreDecorator: Decorator = (Story, context) => { const { contextStore } = context.parameters; @@ -24,7 +24,7 @@ export const ContextStoreDecorator: Decorator = (Story, context) => { const [isLoaded, setIsLoaded] = useState(false); - const objectMetadataItem = getMockCompanyObjectMetadataItem(); + const objectMetadataItem = getMockObjectMetadataItemOrThrow('company'); useEffect(() => { setContextStoreCurrentObjectMetadataItemId(objectMetadataItem.id); diff --git a/packages/twenty-front/src/testing/decorators/RecordTableDecorator.tsx b/packages/twenty-front/src/testing/decorators/RecordTableDecorator.tsx index fa7b5c9904..11d96e40da 100644 --- a/packages/twenty-front/src/testing/decorators/RecordTableDecorator.tsx +++ b/packages/twenty-front/src/testing/decorators/RecordTableDecorator.tsx @@ -36,7 +36,7 @@ import { type View } from '@/views/types/View'; import { mapViewFieldToRecordField } from '@/views/utils/mapViewFieldToRecordField'; import { useEffect, useMemo } from 'react'; import { isDefined } from 'twenty-shared/utils'; -import { getCompaniesMock } from '~/testing/mock-data/companies'; +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'; @@ -74,7 +74,7 @@ const InternalTableStateLoaderEffect = ({ useEffect(() => { loadRecordIndexStates(view, objectMetadataItem); setRecordTableData({ - records: getCompaniesMock(), + records: [...mockedCompanyRecords], }); const recordFields = view.viewFields .map(mapViewFieldToRecordField) diff --git a/packages/twenty-front/src/testing/decorators/getFieldDecorator.tsx b/packages/twenty-front/src/testing/decorators/getFieldDecorator.tsx index d6f34f9c2e..ed0dc88729 100644 --- a/packages/twenty-front/src/testing/decorators/getFieldDecorator.tsx +++ b/packages/twenty-front/src/testing/decorators/getFieldDecorator.tsx @@ -1,20 +1,26 @@ import { type Decorator } from '@storybook/react-vite'; import { useCallback, useEffect } from 'react'; +import { type Task } from '@/activities/types/Task'; import { formatFieldMetadataItemAsColumnDefinition } from '@/object-metadata/utils/formatFieldMetadataItemAsColumnDefinition'; import { isLabelIdentifierField } from '@/object-metadata/utils/isLabelIdentifierField'; +import { getRecordFromRecordNode } from '@/object-record/cache/utils/getRecordFromRecordNode'; import { FieldContext } from '@/object-record/record-field/ui/contexts/FieldContext'; import { RecordFieldComponentInstanceContext } from '@/object-record/record-field/ui/states/contexts/RecordFieldComponentInstanceContext'; import { recordStoreFamilyState } from '@/object-record/record-store/states/recordStoreFamilyState'; import { type ObjectRecord } from '@/object-record/types/ObjectRecord'; import { jotaiStore } from '@/ui/utilities/state/jotai/jotaiStore'; import { CustomError, isDefined } from 'twenty-shared/utils'; -import { getCompaniesMock } from '~/testing/mock-data/companies'; -import { getPeopleRecordConnectionMock } from '~/testing/mock-data/people'; -import { mockedTasks } from '~/testing/mock-data/tasks'; +import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; +import { mockedTaskRecords } from '~/testing/mock-data/generated/data/tasks/mock-tasks-data'; +import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data'; import { getMockFieldMetadataItemOrThrow } from '~/testing/utils/getMockFieldMetadataItemOrThrow'; import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; +const mockedTasks = mockedTaskRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); + const RecordMockSetterEffect = ({ companies, people, @@ -52,7 +58,7 @@ export const getFieldDecorator = fieldValue?: any, ): Decorator => (Story) => { - const companiesMock = getCompaniesMock(); + const companiesMock = [...mockedCompanyRecords]; const companies = objectNameSingular === 'company' && isDefined(fieldValue) @@ -62,7 +68,7 @@ export const getFieldDecorator = ] : companiesMock; - const peopleMock = getPeopleRecordConnectionMock(); + const peopleMock = [...mockedPersonRecords]; const people = objectNameSingular === 'person' && isDefined(fieldValue) diff --git a/packages/twenty-front/src/testing/graphqlMocks.ts b/packages/twenty-front/src/testing/graphqlMocks.ts index 454dabd364..2a7bd2419b 100644 --- a/packages/twenty-front/src/testing/graphqlMocks.ts +++ b/packages/twenty-front/src/testing/graphqlMocks.ts @@ -7,15 +7,11 @@ import { FIND_MANY_OBJECT_METADATA_ITEMS } from '@/object-metadata/graphql/queri 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 { - getCompaniesRecordConnectionMock, - getCompanyDuplicateMock, -} from '~/testing/mock-data/companies'; import { mockedClientConfig } from '~/testing/mock-data/config'; import { mockedFavoritesData } from '~/testing/mock-data/favorite'; import { mockedFavoriteFoldersData } from '~/testing/mock-data/favorite-folders'; -import { mockedNotes } from '~/testing/mock-data/notes'; -import { getPeopleRecordConnectionMock } from '~/testing/mock-data/people'; +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'; @@ -26,23 +22,34 @@ import { LIST_PLANS } from '@/billing/graphql/queries/listPlans'; import { GET_ROLES } from '@/settings/roles/graphql/queries/getRolesQuery'; import { isDefined } from 'twenty-shared/utils'; import { mockBillingPlans } from '~/testing/mock-data/billing-plans'; +import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; import { mockedStandardObjectMetadataQueryResult } from '~/testing/mock-data/generated/metadata/objects/mock-objects-metadata'; -import { getRolesMock } from '~/testing/mock-data/roles'; -import { mockedTasks } from '~/testing/mock-data/tasks'; +import { mockedRoles } from '~/testing/mock-data/generated/metadata/roles/mock-roles-data'; +import { mockedTaskRecords } from '~/testing/mock-data/generated/data/tasks/mock-tasks-data'; + import { getWorkflowMock, getWorkflowVersionsMock, workflowQueryResult, } from '~/testing/mock-data/workflow'; import { oneSucceededWorkflowRunQueryResult } from '~/testing/mock-data/workflow-run'; +import { type Task } from '@/activities/types/Task'; import { getConnectionTypename } from '@/object-record/cache/utils/getConnectionTypename'; 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'; -const peopleMock = getPeopleRecordConnectionMock(); -const companiesMock = getCompaniesRecordConnectionMock(); -const duplicateCompanyMock = getCompanyDuplicateMock(); +const peopleMock = [...mockedPersonRecords]; +const companiesMock = [...mockedCompanyRecords]; +const duplicateCompanyMock = { + ...mockedCompanyRecords[0], + id: '8b40856a-2ec9-4c03-8bc0-c032c89e1824', +}; + +const flatTaskRecords = mockedTaskRecords.map((record) => + getRecordFromRecordNode({ recordNode: record }), +); // Wraps raw server-fetched records (which already have correct field shapes) // into a GraphQL connection response structure. @@ -411,90 +418,35 @@ export const graphqlMocks = { graphql.query('FindManyPeople', () => { return HttpResponse.json({ data: { - people: { - edges: peopleMock.map((person) => ({ - node: person, - cursor: null, - })), - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - startCursor: null, - endCursor: null, - }, - }, + people: wrapRecordsAsConnection('person', peopleMock), }, }); }), graphql.query('FindManyNotes', () => { return HttpResponse.json({ data: { - activities: { - edges: mockedNotes.map(({ noteTargets, ...rest }) => ({ - node: { - ...rest, - noteTargets: { - edges: noteTargets?.map((t) => ({ node: t })), - }, - attachments: { - edges: [], - }, - }, - cursor: null, - })), - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - startCursor: null, - endCursor: null, - }, - }, + notes: wrapRecordsAsConnection('note', [...mockedNoteRecords]), }, }); }), graphql.query('FindManyTasks', () => { return HttpResponse.json({ data: { - tasks: { - edges: mockedTasks.map(({ taskTargets, ...rest }) => ({ - node: { - ...rest, - taskTargets: { - edges: taskTargets?.map((t) => ({ node: t })), - }, - attachments: { - edges: [], - }, - }, - cursor: null, - })), - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - startCursor: null, - endCursor: null, - }, - }, + tasks: wrapRecordsAsConnection('task', [...mockedTaskRecords]), }, }); }), graphql.query('FindManyTaskTargets', () => { + const taskTargetNodes = flatTaskRecords.flatMap( + (task) => task.taskTargets ?? [], + ); + return HttpResponse.json({ data: { - taskTargets: { - edges: mockedTasks.flatMap((task) => - task.taskTargets.map((target) => ({ - node: target, - cursor: null, - })), - ), - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - startCursor: null, - endCursor: null, - }, - }, + taskTargets: wrapRecordsAsConnection( + 'taskTarget', + taskTargetNodes as Record[], + ), }, }); }), @@ -638,7 +590,7 @@ export const graphqlMocks = { graphql.query(getOperationName(GET_ROLES) ?? '', () => { return HttpResponse.json({ data: { - getRoles: getRolesMock(), + getRoles: mockedRoles, }, }); }), diff --git a/packages/twenty-front/src/testing/mock-data/companies.ts b/packages/twenty-front/src/testing/mock-data/companies.ts deleted file mode 100644 index 5df76f5b64..0000000000 --- a/packages/twenty-front/src/testing/mock-data/companies.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { type Company } from '@/companies/types/Company'; -import { type ObjectRecord } from '@/object-record/types/ObjectRecord'; -import { isDefined } from 'twenty-shared/utils'; -import { mockedCompanyRecords } from '~/testing/mock-data/generated/data/companies/mock-companies-data'; -import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; - -const allMockedCompanyRecords = mockedCompanyRecords as ObjectRecord[]; - -export const getCompaniesMock = () => { - return [...allMockedCompanyRecords] as Company[]; -}; - -export const getCompaniesRecordConnectionMock = () => { - return [...allMockedCompanyRecords]; -}; - -export const getMockCompanyObjectMetadataItem = () => { - return getMockObjectMetadataItemOrThrow('company'); -}; - -export const getCompanyDuplicateMock = () => { - return { - ...allMockedCompanyRecords[0], - id: '8b40856a-2ec9-4c03-8bc0-c032c89e1824', - }; -}; - -export const getMockCompanyRecord = ( - overrides?: Partial, - index = 0, -) => { - return { - ...allMockedCompanyRecords[index], - ...overrides, - }; -}; - -export const findMockCompanyRecord = ({ - id: queriedCompanyId, -}: Pick) => { - const company = allMockedCompanyRecords.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/favorite.ts b/packages/twenty-front/src/testing/mock-data/favorite.ts index fa97ceb785..6153372ea5 100644 --- a/packages/twenty-front/src/testing/mock-data/favorite.ts +++ b/packages/twenty-front/src/testing/mock-data/favorite.ts @@ -1,4 +1,4 @@ -import { getCompaniesMock } from '~/testing/mock-data/companies'; +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'; @@ -18,8 +18,8 @@ export const mockedFavoritesData = [ workflowVersion: null, forWorkspaceMemberId: mockedWorkspaceMemberData.id, forWorkspaceMember: mockedWorkspaceMemberData, - companyId: getCompaniesMock()[0].id, - company: getCompaniesMock()[0], + companyId: mockedCompanyRecords[0].id, + company: mockedCompanyRecords[0], viewId: null, view: null, taskId: null, diff --git a/packages/twenty-front/src/testing/mock-data/generated/data/companies/mock-companies-data.ts b/packages/twenty-front/src/testing/mock-data/generated/data/companies/mock-companies-data.ts index 435b0954d0..fffb42f1f6 100644 --- a/packages/twenty-front/src/testing/mock-data/generated/data/companies/mock-companies-data.ts +++ b/packages/twenty-front/src/testing/mock-data/generated/data/companies/mock-companies-data.ts @@ -1,11 +1,11 @@ /* 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 mockedCompanyRecords: Record[] = +export const mockedCompanyRecords: ObjectRecord[] = [ { "__typename": "Company", @@ -43,7 +43,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "PetCareAgreementConnection", "edges": [] }, - "createdAt": "2026-02-26T11:55:19.497Z", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "source": "MANUAL", @@ -179,10 +179,26 @@ export const mockedCompanyRecords: Record[] = "id": "20202020-0651-2001-8001-000021ea0001", "name": "linked-task.created" } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-000025d30001", + "name": "calendarEvent.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-0000292f0001", + "name": "calendarEvent.linked" + } } ] }, - "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedAt": "2026-02-27T01:17:29.464Z", "updatedBy": { "__typename": "Actor", "source": "MANUAL", @@ -235,7 +251,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "PetCareAgreementConnection", "edges": [] }, - "createdAt": "2026-02-26T11:55:19.497Z", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "source": "IMPORT", @@ -376,13 +392,13 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0751-2001-8001-0000330b0001", + "id": "20202020-0751-2001-8001-000032750001", "name": "message.linked" } } ] }, - "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedAt": "2026-02-27T01:17:29.464Z", "updatedBy": { "__typename": "Actor", "source": "IMPORT", @@ -435,7 +451,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "PetCareAgreementConnection", "edges": [] }, - "createdAt": "2026-02-26T11:55:19.497Z", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "source": "MANUAL", @@ -571,34 +587,10 @@ export const mockedCompanyRecords: Record[] = "id": "20202020-0651-2001-8001-000021920001", "name": "linked-task.created" } - }, - { - "__typename": "TimelineActivityEdge", - "node": { - "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-000026f30001", - "name": "calendarEvent.linked" - } - }, - { - "__typename": "TimelineActivityEdge", - "node": { - "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-000027d70001", - "name": "calendarEvent.linked" - } - }, - { - "__typename": "TimelineActivityEdge", - "node": { - "__typename": "TimelineActivity", - "id": "20202020-0751-2001-8001-00002dd50001", - "name": "message.linked" - } } ] }, - "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedAt": "2026-02-27T01:17:29.464Z", "updatedBy": { "__typename": "Actor", "source": "MANUAL", @@ -668,7 +660,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "PetCareAgreementConnection", "edges": [] }, - "createdAt": "2026-02-26T11:55:19.497Z", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "source": "EMAIL", @@ -809,21 +801,13 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-000026750001", - "name": "calendarEvent.linked" - } - }, - { - "__typename": "TimelineActivityEdge", - "node": { - "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-0000275b0001", + "id": "20202020-0701-2001-8001-000023e90001", "name": "calendarEvent.linked" } } ] }, - "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedAt": "2026-02-27T01:17:29.464Z", "updatedBy": { "__typename": "Actor", "source": "EMAIL", @@ -885,7 +869,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "PetCareAgreementConnection", "edges": [] }, - "createdAt": "2026-02-26T11:55:19.497Z", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "source": "WORKFLOW", @@ -1026,7 +1010,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-000026950001", + "id": "20202020-0701-2001-8001-000026df0001", "name": "calendarEvent.linked" } }, @@ -1034,7 +1018,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-000026cf0001", + "id": "20202020-0701-2001-8001-0000275d0001", "name": "calendarEvent.linked" } }, @@ -1042,29 +1026,13 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-0000288f0001", - "name": "calendarEvent.linked" - } - }, - { - "__typename": "TimelineActivityEdge", - "node": { - "__typename": "TimelineActivity", - "id": "20202020-0751-2001-8001-000030210001", - "name": "message.linked" - } - }, - { - "__typename": "TimelineActivityEdge", - "node": { - "__typename": "TimelineActivity", - "id": "20202020-0751-2001-8001-000030b90001", + "id": "20202020-0751-2001-8001-000033790001", "name": "message.linked" } } ] }, - "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedAt": "2026-02-27T01:17:29.464Z", "updatedBy": { "__typename": "Actor", "source": "WORKFLOW", @@ -1117,7 +1085,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "PetCareAgreementConnection", "edges": [] }, - "createdAt": "2026-02-26T11:55:19.497Z", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "source": "IMPORT", @@ -1258,37 +1226,13 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-000026d50001", - "name": "calendarEvent.linked" - } - }, - { - "__typename": "TimelineActivityEdge", - "node": { - "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-000026eb0001", - "name": "calendarEvent.linked" - } - }, - { - "__typename": "TimelineActivityEdge", - "node": { - "__typename": "TimelineActivity", - "id": "20202020-0751-2001-8001-00002d5d0001", - "name": "message.linked" - } - }, - { - "__typename": "TimelineActivityEdge", - "node": { - "__typename": "TimelineActivity", - "id": "20202020-0751-2001-8001-000034d30001", + "id": "20202020-0751-2001-8001-00002a470001", "name": "message.linked" } } ] }, - "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedAt": "2026-02-27T01:17:29.464Z", "updatedBy": { "__typename": "Actor", "source": "IMPORT", @@ -1341,7 +1285,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "PetCareAgreementConnection", "edges": [] }, - "createdAt": "2026-02-26T11:55:19.497Z", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "source": "API", @@ -1482,7 +1426,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-000025e50001", + "id": "20202020-0701-2001-8001-0000243d0001", "name": "calendarEvent.linked" } }, @@ -1490,7 +1434,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-000028130001", + "id": "20202020-0701-2001-8001-000025b50001", "name": "calendarEvent.linked" } }, @@ -1498,21 +1442,13 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0751-2001-8001-00002c390001", - "name": "message.linked" - } - }, - { - "__typename": "TimelineActivityEdge", - "node": { - "__typename": "TimelineActivity", - "id": "20202020-0751-2001-8001-00002fdd0001", - "name": "message.linked" + "id": "20202020-0701-2001-8001-000028c30001", + "name": "calendarEvent.linked" } } ] }, - "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedAt": "2026-02-27T01:17:29.464Z", "updatedBy": { "__typename": "Actor", "source": "API", @@ -1565,7 +1501,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "PetCareAgreementConnection", "edges": [] }, - "createdAt": "2026-02-26T11:55:19.497Z", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "source": "SYSTEM", @@ -1706,7 +1642,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-000025a70001", + "id": "20202020-0701-2001-8001-0000269f0001", "name": "calendarEvent.linked" } }, @@ -1714,13 +1650,21 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0751-2001-8001-0000313b0001", + "id": "20202020-0751-2001-8001-000031290001", + "name": "message.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0751-2001-8001-000031af0001", "name": "message.linked" } } ] }, - "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedAt": "2026-02-27T01:17:29.464Z", "updatedBy": { "__typename": "Actor", "source": "SYSTEM", @@ -1773,7 +1717,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "PetCareAgreementConnection", "edges": [] }, - "createdAt": "2026-02-26T11:55:19.497Z", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "source": "IMPORT", @@ -1909,10 +1853,58 @@ export const mockedCompanyRecords: Record[] = "id": "20202020-0651-2001-8001-000021aa0001", "name": "linked-task.created" } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-0000245f0001", + "name": "calendarEvent.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-000025af0001", + "name": "calendarEvent.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-000025f30001", + "name": "calendarEvent.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-000026630001", + "name": "calendarEvent.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0751-2001-8001-000033a70001", + "name": "message.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0751-2001-8001-000034b50001", + "name": "message.linked" + } } ] }, - "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedAt": "2026-02-27T01:17:29.464Z", "updatedBy": { "__typename": "Actor", "source": "IMPORT", @@ -1982,7 +1974,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "PetCareAgreementConnection", "edges": [] }, - "createdAt": "2026-02-26T11:55:19.497Z", + "createdAt": "2026-02-27T01:17:29.464Z", "createdBy": { "__typename": "Actor", "source": "WEBHOOK", @@ -2123,7 +2115,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-000026bb0001", + "id": "20202020-0701-2001-8001-000024930001", "name": "calendarEvent.linked" } }, @@ -2131,7 +2123,7 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0701-2001-8001-0000276d0001", + "id": "20202020-0701-2001-8001-000025590001", "name": "calendarEvent.linked" } }, @@ -2139,13 +2131,13 @@ export const mockedCompanyRecords: Record[] = "__typename": "TimelineActivityEdge", "node": { "__typename": "TimelineActivity", - "id": "20202020-0751-2001-8001-00002b510001", - "name": "message.linked" + "id": "20202020-0701-2001-8001-000027ff0001", + "name": "calendarEvent.linked" } } ] }, - "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedAt": "2026-02-27T01:17:29.464Z", "updatedBy": { "__typename": "Actor", "source": "WEBHOOK", diff --git a/packages/twenty-front/src/testing/mock-data/generated/data/notes/mock-notes-data.ts b/packages/twenty-front/src/testing/mock-data/generated/data/notes/mock-notes-data.ts new file mode 100644 index 0000000000..feeb5d528b --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/data/notes/mock-notes-data.ts @@ -0,0 +1,840 @@ +/* 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 mockedNoteRecords: ObjectRecord[] = +[ + { + "__typename": "Note", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00a1-4a7c-8001-123456789aba", + "name": "Source Code.zip" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-1\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Great conversation today about potential collaboration opportunities. Next steps discussed include proposal review and timeline planning.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Great conversation today about potential collaboration opportunities. Next steps discussed include proposal review and timeline planning." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0001-4e7c-8001-123456789abc", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0001-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0001-4e7c-8001-123456789abc", + "title": "Meeting Follow-up" + } + } + } + ] + }, + "position": 1, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-4000-8001-000100000001", + "name": "note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-000007090001", + "name": "linked-note.created" + } + } + ] + }, + "title": "Meeting Follow-up", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Note", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00a2-4a7c-8001-123456789aba", + "name": "Service Agreement.pdf" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-2\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Reviewed current project status and identified key deliverables for the upcoming quarter. Timeline adjustments may be needed.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Reviewed current project status and identified key deliverables for the upcoming quarter. Timeline adjustments may be needed." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0002-4e7c-8001-123456789abc", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0002-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0002-4e7c-8001-123456789abc", + "title": "Project Update Discussion" + } + } + } + ] + }, + "position": 2, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-4000-8001-000200000001", + "name": "note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-0000070b0001", + "name": "linked-note.created" + } + } + ] + }, + "title": "Project Update Discussion", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Note", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00a3-4a7c-8001-123456789aba", + "name": "NDA Document.pdf" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-3\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Impressive background in technology and leadership. Strong potential for senior roles in upcoming projects.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Impressive background in technology and leadership. Strong potential for senior roles in upcoming projects." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0003-4e7c-8001-123456789abc", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0003-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0003-4e7c-8001-123456789abc", + "title": "Skills & Experience Review" + } + } + } + ] + }, + "position": 3, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-4000-8001-000300000001", + "name": "note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-0000070d0001", + "name": "linked-note.created" + } + } + ] + }, + "title": "Skills & Experience Review", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Note", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00a4-4a7c-8001-123456789aba", + "name": "Project Proposal.pdf" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-4\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Made connection at industry conference. Shared interests in digital transformation and innovation strategies.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Made connection at industry conference. Shared interests in digital transformation and innovation strategies." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0004-4e7c-8001-123456789abc", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0004-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0004-4e7c-8001-123456789abc", + "title": "Networking Connection" + } + } + } + ] + }, + "position": 4, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-4000-8001-000400000001", + "name": "note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-0000070f0001", + "name": "linked-note.created" + } + } + ] + }, + "title": "Networking Connection", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Note", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00a5-4a7c-8001-123456789aba", + "name": "Invoice Q1 2024.pdf" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-5\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Strong candidate with relevant experience. Technical skills align well with team requirements. Positive cultural fit assessment.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Strong candidate with relevant experience. Technical skills align well with team requirements. Positive cultural fit assessment." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0005-4e7c-8001-123456789abc", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0005-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0005-4e7c-8001-123456789abc", + "title": "Interview Notes" + } + } + } + ] + }, + "position": 5, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-4000-8001-000500000001", + "name": "note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-000007110001", + "name": "linked-note.created" + } + } + ] + }, + "title": "Interview Notes", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Note", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00a6-4a7c-8001-123456789aba", + "name": "Meeting Notes.pdf" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-6\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Quarterly review completed. Exceeded targets in key areas. Discussed career development opportunities and growth plans.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Quarterly review completed. Exceeded targets in key areas. Discussed career development opportunities and growth plans." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0006-4e7c-8001-123456789abc", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0006-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0006-4e7c-8001-123456789abc", + "title": "Performance Check-in" + } + } + } + ] + }, + "position": 6, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-4000-8001-000600000001", + "name": "note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-000007130001", + "name": "linked-note.created" + } + } + ] + }, + "title": "Performance Check-in", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Note", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00a7-4a7c-8001-123456789aba", + "name": "Report Final.pdf" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-7\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Completed certification program successfully. Ready to take on expanded responsibilities in the next phase.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Completed certification program successfully. Ready to take on expanded responsibilities in the next phase." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0007-4e7c-8001-123456789abc", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0007-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0007-4e7c-8001-123456789abc", + "title": "Training & Development" + } + } + } + ] + }, + "position": 7, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-4000-8001-000700000001", + "name": "note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-000007150001", + "name": "linked-note.created" + } + } + ] + }, + "title": "Training & Development", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Note", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00a8-4a7c-8001-123456789aba", + "name": "Contract Signed.pdf" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-8\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Long-standing professional relationship. Reliable partner for complex initiatives. High satisfaction ratings.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Long-standing professional relationship. Reliable partner for complex initiatives. High satisfaction ratings." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0008-4e7c-8001-123456789abc", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0008-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0008-4e7c-8001-123456789abc", + "title": "Client Relationship Notes" + } + } + } + ] + }, + "position": 8, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-4000-8001-000800000001", + "name": "note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-000007170001", + "name": "linked-note.created" + } + } + ] + }, + "title": "Client Relationship Notes", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Note", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00a9-4a7c-8001-123456789aba", + "name": "Financial Forecast.xlsx" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-9\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Great conversation today about potential collaboration opportunities. Next steps discussed include proposal review and timeline planning.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Great conversation today about potential collaboration opportunities. Next steps discussed include proposal review and timeline planning." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0009-4e7c-8001-123456789abc", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0009-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0009-4e7c-8001-123456789abc", + "title": "Meeting Follow-up" + } + } + } + ] + }, + "position": 9, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-4000-8001-000900000001", + "name": "note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-000007190001", + "name": "linked-note.created" + } + } + ] + }, + "title": "Meeting Follow-up", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Note", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00aa-4a7c-8001-123456789aba", + "name": "Sales Report Q4.xlsx" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-10\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Reviewed current project status and identified key deliverables for the upcoming quarter. Timeline adjustments may be needed.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Reviewed current project status and identified key deliverables for the upcoming quarter. Timeline adjustments may be needed." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-000a-4e7c-8001-123456789abc", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-000a-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-000a-4e7c-8001-123456789abc", + "title": "Project Update Discussion" + } + } + } + ] + }, + "position": 10, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-4000-8001-001000000001", + "name": "note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-0000071b0001", + "name": "linked-note.created" + } + } + ] + }, + "title": "Project Update Discussion", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + } +]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/data/people/mock-people-data.ts b/packages/twenty-front/src/testing/mock-data/generated/data/people/mock-people-data.ts new file mode 100644 index 0000000000..39d409ee00 --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/data/people/mock-people-data.ts @@ -0,0 +1,1867 @@ +/* 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 mockedPersonRecords: ObjectRecord[] = +[ + { + "__typename": "Person", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "avatarFile": null, + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-88.png", + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "city": "New Jennifer", + "company": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "zuora.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa0b-48a9-85ba-e223975696ea", + "name": "Zuora" + }, + "companyId": "20202020-aa0b-48a9-85ba-e223975696ea", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "WEBHOOK", + "workspaceMemberId": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "name": "Jony Ive", + "context": null + }, + "deletedAt": null, + "emails": { + "__typename": "Emails", + "primaryEmail": "jeffery.griffin@example.com", + "additionalEmails": [] + }, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-b000-4485-94de-70c2a98daef2", + "intro": "", + "jobTitle": "Embryologist, clinical", + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/in/person-442", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [ + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0138-4e7c-8001-123456789cde" + } + } + ] + }, + "name": { + "__typename": "FullName", + "firstName": "Jeffery", + "lastName": "Griffin" + }, + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-01ba-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-01ba-4e7c-8001-123456789abc", + "title": "Project Update Discussion" + } + } + } + ] + }, + "performanceRating": null, + "phones": { + "__typename": "Phones", + "primaryPhoneNumber": "7114567890", + "primaryPhoneCountryCode": "DE", + "primaryPhoneCallingCode": "+49", + "additionalPhones": [] + }, + "pointOfContactForOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 442, + "previousCompanies": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-01ba-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-01ba-4e7c-8001-123456789def", + "title": "Send project proposal" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0201-4000-8001-044200000001", + "name": "person.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-00000a7b0001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-0000188a0001", + "name": "linked-task.created" + } + } + ] + }, + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "WEBHOOK", + "workspaceMemberId": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "name": "Jony Ive", + "context": null + }, + "whatsapp": { + "__typename": "Phones", + "primaryPhoneNumber": "", + "primaryPhoneCountryCode": "FR", + "primaryPhoneCallingCode": "+33", + "additionalPhones": [] + }, + "workPreference": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Person", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "avatarFile": null, + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-5.png", + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person963@company.com", + "id": "20202020-0586-4e7c-8001-123456789def" + } + } + ] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "city": "Murrayburgh", + "company": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "greenhouse.io", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a30d-4604-9018-dd212faf7845", + "name": "Greenhouse Software" + }, + "companyId": "20202020-a30d-4604-9018-dd212faf7845", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "CALENDAR", + "workspaceMemberId": "20202020-1553-45c6-a028-5a9064cce07f", + "name": "Phil Schiler", + "context": null + }, + "deletedAt": null, + "emails": { + "__typename": "Emails", + "primaryEmail": "terry.melendez@example.com", + "additionalEmails": [] + }, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-b003-415a-9051-133248495f7f", + "intro": "", + "jobTitle": "Public relations officer", + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/in/person-963", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [] + }, + "name": { + "__typename": "FullName", + "firstName": "Terry", + "lastName": "Melendez" + }, + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-03c3-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-03c3-4e7c-8001-123456789abc", + "title": "Skills & Experience Review" + } + } + } + ] + }, + "performanceRating": null, + "phones": { + "__typename": "Phones", + "primaryPhoneNumber": "1315678901", + "primaryPhoneCountryCode": "GB", + "primaryPhoneCallingCode": "+44", + "additionalPhones": [] + }, + "pointOfContactForOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 963, + "previousCompanies": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-03c3-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-03c3-4e7c-8001-123456789def", + "title": "Review contract terms" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0201-4000-8001-096300000001", + "name": "person.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-00000e8d0001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-00001c9c0001", + "name": "linked-task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-1001-8001-000027a80001", + "name": "calendarEvent.linked" + } + } + ] + }, + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "CALENDAR", + "workspaceMemberId": "20202020-1553-45c6-a028-5a9064cce07f", + "name": "Phil Schiler", + "context": null + }, + "whatsapp": { + "__typename": "Phones", + "primaryPhoneNumber": "", + "primaryPhoneCountryCode": "FR", + "primaryPhoneCallingCode": "+33", + "additionalPhones": [] + }, + "workPreference": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Person", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "avatarFile": null, + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-27.png", + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "city": "Nicholsborough", + "company": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "auctane.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a398-470f-97ef-905b9053f1d7", + "name": "Auctane" + }, + "companyId": "20202020-a398-470f-97ef-905b9053f1d7", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "EMAIL", + "workspaceMemberId": "20202020-1553-45c6-a028-5a9064cce07f", + "name": "Phil Schiler", + "context": null + }, + "deletedAt": null, + "emails": { + "__typename": "Emails", + "primaryEmail": "lee.jones@example.com", + "additionalEmails": [] + }, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-b00e-4bc1-87c8-00aeb49c10f8", + "intro": "", + "jobTitle": "Radiographer, therapeutic", + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/in/person-747", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [] + }, + "name": { + "__typename": "FullName", + "firstName": "Lee", + "lastName": "Jones" + }, + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-02eb-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-02eb-4e7c-8001-123456789abc", + "title": "Skills & Experience Review" + } + } + } + ] + }, + "performanceRating": null, + "phones": { + "__typename": "Phones", + "primaryPhoneNumber": "5550123456", + "primaryPhoneCountryCode": "US", + "primaryPhoneCallingCode": "+1", + "additionalPhones": [] + }, + "pointOfContactForOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 747, + "previousCompanies": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-02eb-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-02eb-4e7c-8001-123456789def", + "title": "Review contract terms" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0201-4000-8001-074700000001", + "name": "person.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-00000cdd0001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-00001aec0001", + "name": "linked-task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0751-1001-8001-00002b3e0001", + "name": "message.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0751-1001-8001-00002d480001", + "name": "message.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0751-1001-8001-000035780001", + "name": "message.linked" + } + } + ] + }, + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "EMAIL", + "workspaceMemberId": "20202020-1553-45c6-a028-5a9064cce07f", + "name": "Phil Schiler", + "context": null + }, + "whatsapp": { + "__typename": "Phones", + "primaryPhoneNumber": "", + "primaryPhoneCountryCode": "FR", + "primaryPhoneCallingCode": "+33", + "additionalPhones": [] + }, + "workPreference": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Person", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "avatarFile": null, + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-19.png", + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "city": "East Zoeview", + "company": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "m-files.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aff9-4d18-ba24-26304be22c42", + "name": "M-Files" + }, + "companyId": "20202020-aff9-4d18-ba24-26304be22c42", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "EMAIL", + "workspaceMemberId": "20202020-463f-435b-828c-107e007a2711", + "name": "Jane Austen", + "context": null + }, + "deletedAt": null, + "emails": { + "__typename": "Emails", + "primaryEmail": "sarah.hernandez@example.com", + "additionalEmails": [] + }, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-b012-44c1-9fdc-90f110962d07", + "intro": "", + "jobTitle": "Engineer, water", + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/in/person-1104", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [ + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0401-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-04cf-4e7c-8001-123456789cde" + } + } + ] + }, + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Hernandez" + }, + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0450-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0450-4e7c-8001-123456789abc", + "title": "Client Relationship Notes" + } + } + } + ] + }, + "performanceRating": null, + "phones": { + "__typename": "Phones", + "primaryPhoneNumber": "543456789", + "primaryPhoneCountryCode": "FR", + "primaryPhoneCallingCode": "+33", + "additionalPhones": [] + }, + "pointOfContactForOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 1104, + "previousCompanies": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0450-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0450-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0201-4000-8001-110400000001", + "name": "person.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-00000fa70001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-00001db60001", + "name": "linked-task.created" + } + } + ] + }, + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "EMAIL", + "workspaceMemberId": "20202020-463f-435b-828c-107e007a2711", + "name": "Jane Austen", + "context": null + }, + "whatsapp": { + "__typename": "Phones", + "primaryPhoneNumber": "", + "primaryPhoneCountryCode": "FR", + "primaryPhoneCallingCode": "+33", + "additionalPhones": [] + }, + "workPreference": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Person", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "avatarFile": null, + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-23.png", + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person644@company.com", + "id": "20202020-03bf-4e7c-8001-123456789def" + } + } + ] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "city": "Randallchester", + "company": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "wish.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-a494-4962-8073-8f0221a314af", + "name": "Wish" + }, + "companyId": "20202020-a494-4962-8073-8f0221a314af", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "IMPORT", + "workspaceMemberId": "20202020-463f-435b-828c-107e007a2711", + "name": "Jane Austen", + "context": null + }, + "deletedAt": null, + "emails": { + "__typename": "Emails", + "primaryEmail": "suzanne.rodriguez@example.com", + "additionalEmails": [] + }, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-b017-4ae0-9ece-01dcfa9627e8", + "intro": "", + "jobTitle": "Games developer", + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/in/person-644", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [ + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-0012-4e7c-8001-123456789cde" + } + }, + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-04c3-4e7c-8001-123456789cde" + } + } + ] + }, + "name": { + "__typename": "FullName", + "firstName": "Suzanne", + "lastName": "Rodriguez" + }, + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0284-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0284-4e7c-8001-123456789abc", + "title": "Networking Connection" + } + } + } + ] + }, + "performanceRating": null, + "phones": { + "__typename": "Phones", + "primaryPhoneNumber": "0612345678", + "primaryPhoneCountryCode": "IT", + "primaryPhoneCallingCode": "+39", + "additionalPhones": [] + }, + "pointOfContactForOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 644, + "previousCompanies": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0284-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0284-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0201-4000-8001-064400000001", + "name": "person.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-00000c0f0001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-00001a1e0001", + "name": "linked-task.created" + } + } + ] + }, + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "IMPORT", + "workspaceMemberId": "20202020-463f-435b-828c-107e007a2711", + "name": "Jane Austen", + "context": null + }, + "whatsapp": { + "__typename": "Phones", + "primaryPhoneNumber": "", + "primaryPhoneCountryCode": "FR", + "primaryPhoneCallingCode": "+33", + "additionalPhones": [] + }, + "workPreference": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Person", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "avatarFile": null, + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-20.png", + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person280@company.com", + "id": "20202020-037b-4e7c-8001-123456789def" + } + }, + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person280@company.com", + "id": "20202020-03eb-4e7c-8001-123456789def" + } + } + ] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "city": "South Philipbury", + "company": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "celonis.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ad11-49f7-95ed-78038ef37aec", + "name": "Celonis" + }, + "companyId": "20202020-ad11-49f7-95ed-78038ef37aec", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "CALENDAR", + "workspaceMemberId": "20202020-463f-435b-828c-107e007a2711", + "name": "Jane Austen", + "context": null + }, + "deletedAt": null, + "emails": { + "__typename": "Emails", + "primaryEmail": "christy.hall@example.com", + "additionalEmails": [] + }, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-b018-492d-89de-f9cd4ee80437", + "intro": "", + "jobTitle": "Pension scheme manager", + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/in/person-280", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [ + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "outgoing", + "id": "20202020-0319-4e7c-8001-123456789cde" + } + } + ] + }, + "name": { + "__typename": "FullName", + "firstName": "Christy", + "lastName": "Hall" + }, + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0118-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0118-4e7c-8001-123456789abc", + "title": "Client Relationship Notes" + } + } + } + ] + }, + "performanceRating": null, + "phones": { + "__typename": "Phones", + "primaryPhoneNumber": "4155555678", + "primaryPhoneCountryCode": "US", + "primaryPhoneCallingCode": "+1", + "additionalPhones": [] + }, + "pointOfContactForOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 280, + "previousCompanies": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0118-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0118-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0201-4000-8001-028000000001", + "name": "person.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-000009370001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-000017460001", + "name": "linked-task.created" + } + } + ] + }, + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "CALENDAR", + "workspaceMemberId": "20202020-463f-435b-828c-107e007a2711", + "name": "Jane Austen", + "context": null + }, + "whatsapp": { + "__typename": "Phones", + "primaryPhoneNumber": "", + "primaryPhoneCountryCode": "FR", + "primaryPhoneCallingCode": "+33", + "additionalPhones": [] + }, + "workPreference": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Person", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "avatarFile": null, + "avatarUrl": "", + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "city": "Port Erin", + "company": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "denodo.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ae80-4fbc-8e79-88233787ce46", + "name": "Denodo" + }, + "companyId": "20202020-ae80-4fbc-8e79-88233787ce46", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "IMPORT", + "workspaceMemberId": "20202020-463f-435b-828c-107e007a2711", + "name": "Jane Austen", + "context": null + }, + "deletedAt": null, + "emails": { + "__typename": "Emails", + "primaryEmail": "jacqueline.martin@example.com", + "additionalEmails": [] + }, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-b01b-46cc-85b9-93b884b7cebe", + "intro": "", + "jobTitle": "Product manager", + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/in/person-1092", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [] + }, + "name": { + "__typename": "FullName", + "firstName": "Jacqueline", + "lastName": "Martin" + }, + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0444-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0444-4e7c-8001-123456789abc", + "title": "Networking Connection" + } + } + } + ] + }, + "performanceRating": null, + "phones": { + "__typename": "Phones", + "primaryPhoneNumber": "2075678901", + "primaryPhoneCountryCode": "GB", + "primaryPhoneCallingCode": "+44", + "additionalPhones": [] + }, + "pointOfContactForOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 1092, + "previousCompanies": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0444-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0444-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0201-4000-8001-109200000001", + "name": "person.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-00000f8f0001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-00001d9e0001", + "name": "linked-task.created" + } + } + ] + }, + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "IMPORT", + "workspaceMemberId": "20202020-463f-435b-828c-107e007a2711", + "name": "Jane Austen", + "context": null + }, + "whatsapp": { + "__typename": "Phones", + "primaryPhoneNumber": "", + "primaryPhoneCountryCode": "FR", + "primaryPhoneCallingCode": "+33", + "additionalPhones": [] + }, + "workPreference": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Person", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "avatarFile": null, + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-62.png", + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "city": "Nathanielburgh", + "company": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "tcpsoftware.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa29-4f90-ba1c-2cc4d6c4c7c2", + "name": "TCP Software" + }, + "companyId": "20202020-aa29-4f90-ba1c-2cc4d6c4c7c2", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "EMAIL", + "workspaceMemberId": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "name": "Jony Ive", + "context": null + }, + "deletedAt": null, + "emails": { + "__typename": "Emails", + "primaryEmail": "brenda.brown@example.com", + "additionalEmails": [] + }, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-b01b-49bf-85eb-8b1694edc057", + "intro": "", + "jobTitle": "Secretary, company", + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/in/person-878", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [] + }, + "name": { + "__typename": "FullName", + "firstName": "Brenda", + "lastName": "Brown" + }, + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-036e-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-036e-4e7c-8001-123456789abc", + "title": "Performance Check-in" + } + } + } + ] + }, + "performanceRating": null, + "phones": { + "__typename": "Phones", + "primaryPhoneNumber": "5557890123", + "primaryPhoneCountryCode": "US", + "primaryPhoneCallingCode": "+1", + "additionalPhones": [] + }, + "pointOfContactForOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 878, + "previousCompanies": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-036e-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-036e-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0201-4000-8001-087800000001", + "name": "person.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-00000de30001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-00001bf20001", + "name": "linked-task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-1001-8001-000025080001", + "name": "calendarEvent.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0751-1001-8001-00002b320001", + "name": "message.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0751-1001-8001-00002bf20001", + "name": "message.linked" + } + } + ] + }, + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "EMAIL", + "workspaceMemberId": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "name": "Jony Ive", + "context": null + }, + "whatsapp": { + "__typename": "Phones", + "primaryPhoneNumber": "", + "primaryPhoneCountryCode": "FR", + "primaryPhoneCallingCode": "+33", + "additionalPhones": [] + }, + "workPreference": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Person", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "avatarFile": null, + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-94.png", + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "city": "West Dannyside", + "company": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "folio3.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-aa50-443f-b83d-18ef2a21a292", + "name": "Folio3 Software" + }, + "companyId": "20202020-aa50-443f-b83d-18ef2a21a292", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "SYSTEM", + "workspaceMemberId": "20202020-463f-435b-828c-107e007a2711", + "name": "Jane Austen", + "context": null + }, + "deletedAt": null, + "emails": { + "__typename": "Emails", + "primaryEmail": "anthony.green@example.com", + "additionalEmails": [] + }, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-b01d-4aa3-afec-0b97a593b28d", + "intro": "", + "jobTitle": "Land", + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/in/person-900", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [] + }, + "name": { + "__typename": "FullName", + "firstName": "Anthony", + "lastName": "Green" + }, + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0384-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0384-4e7c-8001-123456789abc", + "title": "Networking Connection" + } + } + } + ] + }, + "performanceRating": null, + "phones": { + "__typename": "Phones", + "primaryPhoneNumber": "145678901", + "primaryPhoneCountryCode": "FR", + "primaryPhoneCallingCode": "+33", + "additionalPhones": [] + }, + "pointOfContactForOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 900, + "previousCompanies": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0384-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0384-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0201-4000-8001-090000000001", + "name": "person.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-00000e0f0001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-00001c1e0001", + "name": "linked-task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-1001-8001-000026ca0001", + "name": "calendarEvent.linked" + } + } + ] + }, + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "SYSTEM", + "workspaceMemberId": "20202020-463f-435b-828c-107e007a2711", + "name": "Jane Austen", + "context": null + }, + "whatsapp": { + "__typename": "Phones", + "primaryPhoneNumber": "", + "primaryPhoneCountryCode": "FR", + "primaryPhoneCallingCode": "+33", + "additionalPhones": [] + }, + "workPreference": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Person", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "avatarFile": null, + "avatarUrl": "", + "calendarEventParticipants": { + "__typename": "CalendarEventParticipantConnection", + "edges": [ + { + "__typename": "CalendarEventParticipantEdge", + "node": { + "__typename": "CalendarEventParticipant", + "handle": "person917@company.com", + "id": "20202020-028c-4e7c-8001-123456789def" + } + } + ] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "city": "South Nathan", + "company": { + "__typename": "Company", + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "pandadoc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "id": "20202020-ac06-4880-bce0-0c55deba0e70", + "name": "PandaDoc" + }, + "companyId": "20202020-ac06-4880-bce0-0c55deba0e70", + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "CALENDAR", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim Apple", + "context": null + }, + "deletedAt": null, + "emails": { + "__typename": "Emails", + "primaryEmail": "ronald.smith@example.com", + "additionalEmails": [] + }, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-b01e-4011-979d-33f260f97529", + "intro": "", + "jobTitle": "Engineer, aeronautical", + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/in/person-917", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "messageParticipants": { + "__typename": "MessageParticipantConnection", + "edges": [ + { + "__typename": "MessageParticipantEdge", + "node": { + "__typename": "MessageParticipant", + "handle": "incoming", + "id": "20202020-054c-4e7c-8001-123456789cde" + } + } + ] + }, + "name": { + "__typename": "FullName", + "firstName": "Ronald", + "lastName": "Smith" + }, + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0395-4e7c-8001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0395-4e7c-8001-123456789abc", + "title": "Interview Notes" + } + } + } + ] + }, + "performanceRating": null, + "phones": { + "__typename": "Phones", + "primaryPhoneNumber": "911234567", + "primaryPhoneCountryCode": "ES", + "primaryPhoneCallingCode": "+34", + "additionalPhones": [] + }, + "pointOfContactForOpportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "position": 917, + "previousCompanies": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0395-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0395-4e7c-8001-123456789def", + "title": "Update contact information" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0201-4000-8001-091700000001", + "name": "person.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-1001-8001-00000e310001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-00001c400001", + "name": "linked-task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-1001-8001-0000289e0001", + "name": "calendarEvent.linked" + } + } + ] + }, + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "CALENDAR", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim Apple", + "context": null + }, + "whatsapp": { + "__typename": "Phones", + "primaryPhoneNumber": "", + "primaryPhoneCountryCode": "FR", + "primaryPhoneCallingCode": "+33", + "additionalPhones": [] + }, + "workPreference": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + } +]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/data/tasks/mock-tasks-data.ts b/packages/twenty-front/src/testing/mock-data/generated/data/tasks/mock-tasks-data.ts new file mode 100644 index 0000000000..11ebc0befe --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/data/tasks/mock-tasks-data.ts @@ -0,0 +1,960 @@ +/* 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 mockedTaskRecords: ObjectRecord[] = +[ + { + "__typename": "Task", + "assignee": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "assigneeId": "20202020-0687-4c41-b707-ed1bfca972a7", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00b5-4a7c-8001-123456789aba", + "name": "Product Photo.jpg" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-1\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Arrange a follow-up call to discuss project details and next steps.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Arrange a follow-up call to discuss project details and next steps." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "dueAt": "2026-03-02T01:17:25.389Z", + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0001-4e7c-8001-123456789def", + "position": 1, + "status": "TODO", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0001-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0001-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-4000-8001-000100000001", + "name": "task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-000015180001", + "name": "linked-task.created" + } + } + ] + }, + "title": "Schedule follow-up call", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Task", + "assignee": { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + } + }, + "assigneeId": "20202020-1553-45c6-a028-5a9064cce07f", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00b6-4a7c-8001-123456789aba", + "name": "Diagram.png" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-2\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Prepare and send the project proposal document with timeline and deliverables.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Prepare and send the project proposal document with timeline and deliverables." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "dueAt": "2026-03-04T01:17:25.389Z", + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0002-4e7c-8001-123456789def", + "position": 2, + "status": "IN_PROGRESS", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0002-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0002-4e7c-8001-123456789def", + "title": "Send project proposal" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-4000-8001-000200000001", + "name": "task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-0000151a0001", + "name": "linked-task.created" + } + } + ] + }, + "title": "Send project proposal", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Task", + "assignee": { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + } + }, + "assigneeId": "20202020-1553-45c6-a028-5a9064cce07f", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00b7-4a7c-8001-123456789aba", + "name": "Wireframe.png" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-3\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Review the contract terms and conditions before final approval.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Review the contract terms and conditions before final approval." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "dueAt": "2026-03-06T01:17:25.389Z", + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0003-4e7c-8001-123456789def", + "position": 3, + "status": "TODO", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0003-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0003-4e7c-8001-123456789def", + "title": "Review contract terms" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-4000-8001-000300000001", + "name": "task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-0000151c0001", + "name": "linked-task.created" + } + } + ] + }, + "title": "Review contract terms", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Task", + "assignee": { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + } + }, + "assigneeId": "20202020-1553-45c6-a028-5a9064cce07f", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00b8-4a7c-8001-123456789aba", + "name": "Mockup Design.png" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-4\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Create detailed agenda for upcoming strategy meeting.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Create detailed agenda for upcoming strategy meeting." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "dueAt": "2026-03-01T01:17:25.389Z", + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0004-4e7c-8001-123456789def", + "position": 4, + "status": "TODO", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0004-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0004-4e7c-8001-123456789def", + "title": "Prepare meeting agenda" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-4000-8001-000400000001", + "name": "task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-0000151e0001", + "name": "linked-task.created" + } + } + ] + }, + "title": "Prepare meeting agenda", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Task", + "assignee": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "assigneeId": "20202020-0687-4c41-b707-ed1bfca972a7", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00b9-4a7c-8001-123456789aba", + "name": "Headshot.jpg" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-5\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Verify and update contact details in the system.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Verify and update contact details in the system." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "dueAt": null, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0005-4e7c-8001-123456789def", + "position": 5, + "status": "DONE", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0005-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0005-4e7c-8001-123456789def", + "title": "Update contact information" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-4000-8001-000500000001", + "name": "task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-000015200001", + "name": "linked-task.created" + } + } + ] + }, + "title": "Update contact information", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Task", + "assignee": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "assigneeId": "20202020-0687-4c41-b707-ed1bfca972a7", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00ba-4a7c-8001-123456789aba", + "name": "Project Files.zip" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-6\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Complete reference verification for background check process.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Complete reference verification for background check process." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "dueAt": "2026-03-03T01:17:25.389Z", + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0006-4e7c-8001-123456789def", + "position": 6, + "status": "IN_PROGRESS", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0006-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0006-4e7c-8001-123456789def", + "title": "Conduct reference check" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-4000-8001-000600000001", + "name": "task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-000015220001", + "name": "linked-task.created" + } + } + ] + }, + "title": "Conduct reference check", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Task", + "assignee": { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + } + }, + "assigneeId": "20202020-1553-45c6-a028-5a9064cce07f", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00bb-4a7c-8001-123456789aba", + "name": "Backup Data.zip" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-7\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Send portfolio examples and case studies for review.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Send portfolio examples and case studies for review." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "dueAt": "2026-03-05T01:17:25.390Z", + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0007-4e7c-8001-123456789def", + "position": 7, + "status": "TODO", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0007-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0007-4e7c-8001-123456789def", + "title": "Share portfolio samples" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-4000-8001-000700000001", + "name": "task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-000015240001", + "name": "linked-task.created" + } + } + ] + }, + "title": "Share portfolio samples", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Task", + "assignee": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "assigneeId": "20202020-0687-4c41-b707-ed1bfca972a7", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00bc-4a7c-8001-123456789aba", + "name": "Source Code.zip" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-8\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Prepare onboarding materials and schedule orientation session.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Prepare onboarding materials and schedule orientation session." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "dueAt": "2026-03-07T01:17:25.390Z", + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0008-4e7c-8001-123456789def", + "position": 8, + "status": "TODO", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0008-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0008-4e7c-8001-123456789def", + "title": "Set up onboarding process" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-4000-8001-000800000001", + "name": "task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-000015260001", + "name": "linked-task.created" + } + } + ] + }, + "title": "Set up onboarding process", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Task", + "assignee": { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + } + }, + "assigneeId": "20202020-1553-45c6-a028-5a9064cce07f", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00bd-4a7c-8001-123456789aba", + "name": "Service Agreement.pdf" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-9\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Arrange a follow-up call to discuss project details and next steps.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Arrange a follow-up call to discuss project details and next steps." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "dueAt": "2026-03-02T01:17:25.390Z", + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-0009-4e7c-8001-123456789def", + "position": 9, + "status": "TODO", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0009-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0009-4e7c-8001-123456789def", + "title": "Schedule follow-up call" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-4000-8001-000900000001", + "name": "task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-000015280001", + "name": "linked-task.created" + } + } + ] + }, + "title": "Schedule follow-up call", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + }, + { + "__typename": "Task", + "assignee": { + "__typename": "WorkspaceMember", + "id": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "name": { + "__typename": "FullName", + "firstName": "Jony", + "lastName": "Ive" + } + }, + "assigneeId": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00be-4a7c-8001-123456789aba", + "name": "NDA Document.pdf" + } + } + ] + }, + "bodyV2": { + "__typename": "RichTextV2", + "blocknote": "[{\"id\":\"block-10\",\"type\":\"paragraph\",\"props\":{\"textColor\":\"default\",\"backgroundColor\":\"default\",\"textAlignment\":\"left\"},\"content\":[{\"type\":\"text\",\"text\":\"Prepare and send the project proposal document with timeline and deliverables.\",\"styles\":{}}],\"children\":[]}]", + "markdown": "Prepare and send the project proposal document with timeline and deliverables." + }, + "createdAt": "2026-02-27T01:17:29.464Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "dueAt": "2026-03-04T01:17:25.390Z", + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-000a-4e7c-8001-123456789def", + "position": 10, + "status": "IN_PROGRESS", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-000a-4e7c-8001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-000a-4e7c-8001-123456789def", + "title": "Send project proposal" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-4000-8001-001000000001", + "name": "task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-1001-8001-0000152a0001", + "name": "linked-task.created" + } + } + ] + }, + "title": "Send project proposal", + "updatedAt": "2026-02-27T01:17:29.464Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + } + } +]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/data/timelineActivities/mock-timelineActivities-data.ts b/packages/twenty-front/src/testing/mock-data/generated/data/timelineActivities/mock-timelineActivities-data.ts new file mode 100644 index 0000000000..0b7ecc9fa9 --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/data/timelineActivities/mock-timelineActivities-data.ts @@ -0,0 +1,790 @@ +/* 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 mockedTimelineActivityRecords: ObjectRecord[] = +[ + { + "__typename": "TimelineActivity", + "createdAt": "2026-02-27T01:17:30.071Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "happensAt": "2026-02-27T01:17:30.071Z", + "id": "20202020-0001-4000-8001-000100000001", + "linkedObjectMetadataId": null, + "linkedRecordCachedName": "", + "linkedRecordId": "20202020-a305-41e7-8c72-ba44072a4c58", + "name": "company.created", + "position": 0, + "properties": { + "after": { + "id": "20202020-a305-41e7-8c72-ba44072a4c58", + "city": "Mountain View", + "name": "Google", + "employees": 284571, + "domainName": "goo.gle" + } + }, + "targetCompany": { + "__typename": "Company", + "id": "20202020-a305-41e7-8c72-ba44072a4c58", + "name": "Google" + }, + "targetCompanyId": "20202020-a305-41e7-8c72-ba44072a4c58", + "targetDashboard": null, + "targetDashboardId": null, + "targetEmploymentHistory": null, + "targetEmploymentHistoryId": null, + "targetNote": null, + "targetNoteId": null, + "targetOpportunity": null, + "targetOpportunityId": null, + "targetPerson": null, + "targetPersonId": null, + "targetPet": null, + "targetPetCareAgreement": null, + "targetPetCareAgreementId": null, + "targetPetId": null, + "targetRocket": null, + "targetRocketId": null, + "targetSurveyResult": null, + "targetSurveyResultId": null, + "targetTask": null, + "targetTaskId": null, + "targetWorkflow": null, + "targetWorkflowId": null, + "targetWorkflowRun": null, + "targetWorkflowRunId": null, + "targetWorkflowVersion": null, + "targetWorkflowVersionId": null, + "updatedAt": "2026-02-27T01:17:30.071Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "workspaceMember": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7" + }, + { + "__typename": "TimelineActivity", + "createdAt": "2026-02-27T01:17:30.071Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "happensAt": "2026-02-27T01:17:30.071Z", + "id": "20202020-0001-4000-8001-000200000001", + "linkedObjectMetadataId": null, + "linkedRecordCachedName": "", + "linkedRecordId": "20202020-a225-4b3d-a89c-7f6c30df998a", + "name": "company.created", + "position": 0, + "properties": { + "after": { + "id": "20202020-a225-4b3d-a89c-7f6c30df998a", + "city": "Redmond", + "name": "Microsoft", + "employees": 226067, + "domainName": "microsoft.com" + } + }, + "targetCompany": { + "__typename": "Company", + "id": "20202020-a225-4b3d-a89c-7f6c30df998a", + "name": "Microsoft" + }, + "targetCompanyId": "20202020-a225-4b3d-a89c-7f6c30df998a", + "targetDashboard": null, + "targetDashboardId": null, + "targetEmploymentHistory": null, + "targetEmploymentHistoryId": null, + "targetNote": null, + "targetNoteId": null, + "targetOpportunity": null, + "targetOpportunityId": null, + "targetPerson": null, + "targetPersonId": null, + "targetPet": null, + "targetPetCareAgreement": null, + "targetPetCareAgreementId": null, + "targetPetId": null, + "targetRocket": null, + "targetRocketId": null, + "targetSurveyResult": null, + "targetSurveyResultId": null, + "targetTask": null, + "targetTaskId": null, + "targetWorkflow": null, + "targetWorkflowId": null, + "targetWorkflowRun": null, + "targetWorkflowRunId": null, + "targetWorkflowVersion": null, + "targetWorkflowVersionId": null, + "updatedAt": "2026-02-27T01:17:30.071Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "workspaceMember": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7" + }, + { + "__typename": "TimelineActivity", + "createdAt": "2026-02-27T01:17:30.071Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "happensAt": "2026-02-27T01:17:30.071Z", + "id": "20202020-0001-4000-8001-000300000001", + "linkedObjectMetadataId": null, + "linkedRecordCachedName": "", + "linkedRecordId": "20202020-a8b0-422c-8fcf-5b7496f94975", + "name": "company.created", + "position": 0, + "properties": { + "after": { + "id": "20202020-a8b0-422c-8fcf-5b7496f94975", + "city": "Menlo Park", + "name": "Meta", + "employees": 119511, + "domainName": "metacareers.com" + } + }, + "targetCompany": { + "__typename": "Company", + "id": "20202020-a8b0-422c-8fcf-5b7496f94975", + "name": "Meta" + }, + "targetCompanyId": "20202020-a8b0-422c-8fcf-5b7496f94975", + "targetDashboard": null, + "targetDashboardId": null, + "targetEmploymentHistory": null, + "targetEmploymentHistoryId": null, + "targetNote": null, + "targetNoteId": null, + "targetOpportunity": null, + "targetOpportunityId": null, + "targetPerson": null, + "targetPersonId": null, + "targetPet": null, + "targetPetCareAgreement": null, + "targetPetCareAgreementId": null, + "targetPetId": null, + "targetRocket": null, + "targetRocketId": null, + "targetSurveyResult": null, + "targetSurveyResultId": null, + "targetTask": null, + "targetTaskId": null, + "targetWorkflow": null, + "targetWorkflowId": null, + "targetWorkflowRun": null, + "targetWorkflowRunId": null, + "targetWorkflowVersion": null, + "targetWorkflowVersionId": null, + "updatedAt": "2026-02-27T01:17:30.071Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "workspaceMember": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7" + }, + { + "__typename": "TimelineActivity", + "createdAt": "2026-02-27T01:17:30.071Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "happensAt": "2026-02-27T01:17:30.071Z", + "id": "20202020-0001-4000-8001-000400000001", + "linkedObjectMetadataId": null, + "linkedRecordCachedName": "", + "linkedRecordId": "20202020-aaf7-41d6-87a9-7add07bebfd8", + "name": "company.created", + "position": 0, + "properties": { + "after": { + "id": "20202020-aaf7-41d6-87a9-7add07bebfd8", + "city": "Houston", + "name": "SLB", + "employees": 113151, + "domainName": "slb.com" + } + }, + "targetCompany": { + "__typename": "Company", + "id": "20202020-aaf7-41d6-87a9-7add07bebfd8", + "name": "SLB" + }, + "targetCompanyId": "20202020-aaf7-41d6-87a9-7add07bebfd8", + "targetDashboard": null, + "targetDashboardId": null, + "targetEmploymentHistory": null, + "targetEmploymentHistoryId": null, + "targetNote": null, + "targetNoteId": null, + "targetOpportunity": null, + "targetOpportunityId": null, + "targetPerson": null, + "targetPersonId": null, + "targetPet": null, + "targetPetCareAgreement": null, + "targetPetCareAgreementId": null, + "targetPetId": null, + "targetRocket": null, + "targetRocketId": null, + "targetSurveyResult": null, + "targetSurveyResultId": null, + "targetTask": null, + "targetTaskId": null, + "targetWorkflow": null, + "targetWorkflowId": null, + "targetWorkflowRun": null, + "targetWorkflowRunId": null, + "targetWorkflowVersion": null, + "targetWorkflowVersionId": null, + "updatedAt": "2026-02-27T01:17:30.071Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "workspaceMember": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7" + }, + { + "__typename": "TimelineActivity", + "createdAt": "2026-02-27T01:17:30.071Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "happensAt": "2026-02-27T01:17:30.071Z", + "id": "20202020-0001-4000-8001-000500000001", + "linkedObjectMetadataId": null, + "linkedRecordCachedName": "", + "linkedRecordId": "20202020-a19d-422b-9cb2-5f8382a56877", + "name": "company.created", + "position": 0, + "properties": { + "after": { + "id": "20202020-a19d-422b-9cb2-5f8382a56877", + "city": "San Jose", + "name": "Cisco", + "employees": 99625, + "domainName": "cisco.com" + } + }, + "targetCompany": { + "__typename": "Company", + "id": "20202020-a19d-422b-9cb2-5f8382a56877", + "name": "Cisco" + }, + "targetCompanyId": "20202020-a19d-422b-9cb2-5f8382a56877", + "targetDashboard": null, + "targetDashboardId": null, + "targetEmploymentHistory": null, + "targetEmploymentHistoryId": null, + "targetNote": null, + "targetNoteId": null, + "targetOpportunity": null, + "targetOpportunityId": null, + "targetPerson": null, + "targetPersonId": null, + "targetPet": null, + "targetPetCareAgreement": null, + "targetPetCareAgreementId": null, + "targetPetId": null, + "targetRocket": null, + "targetRocketId": null, + "targetSurveyResult": null, + "targetSurveyResultId": null, + "targetTask": null, + "targetTaskId": null, + "targetWorkflow": null, + "targetWorkflowId": null, + "targetWorkflowRun": null, + "targetWorkflowRunId": null, + "targetWorkflowVersion": null, + "targetWorkflowVersionId": null, + "updatedAt": "2026-02-27T01:17:30.071Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "workspaceMember": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7" + }, + { + "__typename": "TimelineActivity", + "createdAt": "2026-02-27T01:17:30.071Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "happensAt": "2026-02-27T01:17:30.071Z", + "id": "20202020-0001-4000-8001-000600000001", + "linkedObjectMetadataId": null, + "linkedRecordCachedName": "", + "linkedRecordId": "20202020-a39c-4644-867d-e8e1851b3ee8", + "name": "company.created", + "position": 0, + "properties": { + "after": { + "id": "20202020-a39c-4644-867d-e8e1851b3ee8", + "city": "San Francisco", + "name": "Uber", + "employees": 90545, + "domainName": "uber.com" + } + }, + "targetCompany": { + "__typename": "Company", + "id": "20202020-a39c-4644-867d-e8e1851b3ee8", + "name": "Uber" + }, + "targetCompanyId": "20202020-a39c-4644-867d-e8e1851b3ee8", + "targetDashboard": null, + "targetDashboardId": null, + "targetEmploymentHistory": null, + "targetEmploymentHistoryId": null, + "targetNote": null, + "targetNoteId": null, + "targetOpportunity": null, + "targetOpportunityId": null, + "targetPerson": null, + "targetPersonId": null, + "targetPet": null, + "targetPetCareAgreement": null, + "targetPetCareAgreementId": null, + "targetPetId": null, + "targetRocket": null, + "targetRocketId": null, + "targetSurveyResult": null, + "targetSurveyResultId": null, + "targetTask": null, + "targetTaskId": null, + "targetWorkflow": null, + "targetWorkflowId": null, + "targetWorkflowRun": null, + "targetWorkflowRunId": null, + "targetWorkflowVersion": null, + "targetWorkflowVersionId": null, + "updatedAt": "2026-02-27T01:17:30.071Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "workspaceMember": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7" + }, + { + "__typename": "TimelineActivity", + "createdAt": "2026-02-27T01:17:30.071Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "happensAt": "2026-02-27T01:17:30.071Z", + "id": "20202020-0001-4000-8001-000700000001", + "linkedObjectMetadataId": null, + "linkedRecordCachedName": "", + "linkedRecordId": "20202020-a0eb-4c51-aa03-c4cd2423d7cb", + "name": "company.created", + "position": 0, + "properties": { + "after": { + "id": "20202020-a0eb-4c51-aa03-c4cd2423d7cb", + "city": "San Francisco", + "name": "Salesforce", + "employees": 71322, + "domainName": "salesforce.com" + } + }, + "targetCompany": { + "__typename": "Company", + "id": "20202020-a0eb-4c51-aa03-c4cd2423d7cb", + "name": "Salesforce" + }, + "targetCompanyId": "20202020-a0eb-4c51-aa03-c4cd2423d7cb", + "targetDashboard": null, + "targetDashboardId": null, + "targetEmploymentHistory": null, + "targetEmploymentHistoryId": null, + "targetNote": null, + "targetNoteId": null, + "targetOpportunity": null, + "targetOpportunityId": null, + "targetPerson": null, + "targetPersonId": null, + "targetPet": null, + "targetPetCareAgreement": null, + "targetPetCareAgreementId": null, + "targetPetId": null, + "targetRocket": null, + "targetRocketId": null, + "targetSurveyResult": null, + "targetSurveyResultId": null, + "targetTask": null, + "targetTaskId": null, + "targetWorkflow": null, + "targetWorkflowId": null, + "targetWorkflowRun": null, + "targetWorkflowRunId": null, + "targetWorkflowVersion": null, + "targetWorkflowVersionId": null, + "updatedAt": "2026-02-27T01:17:30.071Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "workspaceMember": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7" + }, + { + "__typename": "TimelineActivity", + "createdAt": "2026-02-27T01:17:30.071Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "happensAt": "2026-02-27T01:17:30.071Z", + "id": "20202020-0001-4000-8001-000800000001", + "linkedObjectMetadataId": null, + "linkedRecordCachedName": "", + "linkedRecordId": "20202020-a9b5-48ec-97c0-dbbfcbe8df1b", + "name": "company.created", + "position": 0, + "properties": { + "after": { + "id": "20202020-a9b5-48ec-97c0-dbbfcbe8df1b", + "city": "Chesterfield", + "name": "Amdocs", + "employees": 35731, + "domainName": "amdocs.com" + } + }, + "targetCompany": { + "__typename": "Company", + "id": "20202020-a9b5-48ec-97c0-dbbfcbe8df1b", + "name": "Amdocs" + }, + "targetCompanyId": "20202020-a9b5-48ec-97c0-dbbfcbe8df1b", + "targetDashboard": null, + "targetDashboardId": null, + "targetEmploymentHistory": null, + "targetEmploymentHistoryId": null, + "targetNote": null, + "targetNoteId": null, + "targetOpportunity": null, + "targetOpportunityId": null, + "targetPerson": null, + "targetPersonId": null, + "targetPet": null, + "targetPetCareAgreement": null, + "targetPetCareAgreementId": null, + "targetPetId": null, + "targetRocket": null, + "targetRocketId": null, + "targetSurveyResult": null, + "targetSurveyResultId": null, + "targetTask": null, + "targetTaskId": null, + "targetWorkflow": null, + "targetWorkflowId": null, + "targetWorkflowRun": null, + "targetWorkflowRunId": null, + "targetWorkflowVersion": null, + "targetWorkflowVersionId": null, + "updatedAt": "2026-02-27T01:17:30.071Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "workspaceMember": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7" + }, + { + "__typename": "TimelineActivity", + "createdAt": "2026-02-27T01:17:30.071Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "happensAt": "2026-02-27T01:17:30.071Z", + "id": "20202020-0001-4000-8001-000900000001", + "linkedObjectMetadataId": null, + "linkedRecordCachedName": "", + "linkedRecordId": "20202020-a89d-44f9-ac9c-25e462460cb0", + "name": "company.created", + "position": 0, + "properties": { + "after": { + "id": "20202020-a89d-44f9-ac9c-25e462460cb0", + "city": "Palo Alto", + "name": "VMware", + "employees": 34759, + "domainName": "vmware.com" + } + }, + "targetCompany": { + "__typename": "Company", + "id": "20202020-a89d-44f9-ac9c-25e462460cb0", + "name": "VMware" + }, + "targetCompanyId": "20202020-a89d-44f9-ac9c-25e462460cb0", + "targetDashboard": null, + "targetDashboardId": null, + "targetEmploymentHistory": null, + "targetEmploymentHistoryId": null, + "targetNote": null, + "targetNoteId": null, + "targetOpportunity": null, + "targetOpportunityId": null, + "targetPerson": null, + "targetPersonId": null, + "targetPet": null, + "targetPetCareAgreement": null, + "targetPetCareAgreementId": null, + "targetPetId": null, + "targetRocket": null, + "targetRocketId": null, + "targetSurveyResult": null, + "targetSurveyResultId": null, + "targetTask": null, + "targetTaskId": null, + "targetWorkflow": null, + "targetWorkflowId": null, + "targetWorkflowRun": null, + "targetWorkflowRunId": null, + "targetWorkflowVersion": null, + "targetWorkflowVersionId": null, + "updatedAt": "2026-02-27T01:17:30.071Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "workspaceMember": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7" + }, + { + "__typename": "TimelineActivity", + "createdAt": "2026-02-27T01:17:30.071Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "deletedAt": null, + "happensAt": "2026-02-27T01:17:30.071Z", + "id": "20202020-0001-4000-8001-001000000001", + "linkedObjectMetadataId": null, + "linkedRecordCachedName": "", + "linkedRecordId": "20202020-a377-4693-a2d9-89dc9188a1dc", + "name": "company.created", + "position": 0, + "properties": { + "after": { + "id": "20202020-a377-4693-a2d9-89dc9188a1dc", + "city": "Santa Clara", + "name": "GlobalLogic", + "employees": 24461, + "domainName": "globallogic.com" + } + }, + "targetCompany": { + "__typename": "Company", + "id": "20202020-a377-4693-a2d9-89dc9188a1dc", + "name": "GlobalLogic" + }, + "targetCompanyId": "20202020-a377-4693-a2d9-89dc9188a1dc", + "targetDashboard": null, + "targetDashboardId": null, + "targetEmploymentHistory": null, + "targetEmploymentHistoryId": null, + "targetNote": null, + "targetNoteId": null, + "targetOpportunity": null, + "targetOpportunityId": null, + "targetPerson": null, + "targetPersonId": null, + "targetPet": null, + "targetPetCareAgreement": null, + "targetPetCareAgreementId": null, + "targetPetId": null, + "targetRocket": null, + "targetRocketId": null, + "targetSurveyResult": null, + "targetSurveyResultId": null, + "targetTask": null, + "targetTaskId": null, + "targetWorkflow": null, + "targetWorkflowId": null, + "targetWorkflowRun": null, + "targetWorkflowRunId": null, + "targetWorkflowVersion": null, + "targetWorkflowVersionId": null, + "updatedAt": "2026-02-27T01:17:30.071Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": null, + "name": "System", + "context": null + }, + "workspaceMember": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7" + } +]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/metadata/objects/mock-objects-metadata.ts b/packages/twenty-front/src/testing/mock-data/generated/metadata/objects/mock-objects-metadata.ts index 357ad6532c..08bb69f09b 100644 --- a/packages/twenty-front/src/testing/mock-data/generated/metadata/objects/mock-objects-metadata.ts +++ b/packages/twenty-front/src/testing/mock-data/generated/metadata/objects/mock-objects-metadata.ts @@ -21,33 +21,33 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", - "universalIdentifier": "20202020-d65d-4ab9-9344-d77bfb376a3d", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "universalIdentifier": "20202020-fff0-4b44-be82-bda313884400", + "nameSingular": "noteTarget", + "namePlural": "noteTargets", "isCustom": false, "isRemote": false, "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "15a33b26-48e6-4bad-b1da-eede6ae01cbd", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "36027089-61d6-48e8-bb7a-61249ff1bb0b", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, "duplicateCriteria": null, - "labelSingular": "Workflow Version", - "labelPlural": "Workflow Versions", - "description": "A workflow version", - "icon": "IconVersions", + "labelSingular": "Note Target", + "labelPlural": "Note Targets", + "description": "A note target", + "icon": "IconCheckbox", "fieldsList": [ { "__typename": "Field", - "id": "2125f9e3-cdba-4328-9e4b-bb508144cd50", - "universalIdentifier": "20202020-f04a-41a1-8aa1-abcdefabcdef", + "id": "36027089-61d6-48e8-bb7a-61249ff1bb0b", + "universalIdentifier": "20202020-c02a-4121-8a21-cddeef123456", "type": "UUID", "name": "id", "label": "Id", @@ -59,21 +59,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "39fd83ff-878f-4e9d-9839-8c3d79932875", - "universalIdentifier": "20202020-f04b-41a2-9ba2-bcdefabcdefa", + "id": "996ec78d-cdee-4263-9017-e60d587ac5d0", + "universalIdentifier": "20202020-c02b-4122-9b22-ddeef1234567", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -85,8 +85,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -94,14 +94,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6242a0fd-e9de-4f82-8fb1-41f53c96588d", - "universalIdentifier": "20202020-f04c-41a3-8ca3-cdefabcdefab", + "id": "46c3b145-f373-45d5-bdb4-45b2ff2425b7", + "universalIdentifier": "20202020-c02c-4123-8c23-eef12345678a", "type": "DATE_TIME", "name": "updatedAt", "label": "Last update", @@ -113,8 +113,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -122,14 +122,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "4510b5a5-3967-4789-b914-67299dac98c3", - "universalIdentifier": "20202020-f04d-41a4-9da4-defabcdefabc", + "id": "f816dd82-9cfa-430c-b84f-d60536db9944", + "universalIdentifier": "20202020-c02d-4124-9d24-ef123456789b", "type": "DATE_TIME", "name": "deletedAt", "label": "Deleted at", @@ -141,8 +141,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -150,14 +150,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b643a14e-7611-4905-910c-31d6d7d221da", - "universalIdentifier": "34f592a7-5c13-4c8b-8473-7bef00848b4e", + "id": "5a517a8e-c7fe-4288-b0d8-8bc33d657f60", + "universalIdentifier": "820a3163-bb7d-41bc-93d9-81a464559c48", "type": "ACTOR", "name": "createdBy", "label": "Created by", @@ -169,8 +169,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -180,14 +180,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "9756112a-441a-4f96-94c4-3f7efab42a8c", - "universalIdentifier": "4f8777e6-c5eb-40c6-bb4c-ed9dcf0d81e9", + "id": "283e1352-e93c-4bb2-808a-ef31c528420d", + "universalIdentifier": "a48c2bae-fe78-4d9d-bc37-f56d1a462121", "type": "ACTOR", "name": "updatedBy", "label": "Updated by", @@ -199,8 +199,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -210,151 +210,1787 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "15a33b26-48e6-4bad-b1da-eede6ae01cbd", - "universalIdentifier": "20202020-a12f-4cca-9937-a2e40cc65509", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "The workflow version name", - "icon": "IconSettingsAutomation", + "id": "44c6a23b-ddb8-4f92-b177-44b718f33556", + "universalIdentifier": "082f7c9e-5ccd-4056-8748-a428f65fa6f6", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "NoteTarget record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "1e36c79d-f711-417e-bd21-23a9d575c468", + "universalIdentifier": "0cc32d0f-99ab-4fee-bf66-9e84bc8bce00", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9c7ac0eb-cbb9-4043-bc79-a6350611d037", + "universalIdentifier": "20202020-57f3-4f50-9599-fc0f671df003", + "type": "RELATION", + "name": "note", + "label": "Note", + "description": "NoteTarget note", + "icon": "IconNotes", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, - "settings": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "noteId" + }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "1691dfbb-f84a-4fe8-acd4-a7f35e7673a7", + "nameSingular": "note", + "namePlural": "notes" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "9c7ac0eb-cbb9-4043-bc79-a6350611d037", + "name": "note" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1acbbea8-76dd-4a1e-9d2e-fdbebc1efe1f", + "name": "noteTargets" + } + }, "morphRelations": null }, { "__typename": "Field", - "id": "5de1decb-9b3f-44ee-bd4b-0f1e41f192e0", - "universalIdentifier": "20202020-4eae-43e7-86e0-212b41a30b48", - "type": "RAW_JSON", - "name": "trigger", - "label": "Version trigger", - "description": "Json object to provide trigger", - "icon": "IconSettingsAutomation", - "isCustom": false, + "id": "07ad123b-8f3b-49d4-9754-c4e6d8751300", + "universalIdentifier": "0d2f7258-66a9-4d2a-b85d-51829bf29060", + "type": "MORPH_RELATION", + "name": "target", + "label": "EmploymentHistory", + "description": "NoteTargets Employment History", + "icon": "IconCheckbox", + "isCustom": true, "isActive": true, "isSystem": false, - "isUIReadOnly": true, + "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", "defaultValue": null, "options": null, - "settings": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "targetEmploymentHistoryId" + }, "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "morphId": "20202020-f635-435d-ab8d-e1168b375c70", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", "relation": null, - "morphRelations": null - }, + "morphRelations": [ + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "07ad123b-8f3b-49d4-9754-c4e6d8751300", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "ed6f71a0-2b17-4fd9-af77-dbfb5184ee8f", + "name": "noteTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "757b63bb-1b11-496d-8939-f16ad85e8387", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "ff9e80e1-58be-4acf-867c-0afcf656d65c", + "name": "noteTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "24e72ed6-7f06-4533-969d-88920f629d32", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "4c72443b-0c85-46b5-a23e-b5c056a5342c", + "name": "noteTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "ae386ffb-ec86-4eb4-b583-625897a42223", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "31959174-8fbe-4fc3-a8f6-17405bfe92db", + "name": "noteTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "1d75ce55-3009-4c75-8bc0-c1a7006a8f8d", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "23d12b1b-64a2-4c69-9fed-f9cb33cb05a7", + "name": "noteTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "a0c0206c-7289-457f-85da-ce17b661a604", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "5aa9be29-57c9-4f2a-968d-47bb2762e383", + "name": "noteTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "ef6fbaeb-487e-4fb5-a138-567f5ce16f9c", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "b6e33f88-009c-4d8c-8593-0ca8c023247d", + "name": "noteTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "9630c791-07b6-4a34-9062-a9ff70900392", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "46edb2f7-20fd-4696-b124-ef5e336ab84c", + "name": "noteTargets" + } + } + ] + } + ], + "indexMetadataList": [ { - "__typename": "Field", - "id": "c6306f8a-f30d-458b-af06-f77a84df65ee", - "universalIdentifier": "20202020-5988-4a64-b94a-1f9b7b989039", - "type": "RAW_JSON", - "name": "steps", - "label": "Version steps", - "description": "Json object to provide steps", - "icon": "IconSettingsAutomation", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, + "__typename": "Index", + "id": "1f88a82b-2fb8-4ece-97fb-05fa23785a3d", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_7e2582241f3b749d7a43d7d0231", + "indexWhereClause": null, + "indexType": "BTREE", "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "891a8997-e9df-4c3b-8a47-c6b11f6f19df", + "fieldMetadataId": "9c7ac0eb-cbb9-4043-bc79-a6350611d037", + "createdAt": "2026-02-27T01:17:26.889Z", + "updatedAt": "2026-02-27T01:17:26.889Z", + "order": 0 + } + ] }, + { + "__typename": "Index", + "id": "cfe98e81-718e-4619-b018-4b2de64c84e4", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_a1e176335c31525bf3cc12f0e00", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "8495a4b0-2374-4159-bac1-872d66d7ba67", + "fieldMetadataId": "24e72ed6-7f06-4533-969d-88920f629d32", + "createdAt": "2026-02-27T01:17:26.890Z", + "updatedAt": "2026-02-27T01:17:26.890Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "859db338-d2f3-43ff-b2e7-839dced2d27f", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_2f07fa4cf183061692f8d99df80", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "4f3746da-97f2-491e-8b0a-bd6bbb25df7d", + "fieldMetadataId": "757b63bb-1b11-496d-8939-f16ad85e8387", + "createdAt": "2026-02-27T01:17:26.890Z", + "updatedAt": "2026-02-27T01:17:26.890Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "0d209a53-7299-4688-afaf-3d3b2843a6bb", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_9058210268a941b4b77a609e982", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "88dd8e78-fed9-43bd-a037-82f75d772c90", + "fieldMetadataId": "ae386ffb-ec86-4eb4-b583-625897a42223", + "createdAt": "2026-02-27T01:17:26.891Z", + "updatedAt": "2026-02-27T01:17:26.891Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "universalIdentifier": "20202020-b374-4779-a561-80086cb2e17f", + "nameSingular": "company", + "namePlural": "companies", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "22f022bd-6ab1-42df-b7eb-f08d7f1b1a6d", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": "C", + "isLabelSyncedWithName": false, + "isSearchable": true, + "duplicateCriteria": [ + [ + "name" + ], + [ + "domainNamePrimaryLinkUrl" + ] + ], + "labelSingular": "Company", + "labelPlural": "Companies", + "description": "A company", + "icon": "IconBuildingSkyscraper", + "fieldsList": [ { "__typename": "Field", - "id": "6a93c744-ad37-45ea-8d82-2e2403ba3ead", - "universalIdentifier": "20202020-5a34-440e-8a25-39d8c3d1d4cf", - "type": "SELECT", - "name": "status", - "label": "Version status", - "description": "The workflow version status", - "icon": "IconStatusChange", + "id": "37bb2b96-e805-441a-bee9-3147070be498", + "universalIdentifier": "20202020-c05a-4061-8a61-1e2f3a4b5c6d", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", "isCustom": false, "isActive": true, - "isSystem": false, + "isSystem": true, "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'DRAFT'", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "7ba060df-386f-4a00-87b8-1eca233b2e68", + "universalIdentifier": "20202020-c05b-4062-9b62-2f3a4b5c6d7e", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "543f4fe8-97cf-4666-886f-4d6ba9545bd6", + "universalIdentifier": "20202020-c05c-4063-8c63-3a4b5c6d7e8f", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "dfff0759-4085-47f4-abf2-95312ddfa9d9", + "universalIdentifier": "20202020-c05d-4064-9d64-4b5c6d7e8f9a", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "22f022bd-6ab1-42df-b7eb-f08d7f1b1a6d", + "universalIdentifier": "20202020-4d99-4e2e-a84c-4a27837b1ece", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "The company name", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0745db32-3bc7-4475-9cbe-a6fede666d63", + "universalIdentifier": "20202020-0c28-43d8-8ba5-3659924d3489", + "type": "LINKS", + "name": "domainName", + "label": "Domain Name", + "description": "The company website URL. We use this url to fetch the company icon", + "icon": "IconLink", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": true, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "maxNumberOfValues": 1 + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b0988fa7-da62-4465-b31d-a807ecf264ec", + "universalIdentifier": "20202020-c5ce-4adc-b7b6-9c0979fc55e7", + "type": "ADDRESS", + "name": "address", + "label": "Address", + "description": "Address of the company", + "icon": "IconMap", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c4bc7169-f7a5-4fb0-8fd8-0c4ae656089d", + "universalIdentifier": "20202020-8965-464a-8a75-74bafc152a0b", + "type": "NUMBER", + "name": "employees", + "label": "Employees", + "description": "Number of employees in the company", + "icon": "IconUsers", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0954834a-3adc-48d6-a07e-7b4645fb24f3", + "universalIdentifier": "20202020-ebeb-4beb-b9ad-6848036fb451", + "type": "LINKS", + "name": "linkedinLink", + "label": "Linkedin", + "description": "The company Linkedin account", + "icon": "IconBrandLinkedin", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "fd3eb026-1266-45fe-a45f-8d0d54058f15", + "universalIdentifier": "20202020-6f64-4fd9-9580-9c1991c7d8c3", + "type": "LINKS", + "name": "xLink", + "label": "X", + "description": "The company Twitter/X account", + "icon": "IconBrandX", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "1ba660fb-5778-4650-9ce6-b787702a52e5", + "universalIdentifier": "20202020-602a-495c-9776-f5d5b11d227b", + "type": "CURRENCY", + "name": "annualRecurringRevenue", + "label": "ARR", + "description": "Annual Recurring Revenue: The actual or estimated annual revenue of the company", + "icon": "IconMoneybag", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9d20c1fb-87b4-40a7-bea8-b7df3eb0e356", + "universalIdentifier": "20202020-ba6b-438a-8213-2c5ba28d76a2", + "type": "BOOLEAN", + "name": "idealCustomerProfile", + "label": "ICP", + "description": "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you", + "icon": "IconTarget", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": false, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "2f3e2ed7-6b1a-41ae-ac1b-9834f5521138", + "universalIdentifier": "20202020-9b4e-462b-991d-a0ee33326454", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Company record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "2458a15f-4bc3-4bb3-a259-3c1bdd2117b5", + "universalIdentifier": "20202020-fabc-451d-ab7d-412170916baa", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b6c1bd58-53e5-4633-ae96-e4c3d0de41ff", + "universalIdentifier": "7444022e-b38f-4d4f-801b-cd664abc4834", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "aeee8e7c-3702-4726-9710-b350f1f185da", + "universalIdentifier": "85c71601-72f9-4b7b-b343-d46100b2c74d", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"domainNamePrimaryLinkLabel\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"domainNamePrimaryLinkUrl\"), '') || ' ' || COALESCE(public.unaccent_immutable(TRANSLATE(regexp_replace(\"domainNameSecondaryLinks\"::text, '\"(label|url)\"\\s*:\\s*', '', 'g'), '[]{}\",:', ' ')), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "ce4aaec1-0195-484f-9971-6d9d980ec179", + "universalIdentifier": "20202020-c1b5-4120-b0f0-987ca401ed53", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Attachments linked to the company", + "icon": "IconFileImport", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "ce4aaec1-0195-484f-9971-6d9d980ec179", + "name": "attachments" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "6e05d90c-7fce-4115-93c7-d5fa28a44e75", + "universalIdentifier": "20202020-3213-4ddf-9494-6422bcff8d7c", + "type": "RELATION", + "name": "people", + "label": "People", + "description": "People linked to the company.", + "icon": "IconUsers", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "6e05d90c-7fce-4115-93c7-d5fa28a44e75", + "name": "people" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "bb9817f1-4487-4cfc-b743-6a5cd374cd78", + "name": "company" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "ebe26ed0-4b68-48cc-b2d4-e23f3a5e265d", + "universalIdentifier": "20202020-95b8-4e10-9881-edb5d4765f9d", + "type": "RELATION", + "name": "accountOwner", + "label": "Account Owner", + "description": "Your team member responsible for managing the company account", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "accountOwnerId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "ebe26ed0-4b68-48cc-b2d4-e23f3a5e265d", + "name": "accountOwner" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "c875a774-e700-4d7b-94c5-23116ac470fb", + "name": "accountOwnerForCompanies" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "2ca55499-a2e8-457d-8f31-531b1598e758", + "universalIdentifier": "20202020-cb17-4a61-8f8f-3be6730480de", + "type": "RELATION", + "name": "taskTargets", + "label": "Tasks", + "description": "Tasks tied to the company", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "2ca55499-a2e8-457d-8f31-531b1598e758", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "3fafd252-d79a-4fe7-8c16-730b6dd495d1", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "ff9e80e1-58be-4acf-867c-0afcf656d65c", + "universalIdentifier": "20202020-bae0-4556-a74a-a9c686f77a88", + "type": "RELATION", + "name": "noteTargets", + "label": "Notes", + "description": "Notes tied to the company", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "ff9e80e1-58be-4acf-867c-0afcf656d65c", + "name": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "07ad123b-8f3b-49d4-9754-c4e6d8751300", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "147fef87-1b7f-495f-86b2-a71eca873d56", + "universalIdentifier": "20202020-add3-4658-8e23-d70dccb6d0ec", + "type": "RELATION", + "name": "opportunities", + "label": "Opportunities", + "description": "Opportunities linked to the company.", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "147fef87-1b7f-495f-86b2-a71eca873d56", + "name": "opportunities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "495a7d81-45b7-4cd2-8f8b-f01873fd78c6", + "name": "company" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "5bdca64b-0bc7-4a3f-b6d4-93969604cd85", + "universalIdentifier": "20202020-4d1d-41ac-b13b-621631298d55", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the company", + "icon": "IconHeart", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "5bdca64b-0bc7-4a3f-b6d4-93969604cd85", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "c8186975-3e09-461f-9576-5cbc390e51f2", + "name": "company" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d26e5411-91c9-4eec-a731-5a8fded0dfd1", + "universalIdentifier": "20202020-0414-4daf-9c0d-64fe7b27f89f", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Timeline Activities linked to the company", + "icon": "IconIconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "d26e5411-91c9-4eec-a731-5a8fded0dfd1", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9e5ff05a-4dc4-41b6-94bc-357a921dcbfd", + "universalIdentifier": "65166b03-06c3-4b1d-a09a-51eac313e75c", + "type": "TEXT", + "name": "tagline", + "label": "Tagline", + "description": "Company's Tagline", + "icon": "IconAdCircle", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.073Z", + "updatedAt": "2026-02-27T01:17:28.073Z", + "defaultValue": "''", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "7ac3929d-081f-4199-bd56-dfdcb1e3e614", + "universalIdentifier": "cc6bf47e-db61-4523-80e3-9ff29396757f", + "type": "LINKS", + "name": "introVideo", + "label": "Intro Video", + "description": "Company's Intro Video", + "icon": "IconVideo", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.073Z", + "updatedAt": "2026-02-27T01:17:28.073Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "efa40ccf-be4f-4a76-8b60-d97794de5996", + "universalIdentifier": "6792fb12-e568-4b11-9240-5b5c982715ff", + "type": "MULTI_SELECT", + "name": "workPolicy", + "label": "Work Policy", + "description": "Company's Work Policy", + "icon": "IconHome", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.073Z", + "updatedAt": "2026-02-27T01:17:28.073Z", + "defaultValue": null, "options": [ { - "id": "20202020-e3fe-4308-bb57-931bb8098aa0", - "color": "yellow", - "label": "Draft", - "value": "DRAFT", + "id": "a79ba9af-291e-4e63-8ab2-f82a42bb6685", + "color": "green", + "label": "On-Site", + "value": "ON_SITE", "position": 0 }, { - "id": "20202020-e9da-428f-8499-bce1b020660b", - "color": "green", - "label": "Active", - "value": "ACTIVE", + "id": "797af80d-f4bb-4b5e-a917-5a4b7a22b79e", + "color": "turquoise", + "label": "Hybrid", + "value": "HYBRID", "position": 1 }, { - "id": "20202020-e48d-4159-980d-2cc1235fc918", - "color": "orange", - "label": "Deactivated", - "value": "DEACTIVATED", + "id": "fa680971-414e-4d72-9465-ef4e4266ed81", + "color": "sky", + "label": "Remote Work", + "value": "REMOTE_WORK", "position": 2 - }, - { - "id": "20202020-5e5e-48fe-bcd6-7688ec280b30", - "color": "gray", - "label": "Archived", - "value": "ARCHIVED", - "position": 3 } ], "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "3e76f732-dd96-4620-9580-ac723a77a99b", - "universalIdentifier": "20202020-791d-4950-ab28-0e704767ae1c", + "id": "bbb5cfe8-161d-45c5-b8d0-7910ab87db91", + "universalIdentifier": "2bcef742-7396-4575-b0e4-34e47cf50fba", + "type": "BOOLEAN", + "name": "visaSponsorship", + "label": "Visa Sponsorship", + "description": "Company's Visa Sponsorship Policy", + "icon": "IconBrandVisa", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.073Z", + "updatedAt": "2026-02-27T01:17:28.073Z", + "defaultValue": false, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b6ed9897-574d-4859-83ed-46cfb7943908", + "universalIdentifier": "ece542ec-aed5-4bb8-8731-b2241a798177", + "type": "RELATION", + "name": "caredForPets", + "label": "Cared For Pets", + "description": "Companies Pet Care Agreement", + "icon": "IconPaw", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.305Z", + "updatedAt": "2026-02-27T01:17:28.813Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY", + "junctionTargetFieldId": "73f75510-6ee9-4aaf-9d4b-1d6c4ffeabf0" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b6ed9897-574d-4859-83ed-46cfb7943908", + "name": "caredForPets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0a27394a-f071-4155-a642-9b6700abb9d6", + "name": "caretaker" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "da8ebad7-75c4-492f-a062-cd7df9ee586d", + "universalIdentifier": "e4ab9be3-5087-492e-b6f1-bdf39b08dac6", + "type": "RELATION", + "name": "previousEmployees", + "label": "Previous Employees", + "description": "Companies tied to the Employment History", + "icon": "IconUser", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.476Z", + "updatedAt": "2026-02-27T01:17:28.700Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY", + "junctionTargetFieldId": "9146ab09-84d2-46e0-b68c-f4947bc6f60d" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "da8ebad7-75c4-492f-a062-cd7df9ee586d", + "name": "previousEmployees" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "af82354c-fc09-49e1-8a5c-dbf8bff020d7", + "name": "company" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "033dcd90-339a-4ccd-9699-43814a880dd4", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_f719a95179070eac397ba18dc70", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "65a2989f-821a-43e0-9737-1e18cd00ff44", + "fieldMetadataId": "ebe26ed0-4b68-48cc-b2d4-e23f3a5e265d", + "createdAt": "2026-02-27T01:17:26.872Z", + "updatedAt": "2026-02-27T01:17:26.872Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "1a133c87-1eae-4620-89bc-705b1a5d96a9", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_UNIQUE_2a32339058d0b6910b0834ddf81", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": true, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "7aed995d-312a-438a-af22-4f8ee045c83f", + "fieldMetadataId": "0745db32-3bc7-4475-9cbe-a6fede666d63", + "createdAt": "2026-02-27T01:17:26.873Z", + "updatedAt": "2026-02-27T01:17:26.873Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "f67861fe-df5a-4c0d-a909-70269da21c8f", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_fb1f4905546cfc6d70a971c76f7", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "a0a15809-37c1-4845-afaf-01840208899b", + "fieldMetadataId": "aeee8e7c-3702-4726-9710-b350f1f185da", + "createdAt": "2026-02-27T01:17:26.873Z", + "updatedAt": "2026-02-27T01:17:26.873Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "universalIdentifier": "20202020-3319-4234-a34c-82d5c0e881a6", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "5cb19fe2-0520-4dec-bc24-2e16a2dc9588", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": true, + "duplicateCriteria": null, + "labelSingular": "Workspace Member", + "labelPlural": "Workspace Members", + "description": "A workspace member", + "icon": "IconUserCircle", + "fieldsList": [ + { + "__typename": "Field", + "id": "6a7fda67-f684-43ac-895f-843120e857bc", + "universalIdentifier": "20202020-fb1a-41b1-8ab1-efabcdefabcd", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "40127007-983c-487e-aad4-7931b5388a07", + "universalIdentifier": "20202020-fb1b-41b2-9bb2-fabcdefabcde", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "db6cd739-46ed-4aaf-aaec-aa99c25c08c8", + "universalIdentifier": "20202020-fb1c-41b3-8cb3-abcdefabcdef", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e401865b-4986-4e81-94df-45dd970794f4", + "universalIdentifier": "20202020-fb1d-41b4-9db4-bcdefabcdefa", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "45dee731-0d06-4660-82fc-9ea48c487dab", + "universalIdentifier": "20202020-1810-4591-a93c-d0df97dca843", "type": "POSITION", "name": "position", "label": "Position", - "description": "Workflow version position", + "description": "Workspace member position", "icon": "IconHierarchy2", "isCustom": false, "isActive": true, @@ -362,21 +1998,396 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "186212ea-bdbe-452d-9321-7470a06372af", - "universalIdentifier": "20202020-3f17-44ef-b8c1-b282ae8469b2", + "id": "5cb19fe2-0520-4dec-bc24-2e16a2dc9588", + "universalIdentifier": "20202020-e914-43a6-9c26-3603c59065f4", + "type": "FULL_NAME", + "name": "name", + "label": "Name", + "description": "Workspace member name", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "6f3ffb60-d196-43ed-bb45-844c7ff1334d", + "universalIdentifier": "20202020-66bc-47f2-adac-f2ef7c598b63", + "type": "TEXT", + "name": "colorScheme", + "label": "Color Scheme", + "description": "Preferred color scheme", + "icon": "IconColorSwatch", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'System'", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a0388d40-a1e5-4c38-9aa6-6d6db2f144a0", + "universalIdentifier": "20202020-402e-4695-b169-794fa015afbe", + "type": "TEXT", + "name": "locale", + "label": "Language", + "description": "Preferred language", + "icon": "IconLanguage", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'en'", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f6a173e3-c4ea-4116-b3ad-dc0f26cc71d2", + "universalIdentifier": "20202020-0ced-4c4f-a376-c98a966af3f6", + "type": "TEXT", + "name": "avatarUrl", + "label": "Avatar Url", + "description": "Workspace member avatar", + "icon": "IconFileUpload", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "98237c5c-3468-43fa-a0a1-722cec408d9c", + "universalIdentifier": "20202020-4c5f-4e09-bebc-9e624e21ecf4", + "type": "TEXT", + "name": "userEmail", + "label": "User Email", + "description": "Related user email address", + "icon": "IconMail", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": true, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a7459788-fcc0-4e9b-b6ec-3b16ec9348c4", + "universalIdentifier": "20202020-1ecc-4562-84c9-ff3a2f6cce85", + "type": "NUMBER", + "name": "calendarStartDay", + "label": "Start of the week", + "description": "User's preferred start day of the week", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 7, + "options": null, + "settings": { + "dataType": "int" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "102be4b5-d177-42d5-bc4f-b17bb1b3e7f9", + "universalIdentifier": "20202020-75a9-4dfc-bf25-2e4b43e89820", + "type": "UUID", + "name": "userId", + "label": "User Id", + "description": "Associated User Id", + "icon": "IconCircleUsers", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b490400c-74dc-43d8-b5a6-2cbdd583e4ba", + "universalIdentifier": "20202020-2d33-4c21-a86e-5943b050dd54", + "type": "TEXT", + "name": "timeZone", + "label": "Time zone", + "description": "User time zone", + "icon": "IconTimezone", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'system'", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e6456cf4-b09a-4b47-8738-ce42761f5771", + "universalIdentifier": "20202020-af13-4e11-b1e7-b8cf5ea13dc0", + "type": "SELECT", + "name": "dateFormat", + "label": "Date format", + "description": "User's preferred date format", + "icon": "IconCalendarEvent", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'SYSTEM'", + "options": [ + { + "id": "20202020-4b6a-4a08-8506-09bd59ef118e", + "color": "turquoise", + "label": "System", + "value": "SYSTEM", + "position": 0 + }, + { + "id": "20202020-6981-4e21-bb11-43ac1081be04", + "color": "red", + "label": "Month First", + "value": "MONTH_FIRST", + "position": 1 + }, + { + "id": "20202020-bf56-4199-b013-27ee921d046d", + "color": "purple", + "label": "Day First", + "value": "DAY_FIRST", + "position": 2 + }, + { + "id": "20202020-fd23-47d3-b01d-0479c11e5a2d", + "color": "sky", + "label": "Year First", + "value": "YEAR_FIRST", + "position": 3 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "555a6225-a668-4634-9eff-c2e82aa1f864", + "universalIdentifier": "20202020-8acb-4cf8-a851-a6ed443c8d81", + "type": "SELECT", + "name": "timeFormat", + "label": "Time format", + "description": "User's preferred time format", + "icon": "IconClock2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'SYSTEM'", + "options": [ + { + "id": "20202020-349f-4ff8-82be-3eb52e7ec5f5", + "color": "sky", + "label": "System", + "value": "SYSTEM", + "position": 0 + }, + { + "id": "20202020-592c-4e33-a457-f4dcde59a3fc", + "color": "red", + "label": "24HRS", + "value": "HOUR_24", + "position": 1 + }, + { + "id": "20202020-151c-43c2-a463-5bc42e5ce434", + "color": "purple", + "label": "12HRS", + "value": "HOUR_12", + "position": 2 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "cf6df27c-8ad7-4dd6-9e31-2c9c3f312772", + "universalIdentifier": "20202020-7f40-4e7f-b126-11c0eda6b141", + "type": "SELECT", + "name": "numberFormat", + "label": "Number format", + "description": "User's preferred number format", + "icon": "IconNumbers", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'SYSTEM'", + "options": [ + { + "id": "20202020-8b5b-4cee-8449-ca48d7c65c11", + "color": "turquoise", + "label": "System", + "value": "SYSTEM", + "position": 0 + }, + { + "id": "20202020-657d-409b-9c2a-d8c3b8842859", + "color": "blue", + "label": "Commas and dot", + "value": "COMMAS_AND_DOT", + "position": 1 + }, + { + "id": "20202020-8703-4475-a92b-42e631851d8b", + "color": "green", + "label": "Spaces and comma", + "value": "SPACES_AND_COMMA", + "position": 2 + }, + { + "id": "20202020-2ea4-4b99-b72b-bebac01fd7db", + "color": "orange", + "label": "Dots and comma", + "value": "DOTS_AND_COMMA", + "position": 3 + }, + { + "id": "20202020-9d07-4353-8ce9-d067d639abf5", + "color": "purple", + "label": "Apostrophe and dot", + "value": "APOSTROPHE_AND_DOT", + "position": 4 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e7d4d6b8-7a7e-408b-9058-91acda0646a6", + "universalIdentifier": "20202020-46d0-4e7f-bc26-74c0edaeb619", "type": "TS_VECTOR", "name": "searchVector", "label": "Search vector", @@ -388,28 +2399,300 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"nameFirstName\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"nameLastName\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"userEmail\"), ''))", "generatedType": "STORED" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "f29c7287-04f9-4a25-a548-f87f6c10c4e8", - "universalIdentifier": "20202020-b8e0-4e57-928d-b51671cc71f2", + "id": "04417d23-b60a-4a44-b081-3dd312355bd0", + "universalIdentifier": "4a3f26d1-033e-4d84-b23a-9adc2fd0c2a8", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8f804c9c-35fb-47bf-9c2a-7721122dec1c", + "universalIdentifier": "29f84ad0-509f-4aef-9f9c-2691dd60cd87", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "26d6d9bb-c63e-439f-b801-497dc6711611", + "universalIdentifier": "20202020-6cb2-4161-9f29-a4b7f1283859", + "type": "RELATION", + "name": "blocklist", + "label": "Blocklist", + "description": "Blocklisted handles", + "icon": "IconForbid2", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "031d2e7c-0a30-4713-889a-5c2ab30da9fb", + "nameSingular": "blocklist", + "namePlural": "blocklists" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "26d6d9bb-c63e-439f-b801-497dc6711611", + "name": "blocklist" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0a556eea-a4ab-41c9-a1ab-847cc8952eb0", + "name": "workspaceMember" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "cec55fa9-705a-4a1e-a881-d1daa93a1e55", + "universalIdentifier": "20202020-0dbc-4841-9ce1-3e793b5b3512", + "type": "RELATION", + "name": "calendarEventParticipants", + "label": "Calendar Event Participants", + "description": "Calendar Event Participants", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "53e8d9b5-abfd-4a32-b850-f9ec15c8501a", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "cec55fa9-705a-4a1e-a881-d1daa93a1e55", + "name": "calendarEventParticipants" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "5e53b2cc-3b3a-4b73-ae98-c60409a27def", + "name": "workspaceMember" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c875a774-e700-4d7b-94c5-23116ac470fb", + "universalIdentifier": "20202020-dc29-4bd4-a3c1-29eafa324bee", + "type": "RELATION", + "name": "accountOwnerForCompanies", + "label": "Account Owner For Companies", + "description": "Account owner for companies", + "icon": "IconBriefcase", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "c875a774-e700-4d7b-94c5-23116ac470fb", + "name": "accountOwnerForCompanies" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "ebe26ed0-4b68-48cc-b2d4-e23f3a5e265d", + "name": "accountOwner" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c27331d0-0ae9-4c42-ae82-5b518cf9ec44", + "universalIdentifier": "20202020-e322-4bde-a525-727079b4a100", + "type": "RELATION", + "name": "connectedAccounts", + "label": "Connected accounts", + "description": "Connected accounts", + "icon": "IconAt", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "7470a75c-8b34-4fba-8258-f33a6e645e1c", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "c27331d0-0ae9-4c42-ae82-5b518cf9ec44", + "name": "connectedAccounts" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "82974602-49aa-43a9-8623-28a0222cc204", + "name": "accountOwner" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "693888c1-27fa-4d6c-89ca-215bc598c85b", + "universalIdentifier": "20202020-f3c1-4faf-b343-cf7681038757", "type": "RELATION", "name": "favorites", "label": "Favorites", - "description": "Favorites linked to the workflow version", + "description": "Favorites linked to the workspace member", "icon": "IconHeart", "isCustom": false, "isActive": true, @@ -417,8 +2700,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -426,52 +2709,52 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" }, "targetObjectMetadata": { "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "f29c7287-04f9-4a25-a548-f87f6c10c4e8", + "id": "693888c1-27fa-4d6c-89ca-215bc598c85b", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "2dcedf0e-9e22-413c-93b3-aee7e8d78b9d", - "name": "workflowVersion" + "id": "0c3f6382-d3dd-4d20-a5ef-24e4f81b15ab", + "name": "forWorkspaceMember" } }, "morphRelations": null }, { "__typename": "Field", - "id": "2d284da2-4115-4792-a690-ff2000278db2", - "universalIdentifier": "20202020-fcb0-4695-b17e-3b43a421c633", + "id": "659660f4-0f1f-47ed-aa44-b672a4d212f3", + "universalIdentifier": "20202020-8f99-48bc-a5eb-edd33dd54188", "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "Timeline activities linked to the version", - "icon": "IconTimelineEvent", + "name": "messageParticipants", + "label": "Message Participants", + "description": "Message Participants", + "icon": "IconUserCircle", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -479,43 +2762,799 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" }, "targetObjectMetadata": { "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" + "id": "4f6c7ed3-fffc-475a-a4e6-8afd83f16f98", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "2d284da2-4115-4792-a690-ff2000278db2", - "name": "timelineActivities" + "id": "659660f4-0f1f-47ed-aa44-b672a4d212f3", + "name": "messageParticipants" }, "targetFieldMetadata": { "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", - "name": "target" + "id": "d5c64f59-1e63-4b50-96dc-38bba2fe401f", + "name": "workspaceMember" } }, "morphRelations": null }, { "__typename": "Field", - "id": "3e2cb808-9b0b-4251-ab27-18d907f1ac70", - "universalIdentifier": "20202020-afa3-46c3-91b0-0631ca6aa1c8", + "id": "33c895f2-e6ec-4d2f-b0c0-391e041c04a4", + "universalIdentifier": "20202020-9e4d-4b3a-8c1f-6d7e8f9a0b1c", + "type": "RELATION", + "name": "ownedOpportunities", + "label": "Owned opportunities", + "description": "Opportunities owned by the workspace member", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "33c895f2-e6ec-4d2f-b0c0-391e041c04a4", + "name": "ownedOpportunities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "5a6259f6-aa53-431a-bc25-26fa0072aa60", + "name": "owner" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "70156151-d92a-49ab-8f18-fb1ede8ccf09", + "universalIdentifier": "20202020-61dc-4a1c-99e8-38ebf8d2bbeb", + "type": "RELATION", + "name": "assignedTasks", + "label": "Assigned tasks", + "description": "Tasks assigned to the workspace member", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "919364e3-e0b3-4ea3-9e9b-07001572881c", + "nameSingular": "task", + "namePlural": "tasks" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "70156151-d92a-49ab-8f18-fb1ede8ccf09", + "name": "assignedTasks" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "5c19ca1f-2590-4fb0-8068-77808593fe8d", + "name": "assignee" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b4c76ed0-b128-479f-9e3a-18878b67f5ec", + "universalIdentifier": "20202020-e15b-47b8-94fe-8200e3c66615", + "type": "RELATION", + "name": "timelineActivities", + "label": "Events", + "description": "Events linked to the workspace member", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b4c76ed0-b128-479f-9e3a-18878b67f5ec", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "9394ad17-cd2e-4473-87e7-3208eb3ad5d3", + "name": "workspaceMember" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "aa6538f6-aad2-4bb9-9d76-814418fa54d5", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_UNIQUE_39954942ffa78c957b5dee47739", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": true, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "f2d57c66-f9e5-4eb1-8065-badcd567fc29", + "fieldMetadataId": "98237c5c-3468-43fa-a0a1-722cec408d9c", + "createdAt": "2026-02-27T01:17:26.909Z", + "updatedAt": "2026-02-27T01:17:26.909Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "264b4ff4-3c70-4261-852c-5f79f039d4c1", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_e47451872f70c8f187a6b460ac7", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "c6e9407c-acc0-43f7-8884-3721aef55a4b", + "fieldMetadataId": "e7d4d6b8-7a7e-408b-9058-91acda0646a6", + "createdAt": "2026-02-27T01:17:26.910Z", + "updatedAt": "2026-02-27T01:17:26.910Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "universalIdentifier": "20202020-ab56-4e05-92a3-e2414a499860", + "nameSingular": "favorite", + "namePlural": "favorites", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "17a2ff16-3ad0-4ffb-9cd3-5ab113846383", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Favorite", + "labelPlural": "Favorites", + "description": "A favorite", + "icon": "IconHeart", + "fieldsList": [ + { + "__typename": "Field", + "id": "17a2ff16-3ad0-4ffb-9cd3-5ab113846383", + "universalIdentifier": "20202020-f01a-4091-8a91-ddeeffaabbcc", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "6659b3dc-54fe-4498-9f06-191e88e895f0", + "universalIdentifier": "20202020-f01b-4092-9b92-eeffaabbccdd", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9ba7ca15-e8d9-44c7-b53a-c11032a53f08", + "universalIdentifier": "20202020-f01c-4093-8c93-ffaabbccddee", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e2531487-1843-4a7e-8858-deff13d25ebe", + "universalIdentifier": "20202020-f01d-4094-9d94-aabbccddeeff", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f4737f2c-1d51-43d7-9209-c33897b2ac33", + "universalIdentifier": "6440dc3d-fa50-49cc-abd3-98eeccd79288", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9b70a498-177f-4ba4-9b59-0e9a5ffe203f", + "universalIdentifier": "6c117b1a-0470-499b-8fcb-d9059eafbd43", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0c70a5f2-59f7-455f-8e26-12bd5e3ec36b", + "universalIdentifier": "20202020-dd26-42c6-8c3c-2a7598c204f6", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Favorite position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b28e16ed-2142-41d1-af3a-6ba792bcf74b", + "universalIdentifier": "cbb27ea1-5cf8-4fed-9e0a-e4152815bd6e", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d605a131-11c6-44ec-8436-1179138bd92f", + "universalIdentifier": "20202020-5a93-4fa9-acce-e73481a0bbdf", + "type": "UUID", + "name": "viewId", + "label": "ViewId", + "description": "ViewId", + "icon": "IconView", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c8186975-3e09-461f-9576-5cbc390e51f2", + "universalIdentifier": "20202020-cff5-4682-8bf9-069169e08279", + "type": "RELATION", + "name": "company", + "label": "Company", + "description": "Favorite company", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "companyId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "c8186975-3e09-461f-9576-5cbc390e51f2", + "name": "company" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "5bdca64b-0bc7-4a3f-b6d4-93969604cd85", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "fd546307-50fb-46f2-be3c-0fc7fc158054", + "universalIdentifier": "20202020-6ef9-45e4-b440-cc986f687c91", + "type": "RELATION", + "name": "dashboard", + "label": "Dashboard", + "description": "Favorite dashboard", + "icon": "IconLayoutDashboard", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "dashboardId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "5f90b5d9-b823-4278-b3db-fc540f13936a", + "nameSingular": "dashboard", + "namePlural": "dashboards" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "fd546307-50fb-46f2-be3c-0fc7fc158054", + "name": "dashboard" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "a65b5018-0202-4abd-8b4b-93f48cdf9c23", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0c3f6382-d3dd-4d20-a5ef-24e4f81b15ab", + "universalIdentifier": "20202020-ce63-49cb-9676-fdc0c45892cd", + "type": "RELATION", + "name": "forWorkspaceMember", + "label": "Workspace Member", + "description": "Favorite workspace member", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "forWorkspaceMemberId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "0c3f6382-d3dd-4d20-a5ef-24e4f81b15ab", + "name": "forWorkspaceMember" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "693888c1-27fa-4d6c-89ca-215bc598c85b", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c60b72a9-d86d-4e45-935c-6a99103ac289", + "universalIdentifier": "20202020-c428-4f40-b6f3-86091511c41c", + "type": "RELATION", + "name": "person", + "label": "Person", + "description": "Favorite person", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "personId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "c60b72a9-d86d-4e45-935c-6a99103ac289", + "name": "person" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "f84728f2-dffc-4e74-ac53-b7ebe5e787be", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "dee9b3ac-33e2-45e0-ad39-2c2e01bc2c70", + "universalIdentifier": "20202020-dabc-48e1-8318-2781a2b32aa2", + "type": "RELATION", + "name": "opportunity", + "label": "Opportunity", + "description": "Favorite opportunity", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "opportunityId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "dee9b3ac-33e2-45e0-ad39-2c2e01bc2c70", + "name": "opportunity" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "f509d897-5beb-4689-b088-9b536de69598", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "fa1d225d-54e0-4aa5-b62e-c294bd1232d7", + "universalIdentifier": "20202020-b11b-4dc8-999a-6bd0a947b463", "type": "RELATION", "name": "workflow", "label": "Workflow", - "description": "WorkflowVersion workflow", + "description": "Favorite workflow", "icon": "IconSettingsAutomation", "isCustom": false, "isActive": true, @@ -523,8 +3562,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -534,84 +3573,581 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" }, "targetObjectMetadata": { "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", "nameSingular": "workflow", "namePlural": "workflows" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "3e2cb808-9b0b-4251-ab27-18d907f1ac70", + "id": "fa1d225d-54e0-4aa5-b62e-c294bd1232d7", "name": "workflow" }, "targetFieldMetadata": { "__typename": "Field", - "id": "7a5b8146-e866-4789-9d1c-168182c85901", - "name": "versions" + "id": "8ae44b68-4047-4435-9ece-021d85db9371", + "name": "favorites" } }, "morphRelations": null }, { "__typename": "Field", - "id": "ef9239be-aa42-4804-badd-154638418497", - "universalIdentifier": "20202020-1d08-46df-901a-85045f18099a", + "id": "6e710e3a-4956-4fb4-bfa7-b0942e974847", + "universalIdentifier": "20202020-e1b8-4caf-b55a-3ab4d4cbcd21", "type": "RELATION", - "name": "runs", - "label": "Runs", - "description": "Workflow runs linked to the version.", - "icon": "IconRun", + "name": "workflowVersion", + "label": "Workflow", + "description": "Favorite workflow version", + "icon": "IconSettingsAutomation", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "relationType": "ONE_TO_MANY" + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "workflowVersionId" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", - "type": "ONE_TO_MANY", + "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" }, "targetObjectMetadata": { "__typename": "Object", - "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", + "id": "54bf871f-e183-471f-a66c-309507af74da", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "6e710e3a-4956-4fb4-bfa7-b0942e974847", + "name": "workflowVersion" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "dce31db6-aca2-407a-acf5-236d717d2800", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3237b607-74e1-4a0c-ab79-a4d765adc979", + "universalIdentifier": "20202020-db5a-4fe4-9a13-9afa22b1e762", + "type": "RELATION", + "name": "workflowRun", + "label": "Workflow", + "description": "Favorite workflow run", + "icon": "IconSettingsAutomation", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "workflowRunId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "613d9797-95db-4eaa-99b2-1814b529f26b", "nameSingular": "workflowRun", "namePlural": "workflowRuns" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "ef9239be-aa42-4804-badd-154638418497", - "name": "runs" + "id": "3237b607-74e1-4a0c-ab79-a4d765adc979", + "name": "workflowRun" }, "targetFieldMetadata": { "__typename": "Field", - "id": "86e20eb8-69f9-453b-946c-919f04163304", - "name": "workflowVersion" + "id": "00961b91-1ccc-49ed-b237-95454988ed46", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "230d06af-ad50-47d7-957c-a55068535bfc", + "universalIdentifier": "20202020-1b1b-4b3b-8b1b-7f8d6a1d7d5c", + "type": "RELATION", + "name": "task", + "label": "Task", + "description": "Favorite task", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "taskId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "919364e3-e0b3-4ea3-9e9b-07001572881c", + "nameSingular": "task", + "namePlural": "tasks" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "230d06af-ad50-47d7-957c-a55068535bfc", + "name": "task" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "8e9fc8f9-931f-4ab3-a921-e3d0aadd2483", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "385f67b2-ae55-4b0c-95b8-8936b26019cb", + "universalIdentifier": "20202020-1f25-43fe-8b00-af212fdde824", + "type": "RELATION", + "name": "note", + "label": "Note", + "description": "Favorite note", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "noteId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "1691dfbb-f84a-4fe8-acd4-a7f35e7673a7", + "nameSingular": "note", + "namePlural": "notes" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "385f67b2-ae55-4b0c-95b8-8936b26019cb", + "name": "note" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "c6158691-1136-49a3-8304-af8bf92cf441", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "31e1facd-9690-4c42-9390-f470ded7f011", + "universalIdentifier": "20202020-f658-4d12-8b4d-248356aa4bd9", + "type": "RELATION", + "name": "favoriteFolder", + "label": "Favorite Folder", + "description": "The folder this favorite belongs to", + "icon": "IconFolder", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "favoriteFolderId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "c8cfc2a1-da32-4f98-b774-363ee823309f", + "nameSingular": "favoriteFolder", + "namePlural": "favoriteFolders" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "31e1facd-9690-4c42-9390-f470ded7f011", + "name": "favoriteFolder" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "59083e94-c477-4b56-b6e6-4b1b05f62c4a", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f7538c1b-4e0c-4e88-9307-7a3b293cf08c", + "universalIdentifier": "bfc5e6a4-2bc4-46b4-b8db-3e4c499e321a", + "type": "RELATION", + "name": "rocket", + "label": "Rocket", + "description": "Favorites Rocket", + "icon": "IconHeart", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "rocketId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "f7538c1b-4e0c-4e88-9307-7a3b293cf08c", + "name": "rocket" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "c9a81cb8-d1a2-4091-8637-60b79c71813a", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "1fdc12a0-c2d3-4dd5-9b1b-45a435361b78", + "universalIdentifier": "5c306a1f-61e3-49d9-9867-40dc30f7c1e6", + "type": "RELATION", + "name": "pet", + "label": "Pet", + "description": "Favorites Pet", + "icon": "IconHeart", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "petId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "1fdc12a0-c2d3-4dd5-9b1b-45a435361b78", + "name": "pet" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "90830515-2b58-4398-bdd5-cbe9408a2680", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e3e51e03-3892-404d-8013-df9d1339ec6c", + "universalIdentifier": "e0d16280-b967-4a8f-a055-b584fb11a7ce", + "type": "RELATION", + "name": "surveyResult", + "label": "SurveyResult", + "description": "Favorites Survey result", + "icon": "IconHeart", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "surveyResultId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "e3e51e03-3892-404d-8013-df9d1339ec6c", + "name": "surveyResult" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "4f610fea-70c9-4c2c-97a6-c036867042ba", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "feb9dc3e-a86a-4f2b-985b-2ce9b2c2713d", + "universalIdentifier": "342f9524-91e3-41af-9f9a-d91bb630520f", + "type": "RELATION", + "name": "employmentHistory", + "label": "EmploymentHistory", + "description": "Favorites Employment History", + "icon": "IconHeart", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "employmentHistoryId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "feb9dc3e-a86a-4f2b-985b-2ce9b2c2713d", + "name": "employmentHistory" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "d8f02374-471c-48db-a8c7-85a86a0f7c53", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b135c229-c0be-42a4-8ec7-7b1346053668", + "universalIdentifier": "c6b799dc-56e6-407f-83f4-4cdf24322fa8", + "type": "RELATION", + "name": "petCareAgreement", + "label": "PetCareAgreement", + "description": "Favorites Pet Care Agreement", + "icon": "IconHeart", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "petCareAgreementId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b135c229-c0be-42a4-8ec7-7b1346053668", + "name": "petCareAgreement" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "19aa48dc-c57f-49a7-aac1-a5cbbd41bb35", + "name": "favorites" } }, "morphRelations": null @@ -620,10 +4156,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "fa97cbb1-e33b-4192-b9d5-bc62013f11a4", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_6dbfc4d091e55b676e5f698c2c2", + "id": "2546794d-feee-4f44-8444-060f85971436", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_e6a755f59ac856c2af85d0b1857", "indexWhereClause": null, "indexType": "BTREE", "isUnique": false, @@ -631,31 +4167,220 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "a849d2b4-22a2-4f67-a7d9-fa2b3e206414", - "fieldMetadataId": "3e2cb808-9b0b-4251-ab27-18d907f1ac70", - "createdAt": "2026-02-26T11:55:16.411Z", - "updatedAt": "2026-02-26T11:55:16.411Z", + "id": "63b20ecd-be6a-4aeb-9868-a38e65a0fb30", + "fieldMetadataId": "0c3f6382-d3dd-4d20-a5ef-24e4f81b15ab", + "createdAt": "2026-02-27T01:17:26.875Z", + "updatedAt": "2026-02-27T01:17:26.875Z", "order": 0 } ] }, { "__typename": "Index", - "id": "96bf7e31-65d8-4108-9e24-89123fc8d6a2", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_51329bbcdab6618a75361670c26", + "id": "2faa30b8-c455-4281-885f-642e710368a5", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_c6a04c62f1b835de81b87c8d5cb", "indexWhereClause": null, - "indexType": "GIN", + "indexType": "BTREE", "isUnique": false, "isCustom": false, "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "715bda15-373a-4b66-b665-7df8f4beb460", - "fieldMetadataId": "186212ea-bdbe-452d-9321-7470a06372af", - "createdAt": "2026-02-26T11:55:16.412Z", - "updatedAt": "2026-02-26T11:55:16.412Z", + "id": "643b3c0c-f23a-4361-888e-dd516210bc93", + "fieldMetadataId": "c60b72a9-d86d-4e45-935c-6a99103ac289", + "createdAt": "2026-02-27T01:17:26.876Z", + "updatedAt": "2026-02-27T01:17:26.876Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "5a6ed281-3ef8-4f7d-a8c5-f9affb8ba2f1", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_f54929018ffb0a56df35a15ee1a", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "052f48b8-1a68-4d52-a48b-18de45308111", + "fieldMetadataId": "c8186975-3e09-461f-9576-5cbc390e51f2", + "createdAt": "2026-02-27T01:17:26.876Z", + "updatedAt": "2026-02-27T01:17:26.876Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "7cc62cab-1f14-4421-b8df-25850599b6f7", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_03c5b5ea0ebe0cdd54c16f01cd4", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "40835170-2292-4fb7-80c4-7c21fe9410e4", + "fieldMetadataId": "31e1facd-9690-4c42-9390-f470ded7f011", + "createdAt": "2026-02-27T01:17:26.877Z", + "updatedAt": "2026-02-27T01:17:26.877Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "3f0e07d8-a35a-406b-8745-c87985388437", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_2ef95462446ad1fad48894bd459", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "8e7d9d62-fad5-4d72-8f83-42573dfe332f", + "fieldMetadataId": "dee9b3ac-33e2-45e0-ad39-2c2e01bc2c70", + "createdAt": "2026-02-27T01:17:26.877Z", + "updatedAt": "2026-02-27T01:17:26.877Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "384f6cd1-59ec-441b-8ce5-11993cbf42b8", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_7b93282d4e9b5a9851d07829996", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "0d94f08e-b285-46ec-a01a-6374c67173aa", + "fieldMetadataId": "fa1d225d-54e0-4aa5-b62e-c294bd1232d7", + "createdAt": "2026-02-27T01:17:26.878Z", + "updatedAt": "2026-02-27T01:17:26.878Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "c02a6050-9595-4e99-b3fa-21e5957d9f68", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_352fe024686b6bcf5e7e1b65449", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "be382946-7d2b-4c4f-9d35-6a7918518b69", + "fieldMetadataId": "6e710e3a-4956-4fb4-bfa7-b0942e974847", + "createdAt": "2026-02-27T01:17:26.879Z", + "updatedAt": "2026-02-27T01:17:26.879Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "9c6d1fda-3c61-4eee-b4b3-bd12cd070273", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_17f260b2397f21011117688a00c", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "9afdf176-d36d-472f-9a14-bef6bd2d5c42", + "fieldMetadataId": "3237b607-74e1-4a0c-ab79-a4d765adc979", + "createdAt": "2026-02-27T01:17:26.879Z", + "updatedAt": "2026-02-27T01:17:26.879Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "46585517-f020-43d5-967d-7286db105acc", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_f08a4bc49e7422db941d7c1be50", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "3fd1b1ef-8fed-449b-b2d7-cfc73ab2b761", + "fieldMetadataId": "230d06af-ad50-47d7-957c-a55068535bfc", + "createdAt": "2026-02-27T01:17:26.880Z", + "updatedAt": "2026-02-27T01:17:26.880Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "3fff0d8a-bf2b-4291-bd0f-27b69c5ff659", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_36f8b958533baaeabdde3479b31", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "3662fdcd-95af-423a-a15c-29dd7fb13225", + "fieldMetadataId": "385f67b2-ae55-4b0c-95b8-8936b26019cb", + "createdAt": "2026-02-27T01:17:26.880Z", + "updatedAt": "2026-02-27T01:17:26.880Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "7467b792-5620-4896-abc8-b13d12f2cd57", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_d85e3f572ec0d3c406cc58f79af", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "c2f4a3c3-67ae-495f-8bca-5ac26a753c2b", + "fieldMetadataId": "fd546307-50fb-46f2-be3c-0fc7fc158054", + "createdAt": "2026-02-27T01:17:26.881Z", + "updatedAt": "2026-02-27T01:17:26.881Z", "order": 0 } ] @@ -667,59 +4392,33 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "universalIdentifier": "da36fc7e-09b5-4a60-a082-8466d79f5157", - "nameSingular": "rocket", - "namePlural": "rockets", - "isCustom": true, + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", + "universalIdentifier": "20202020-62be-406c-b9ca-8caa50d51392", + "nameSingular": "workflow", + "namePlural": "workflows", + "isCustom": false, "isRemote": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", - "labelIdentifierFieldMetadataId": "ec624c4b-e37e-4a64-bbcf-0c34ae348aee", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "f301e223-384e-4a56-b80e-8b84f733ca3b", "imageIdentifierFieldMetadataId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "shortcut": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": "W", "isLabelSyncedWithName": false, - "isSearchable": true, + "isSearchable": false, "duplicateCriteria": null, - "labelSingular": "Rocket", - "labelPlural": "Rockets", - "description": "A rocket", - "icon": "IconRocket", + "labelSingular": "Workflow", + "labelPlural": "Workflows", + "description": "A workflow", + "icon": "IconSettingsAutomation", "fieldsList": [ { "__typename": "Field", - "id": "ec624c4b-e37e-4a64-bbcf-0c34ae348aee", - "universalIdentifier": "604c6d3d-a6df-459e-9839-3df67b789662", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "Name", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "aaa1cf80-80b7-47d6-a1d0-75dbb9e02cd4", - "universalIdentifier": "e9a3cf89-6197-48c9-aaf5-3ec39acd97ae", + "id": "3d8e38e7-d817-409e-a0f5-dc48743b7c0e", + "universalIdentifier": "20202020-f02a-4181-8a81-efabcdefabcd", "type": "UUID", "name": "id", "label": "Id", @@ -730,22 +4429,22 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isSystem": true, "isUIReadOnly": true, "isNullable": false, - "isUnique": true, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "5de1bdf9-0ff7-4f2c-9095-224aec5a86cc", - "universalIdentifier": "0056c24d-a588-4e54-9706-d32deadd2044", + "id": "29f0ef10-6cd9-484a-aa65-85611c663a5f", + "universalIdentifier": "20202020-f02b-4182-9b82-fabcdefabcde", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -757,131 +4456,23 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7161296a-1b2f-49ec-adb4-f1f0c721e2c6", - "universalIdentifier": "a1429bb9-1a98-490d-945f-b0596e8ff94b", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "97905b9b-7e3b-49be-baf5-d9bb50de1917", - "universalIdentifier": "d891ced5-7cab-4b90-afff-eab74bb99fb0", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Deletion date", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "cc551fa8-7936-4857-8e34-99bc81ff1acc", - "universalIdentifier": "69142fef-651a-4e59-bda9-536a4d7f7b3f", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "87b3b76b-ff7d-43eb-b524-c784a393dba4", - "universalIdentifier": "d664559b-b541-45f3-ae50-c03fe524bc11", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Search vector", - "icon": "IconSearch", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", - "defaultValue": null, - "options": null, "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" + "displayFormat": "RELATIVE" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "ef04ffe6-da83-42c6-a742-00ff0d332519", - "universalIdentifier": "d08574fd-020f-41ab-bd77-c0978e0478da", + "id": "a2b6e0eb-1319-488a-8a34-0a49d3a344cc", + "universalIdentifier": "20202020-f02c-4183-8c83-abcdefabcdef", "type": "DATE_TIME", "name": "updatedAt", "label": "Last update", @@ -893,21 +4484,207 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, - "settings": null, + "settings": { + "displayFormat": "RELATIVE" + }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "0ace36d9-76a8-415a-9b83-23ecf6588234", - "universalIdentifier": "cf01336f-24bc-480f-a40c-215b21fa6cdf", + "id": "0236e922-7d3d-4231-b44e-31dce5e99174", + "universalIdentifier": "20202020-f02d-4184-9d84-bcdefabcdefa", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f301e223-384e-4a56-b80e-8b84f733ca3b", + "universalIdentifier": "20202020-b3d3-478f-acc0-5d901e725b20", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "The workflow name", + "icon": "IconSettingsAutomation", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f209ff52-b455-4674-b289-a5f9125fe199", + "universalIdentifier": "20202020-326a-4fba-8639-3456c0a169e8", + "type": "TEXT", + "name": "lastPublishedVersionId", + "label": "Last published Version Id", + "description": "The workflow last published version id", + "icon": "IconVersions", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8e2f3d90-866d-4b5f-b9b3-f96822010533", + "universalIdentifier": "20202020-357c-4432-8c50-8c31b4a552d9", + "type": "MULTI_SELECT", + "name": "statuses", + "label": "Statuses", + "description": "The current statuses of the workflow versions", + "icon": "IconStatusChange", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": [ + { + "id": "20202020-e9d8-41df-8262-31bb04948366", + "color": "yellow", + "label": "Draft", + "value": "DRAFT", + "position": 0 + }, + { + "id": "20202020-e47e-4d57-913a-7b29e1f140ef", + "color": "green", + "label": "Active", + "value": "ACTIVE", + "position": 1 + }, + { + "id": "20202020-bdfa-4d35-bf5c-e410cccfc765", + "color": "gray", + "label": "Deactivated", + "value": "DEACTIVATED", + "position": 2 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "aa65946d-5bfa-404f-93df-74933f86d9b5", + "universalIdentifier": "20202020-39b0-4d8c-8c5f-33c2326deb5f", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Workflow record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3020144e-007d-40bf-b06f-e1357078d3f9", + "universalIdentifier": "20202020-6007-401a-8aa5-e6f48581a6f3", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "391fdfee-fed7-4552-a4a3-01028b4070ae", + "universalIdentifier": "3559831e-caf2-4eb5-9db1-b47bf968c774", "type": "ACTOR", "name": "updatedBy", "label": "Updated by", @@ -919,143 +4696,67 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { - "name": "''", - "source": "'MANUAL'" + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null }, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "900bb386-6dc1-47c1-b90b-bba88e3b3ae9", - "universalIdentifier": "7ce147b9-cc5b-4285-a507-8bd7e6ad22d7", - "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "Rockets tied to the Timeline Activity", - "icon": "IconBuildingSkyscraper", - "isCustom": true, + "id": "a618764e-3d20-4520-affa-4786d12eee88", + "universalIdentifier": "20202020-535d-4ffa-b7f3-4fa0d5da1b7a", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, "isActive": true, - "isSystem": false, + "isSystem": true, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "relationType": "ONE_TO_MANY" + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", + "generatedType": "STORED" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "900bb386-6dc1-47c1-b90b-bba88e3b3ae9", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", - "name": "target" - } - }, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "cc6bb53d-87a4-43cd-b6dd-465ca1465010", - "universalIdentifier": "96ed3a2e-4529-406f-a99e-3400c9e0b5d8", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Rockets tied to the Favorite", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "cc6bb53d-87a4-43cd-b6dd-465ca1465010", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "58e2d91e-e2a0-4d3a-8068-b874b836e10c", - "name": "rocket" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f03d771a-5521-411d-8233-6d87dc508f62", - "universalIdentifier": "0e957b61-f169-4425-bef6-3351a639594e", + "id": "4f258bc3-7033-4c42-86d4-0af28f7521f6", + "universalIdentifier": "20202020-4a8c-4e2d-9b1c-7e5f3a2b4c6d", "type": "RELATION", "name": "attachments", "label": "Attachments", - "description": "Rockets tied to the Attachment", - "icon": "IconBuildingSkyscraper", - "isCustom": true, + "description": "Attachments linked to the workflow", + "icon": "IconFileUpload", + "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, - "isNullable": true, + "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -1063,30 +4764,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", + "nameSingular": "workflow", + "namePlural": "workflows" }, "targetObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "f03d771a-5521-411d-8233-6d87dc508f62", + "id": "4f258bc3-7033-4c42-86d4-0af28f7521f6", "name": "attachments" }, "targetFieldMetadata": { "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", "name": "target" } }, @@ -1094,21 +4795,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "1e75aaab-5f8d-4480-a2eb-96fb78d90b89", - "universalIdentifier": "0d3f6459-fa91-44c1-8c04-648dbde8f593", + "id": "8ae44b68-4047-4435-9ece-021d85db9371", + "universalIdentifier": "20202020-c554-4c41-be7a-cf9cd4b0d512", "type": "RELATION", - "name": "noteTargets", - "label": "Note Targets", - "description": "Rockets tied to the Note Target", - "icon": "IconBuildingSkyscraper", - "isCustom": true, + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the workflow", + "icon": "IconHeart", + "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, - "isNullable": true, + "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -1116,30 +4817,83 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", + "nameSingular": "workflow", + "namePlural": "workflows" }, "targetObjectMetadata": { "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "1e75aaab-5f8d-4480-a2eb-96fb78d90b89", - "name": "noteTargets" + "id": "8ae44b68-4047-4435-9ece-021d85db9371", + "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", + "id": "fa1d225d-54e0-4aa5-b62e-c294bd1232d7", + "name": "workflow" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "fe15112f-1287-4fc7-bbca-44ead6b54951", + "universalIdentifier": "20202020-906e-486a-a798-131a5f081faf", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Timeline activities linked to the workflow", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", + "nameSingular": "workflow", + "namePlural": "workflows" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "fe15112f-1287-4fc7-bbca-44ead6b54951", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", "name": "target" } }, @@ -1147,21 +4901,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "0a1d53ce-6eb7-4a4a-b16b-241cf5409750", - "universalIdentifier": "d0722c56-d1c8-4151-b558-b5dedf701d3e", + "id": "0a87b634-8df5-471e-a593-9722294e5367", + "universalIdentifier": "20202020-9432-416e-8f3c-27ee3153d099", "type": "RELATION", - "name": "taskTargets", - "label": "Task Targets", - "description": "Rockets tied to the Task Target", - "icon": "IconBuildingSkyscraper", - "isCustom": true, + "name": "versions", + "label": "Versions", + "description": "Workflow versions linked to the workflow.", + "icon": "IconVersions", + "isCustom": false, "isActive": true, "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, + "isUIReadOnly": true, + "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -1169,52 +4923,52 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", + "nameSingular": "workflow", + "namePlural": "workflows" }, "targetObjectMetadata": { "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" + "id": "54bf871f-e183-471f-a66c-309507af74da", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "0a1d53ce-6eb7-4a4a-b16b-241cf5409750", - "name": "taskTargets" + "id": "0a87b634-8df5-471e-a593-9722294e5367", + "name": "versions" }, "targetFieldMetadata": { "__typename": "Field", - "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", - "name": "target" + "id": "b53ff967-d031-4948-8511-244de53d3e1c", + "name": "workflow" } }, "morphRelations": null }, { "__typename": "Field", - "id": "95e31525-de5a-4f2a-95df-0d9889f5ee76", - "universalIdentifier": "f7eeee9a-7763-439d-9f52-52695650e720", + "id": "19b372d2-98a4-4bb1-9ba7-6d326162ec1a", + "universalIdentifier": "20202020-759b-4340-b58b-e73595c4df4f", "type": "RELATION", - "name": "ownedPets", - "label": "Owned Pets", - "description": "Rockets Pet", - "icon": "IconRelationOneToMany", - "isCustom": true, + "name": "runs", + "label": "Runs", + "description": "Workflow runs linked to the workflow.", + "icon": "IconRun", + "isCustom": false, "isActive": true, "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, + "isUIReadOnly": true, + "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:17.932Z", - "updatedAt": "2026-02-26T11:55:17.932Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -1222,86 +4976,84 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", + "nameSingular": "workflow", + "namePlural": "workflows" }, "targetObjectMetadata": { "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" + "id": "613d9797-95db-4eaa-99b2-1814b529f26b", + "nameSingular": "workflowRun", + "namePlural": "workflowRuns" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "95e31525-de5a-4f2a-95df-0d9889f5ee76", - "name": "ownedPets" + "id": "19b372d2-98a4-4bb1-9ba7-6d326162ec1a", + "name": "runs" }, "targetFieldMetadata": { "__typename": "Field", - "id": "a7409fe9-80ec-48cd-8f64-90dc2c36ad6a", - "name": "polymorphicOwner" + "id": "1554dabd-cb9c-469a-9f0c-9c04d8d026bf", + "name": "workflow" } }, "morphRelations": null }, { "__typename": "Field", - "id": "470a37f2-8445-4ac3-803a-fd2c79314f25", - "universalIdentifier": "624c227d-d9b6-401a-8e03-85487c539115", + "id": "59483686-03bc-4b69-94ff-59eb4033ecb4", + "universalIdentifier": "20202020-3319-4234-a34c-117ecad2b8a9", "type": "RELATION", - "name": "helpedPets", - "label": "Helped Pets", - "description": "Rockets Pet", - "icon": "IconRelationOneToMany", - "isCustom": true, + "name": "automatedTriggers", + "label": "Automated Triggers", + "description": "Workflow automated triggers linked to the workflow.", + "icon": "IconSettingsAutomation", + "isCustom": false, "isActive": true, "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, + "isUIReadOnly": true, + "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:17.932Z", - "updatedAt": "2026-02-26T11:55:17.932Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "helpedPetsId" + "relationType": "ONE_TO_MANY" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", - "type": "MANY_TO_ONE", + "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", + "nameSingular": "workflow", + "namePlural": "workflows" }, "targetObjectMetadata": { "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" + "id": "545a3d39-02d9-4057-9ad6-61c294b401c4", + "nameSingular": "workflowAutomatedTrigger", + "namePlural": "workflowAutomatedTriggers" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "470a37f2-8445-4ac3-803a-fd2c79314f25", - "name": "helpedPets" + "id": "59483686-03bc-4b69-94ff-59eb4033ecb4", + "name": "automatedTriggers" }, "targetFieldMetadata": { "__typename": "Field", - "id": "4b45c5f3-4d27-4c1d-8176-0ab4c6f3982a", - "name": "polymorphicHelper" + "id": "6b553e0c-e43d-48e9-9809-de6a31296c0f", + "name": "workflow" } }, "morphRelations": null @@ -1310,10 +5062,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "9c0ef0f9-499c-4e86-a387-a3481bc621f6", - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", - "name": "IDX_530792e4278e7696c4e3e3e55f8", + "id": "32d75c22-591e-4ec6-b7f4-aaff9ddec5e2", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_d09fc4b1711543f42c127270f1e", "indexWhereClause": null, "indexType": "GIN", "isUnique": false, @@ -1321,31 +5073,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "64dba84f-d83c-4382-9aba-70f79299262f", - "fieldMetadataId": "87b3b76b-ff7d-43eb-b524-c784a393dba4", - "createdAt": "2026-02-26T11:55:16.699Z", - "updatedAt": "2026-02-26T11:55:16.699Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "c60942c2-6bc1-4a29-842e-ef3d77bb022b", - "createdAt": "2026-02-26T11:55:17.932Z", - "updatedAt": "2026-02-26T11:55:17.932Z", - "name": "IDX_5881fea129dd0594d8d0661c787", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "112257ea-857e-4a21-918b-b87359eb0405", - "fieldMetadataId": "470a37f2-8445-4ac3-803a-fd2c79314f25", - "createdAt": "2026-02-26T11:55:17.959Z", - "updatedAt": "2026-02-26T11:55:17.959Z", + "id": "98e2d7c3-fa60-49ab-9bac-6932b3816cd7", + "fieldMetadataId": "a618764e-3d20-4520-affa-4786d12eee88", + "createdAt": "2026-02-27T01:17:26.905Z", + "updatedAt": "2026-02-27T01:17:26.905Z", "order": 0 } ] @@ -1357,89 +5088,34 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "universalIdentifier": "20202020-6736-4337-b5c4-8b39fae325a5", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities", + "id": "c8cfc2a1-da32-4f98-b774-363ee823309f", + "universalIdentifier": "20202020-7cf8-401f-8211-a9587d27fd2d", + "nameSingular": "favoriteFolder", + "namePlural": "favoriteFolders", "isCustom": false, "isRemote": false, "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "91ae6563-55b5-4fd5-8a9a-da4f8975213b", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "4007b50d-6458-4078-9e0d-778d2e8e76b6", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, "duplicateCriteria": null, - "labelSingular": "Timeline Activity", - "labelPlural": "Timeline Activities", - "description": "Aggregated / filtered event to be displayed on the timeline", - "icon": "IconTimelineEvent", + "labelSingular": "Favorite Folder", + "labelPlural": "Favorite Folders", + "description": "A favorite folder", + "icon": "IconFolder", + "indexMetadataList": [], "fieldsList": [ { "__typename": "Field", - "id": "51400014-38d1-4e7f-95ec-0135dd958a7f", - "universalIdentifier": "81dc29fc-c872-4efd-bf31-d07872cd260e", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9c07e306-833e-47d2-b81b-fa70c719badd", - "universalIdentifier": "e245d799-3e4b-4c69-ab9a-6b7c91d71195", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Timeline activity record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a827b58d-63f2-4135-b7b1-315422392a88", - "universalIdentifier": "20202020-a01a-4081-8a81-9aabbccddeff", + "id": "4007b50d-6458-4078-9e0d-778d2e8e76b6", + "universalIdentifier": "20202020-f02a-40a1-8aa1-1f2e3d4c5b6a", "type": "UUID", "name": "id", "label": "Id", @@ -1451,21 +5127,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "669b9819-0ca0-478a-a36e-150ff77d7a45", - "universalIdentifier": "20202020-a01b-4082-9b82-aabbccddeeff", + "id": "66729565-9366-4054-9d74-74490c564275", + "universalIdentifier": "20202020-f02b-40a2-9ba2-2f3e4d5c6b7a", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -1477,8 +5153,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -1486,14 +5162,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "39f454d6-d563-4710-8273-5f293b7c8bd1", - "universalIdentifier": "20202020-a01c-4083-8c83-bbccddeeffaa", + "id": "ac6374c7-b988-4559-acea-ace2765d4c88", + "universalIdentifier": "20202020-f02c-40a3-8ca3-3f4e5d6c7b8a", "type": "DATE_TIME", "name": "updatedAt", "label": "Last update", @@ -1505,8 +5181,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -1514,14 +5190,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "4e643b75-8662-441d-a0b1-fcc92827856e", - "universalIdentifier": "20202020-a01d-4084-9d84-ccddeeffaabb", + "id": "38a11cac-cf66-4a66-9894-cfbfc8364b25", + "universalIdentifier": "20202020-f02d-40a4-9da4-4f5e6d7c8b9a", "type": "DATE_TIME", "name": "deletedAt", "label": "Deleted at", @@ -1533,8 +5209,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -1542,14 +5218,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "04169dab-7e08-42b4-8834-45d980cc875b", - "universalIdentifier": "8f66191f-927d-4a6d-a15f-d0ff8cfc5a6d", + "id": "c47467c3-91ac-4853-8310-0c8f1c20a05b", + "universalIdentifier": "1ec58922-7789-4832-a583-ec97f766f433", "type": "ACTOR", "name": "createdBy", "label": "Created by", @@ -1561,8 +5237,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -1572,170 +5248,70 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "c9e6c576-61f5-4829-8d99-a5c3f3412960", - "universalIdentifier": "20202020-9526-4993-b339-c4318c4d39f0", - "type": "DATE_TIME", - "name": "happensAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", + "id": "c1cf0f65-451c-4573-809e-ee55c0e55de9", + "universalIdentifier": "6a53edc6-0ef2-4c35-9065-f91c4ddf7f01", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", "isCustom": false, "isActive": true, - "isSystem": false, + "isSystem": true, "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "91ae6563-55b5-4fd5-8a9a-da4f8975213b", - "universalIdentifier": "20202020-7207-46e8-9dab-849505ae8497", - "type": "TEXT", - "name": "name", - "label": "Event name", - "description": "Event name", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7d5944a8-1d5a-471c-bba7-e66b9f5f3f02", - "universalIdentifier": "20202020-f142-4b04-b91b-6a2b4af3bf11", - "type": "RAW_JSON", - "name": "properties", - "label": "Event details", - "description": "Json value for event details", - "icon": "IconListDetails", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8c13c383-3167-4133-b60a-2dba19e00dcf", - "universalIdentifier": "20202020-cfdb-4bef-bbce-a29f41230934", - "type": "TEXT", - "name": "linkedRecordCachedName", - "label": "Linked Record cached name", - "description": "Cached record name", - "icon": "IconAbc", + "id": "c07a694e-171c-4c3b-808c-489ab73b5793", + "universalIdentifier": "20202020-5278-4bde-8909-2cec74d43744", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Favorite folder position", + "icon": "IconHierarchy2", "isCustom": false, "isActive": true, "isSystem": true, "isUIReadOnly": true, - "isNullable": true, + "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e8aa2cd1-7291-4442-996f-11eb2994f06d", - "universalIdentifier": "20202020-2e0e-48c0-b445-ee6c1e61687d", - "type": "UUID", - "name": "linkedRecordId", - "label": "Linked Record id", - "description": "Linked Record id", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c5f10fd6-5b97-4911-81bd-bdf0e3ce5aed", - "universalIdentifier": "20202020-c595-449d-9f89-562758c9ee69", - "type": "UUID", - "name": "linkedObjectMetadataId", - "label": "Linked Object Metadata Id", - "description": "Linked Object Metadata Id", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3c9d0520-2541-4718-9bd9-951cc44749ce", - "universalIdentifier": "bc1d1b67-903a-4354-8272-4a6efc4cbe63", + "id": "3f34cccb-4b52-4ff5-89d1-3b2dabc5c778", + "universalIdentifier": "c5bb12e1-0cc3-428f-89f0-4c8747239ac3", "type": "TS_VECTOR", "name": "searchVector", "label": "Search vector", @@ -1747,8 +5323,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -1757,671 +5333,88 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "bda47d4a-59e9-459f-a20e-a61c39836fa4", - "universalIdentifier": "20202020-af23-4479-9a30-868edc474b36", - "type": "RELATION", - "name": "workspaceMember", - "label": "Workspace Member", - "description": "Event workspace member", - "icon": "IconCircleUser", + "id": "f3c4c0b7-5f58-44f3-82da-ebdefc684645", + "universalIdentifier": "20202020-82a3-4537-8ff0-dbce7eec35d6", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "Name of the favorite folder", + "icon": "IconText", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workspaceMemberId" - }, + "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "bda47d4a-59e9-459f-a20e-a61c39836fa4", - "name": "workspaceMember" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4d18289b-8994-4556-9e35-3789a405dbd6", - "name": "timelineActivities" - } - }, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", - "universalIdentifier": "cc16b48c-43ae-48dc-900c-c4a1a7e42ca9", - "type": "MORPH_RELATION", - "name": "target", - "label": "Pet", - "description": "TimelineActivities Pet", - "icon": "IconTimelineEvent", - "isCustom": true, + "id": "59083e94-c477-4b56-b6e6-4b1b05f62c4a", + "universalIdentifier": "20202020-b5e3-4b42-8af2-03cd4fd2e4d2", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Favorites in this folder", + "icon": "IconHeart", + "isCustom": false, "isActive": true, "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, + "isUIReadOnly": true, + "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:16.905Z", - "updatedAt": "2026-02-26T11:55:16.905Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "targetPetId" + "relationType": "ONE_TO_MANY" }, "isLabelSyncedWithName": false, - "morphId": "20202020-9a2b-4c3d-a4e5-f6a7b8c9d0e1", - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": [ - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "30229b21-6b23-4a0a-aa81-f69f64e32d95", - "name": "timelineActivities" - } + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "c8cfc2a1-da32-4f98-b774-363ee823309f", + "nameSingular": "favoriteFolder", + "namePlural": "favoriteFolders" }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "43641e22-78a0-443c-b9f6-3a2ed68da927", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "76fc1b66-6b4c-42dc-a9f1-c569527f8c61", - "name": "timelineActivities" - } + "targetObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "11054c51-6e7a-44a1-9d40-03ce04f21fbe", - "nameSingular": "dashboard", - "namePlural": "dashboards" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e39ad174-a33b-4c07-9425-a3efa1fc4fc2", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "066dd742-455c-49ae-a944-9da010635203", - "name": "timelineActivities" - } + "sourceFieldMetadata": { + "__typename": "Field", + "id": "59083e94-c477-4b56-b6e6-4b1b05f62c4a", + "name": "favorites" }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", - "nameSingular": "note", - "namePlural": "notes" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b8164c07-24da-4048-94dd-98c095e618b3", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a780900c-a955-4f4f-8fdc-4d43b161199e", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c1954c0c-207f-402a-8812-6e9a078ced10", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5625119a-15c2-48f5-b5fa-f8548bce2d8f", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ce8aacfa-6345-4f6d-8521-c327180e34bf", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "41ed4d07-34ee-4334-8003-51e906e00249", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "8866407d-553e-4360-82c2-ddfc160b81d5", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "950bbe53-564c-4c04-af78-80803e23bae4", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "717a79ba-de8c-4fa0-970a-50d7315d0615", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "712f749d-999a-4a46-b904-c4d83a84f4ab", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a2503a7a-9dd8-4797-9483-038e82a7aa29", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "2d284da2-4115-4792-a690-ff2000278db2", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "abae6aae-193e-44bb-8e98-10944dd97bd9", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "c62c418e-9273-4d97-8e78-372de9e3b33c", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6b6ac824-5dd7-4171-a561-9b3f7ed520d0", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "900bb386-6dc1-47c1-b90b-bba88e3b3ae9", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b2797c61-68f8-49d5-9445-d103a9d5f49b", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "f796a27f-d889-4abe-8765-cc8ee5923597", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b713e21b-6340-4069-bb44-7d9874ac8a38", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a65dba61-a5b3-4123-8872-03e01ae85d36", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "af11e970-dfc8-4c5a-bbac-c6fe39ed2009", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1a9c65bb-c1d8-4f7a-b9fe-75e2e214ff72", - "name": "timelineActivities" - } + "targetFieldMetadata": { + "__typename": "Field", + "id": "31e1facd-9690-4c42-9390-f470ded7f011", + "name": "favoriteFolder" } - ] - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "751f389b-f877-4f8e-a279-98ce4f540663", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_dc68847d0ff0b17baef8fb632c2", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "97a1b58a-4af9-44ef-be4f-708e4c15a890", - "fieldMetadataId": "bda47d4a-59e9-459f-a20e-a61c39836fa4", - "createdAt": "2026-02-26T11:55:16.401Z", - "updatedAt": "2026-02-26T11:55:16.401Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "69ba9e71-4658-4070-b423-0803e745772d", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_e49dd7da4ed5c919babcd31c93b", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "4cb9bd9b-9c9d-4b80-84eb-9479c5aa42d2", - "fieldMetadataId": "ce8aacfa-6345-4f6d-8521-c327180e34bf", - "createdAt": "2026-02-26T11:55:16.401Z", - "updatedAt": "2026-02-26T11:55:16.401Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "ddb32cf2-a49f-4f27-ad20-e6443326e36f", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_9b267fc4a89dd1aaec4c5340f05", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "c235713f-d4f9-4e49-b2aa-92feeb0da59c", - "fieldMetadataId": "43641e22-78a0-443c-b9f6-3a2ed68da927", - "createdAt": "2026-02-26T11:55:16.402Z", - "updatedAt": "2026-02-26T11:55:16.402Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "a47befb0-79fe-47a9-bab7-450ae4d86039", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_62d09af534224aa478109b2d585", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "430d3f53-de92-4d0f-a53d-e4c7b65483b8", - "fieldMetadataId": "c1954c0c-207f-402a-8812-6e9a078ced10", - "createdAt": "2026-02-26T11:55:16.403Z", - "updatedAt": "2026-02-26T11:55:16.403Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "8f0aa89b-3ba3-4330-b837-712d38defb49", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_26a021921ba73b428be8f244ded", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "32558945-cb24-4ffa-9217-97a128800527", - "fieldMetadataId": "b8164c07-24da-4048-94dd-98c095e618b3", - "createdAt": "2026-02-26T11:55:16.404Z", - "updatedAt": "2026-02-26T11:55:16.404Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "323fdcec-a73f-489c-baaa-0b3367e1955a", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_1ff229b8237e8368a92c08d11f0", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "53f00188-426c-4ccb-a9ba-570f398d331d", - "fieldMetadataId": "8866407d-553e-4360-82c2-ddfc160b81d5", - "createdAt": "2026-02-26T11:55:16.405Z", - "updatedAt": "2026-02-26T11:55:16.405Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "ca631e18-a952-4081-b700-2c35c7846780", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_9a2065c2b56ffe8b74d1a12705f", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "21d2687d-16c4-4cf6-9b3a-038bf88c57f2", - "fieldMetadataId": "717a79ba-de8c-4fa0-970a-50d7315d0615", - "createdAt": "2026-02-26T11:55:16.405Z", - "updatedAt": "2026-02-26T11:55:16.405Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "473965ff-24ed-4d76-b128-4db002c897fb", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_953cb9c73db904f98697f4867b2", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "b199ab70-f031-45c1-a467-93d3d1192b9a", - "fieldMetadataId": "a2503a7a-9dd8-4797-9483-038e82a7aa29", - "createdAt": "2026-02-26T11:55:16.406Z", - "updatedAt": "2026-02-26T11:55:16.406Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "e3231fd4-1ed3-4d7d-b75e-278f497bc458", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_58b130a455b1451066c84dc63e2", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "94f3bb65-460a-4830-b86a-5331c00899db", - "fieldMetadataId": "abae6aae-193e-44bb-8e98-10944dd97bd9", - "createdAt": "2026-02-26T11:55:16.407Z", - "updatedAt": "2026-02-26T11:55:16.407Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "c2c57a46-b0a5-4ba4-8a7e-debb439dec5e", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_6b2a27852dd0e0846577662a33a", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "150b03ec-035c-46fb-ae57-620b1a981bc7", - "fieldMetadataId": "e39ad174-a33b-4c07-9425-a3efa1fc4fc2", - "createdAt": "2026-02-26T11:55:16.407Z", - "updatedAt": "2026-02-26T11:55:16.407Z", - "order": 0 - } - ] + }, + "morphRelations": null } ] } @@ -2430,33 +5423,33 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "de02d560-0a2d-44b3-b8ba-4b471f9551bb", - "universalIdentifier": "20202020-e8f2-40e1-a39c-c0e0039c5034", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "universalIdentifier": "20202020-9549-49dd-b2b2-883999db8938", + "nameSingular": "opportunity", + "namePlural": "opportunities", "isCustom": false, "isRemote": false, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "7d61e07b-36eb-485d-8d1c-d1e5e2802817", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "73870ebe-aaa9-4a39-8487-5de19361629b", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": "O", "isLabelSyncedWithName": false, - "isSearchable": false, + "isSearchable": true, "duplicateCriteria": null, - "labelSingular": "Calendar Channel", - "labelPlural": "Calendar Channels", - "description": "Calendar Channels", - "icon": "IconCalendar", + "labelSingular": "Opportunity", + "labelPlural": "Opportunities", + "description": "An opportunity", + "icon": "IconTargetArrow", "fieldsList": [ { "__typename": "Field", - "id": "d6dc57bc-4069-47ea-8ac6-3cb829e46434", - "universalIdentifier": "20202020-c02a-4031-8a31-1a2f3b4c5d6e", + "id": "c1d7bb95-4b7e-4432-9d5b-e755c75062ed", + "universalIdentifier": "20202020-d01a-4131-8a31-f123456789ab", "type": "UUID", "name": "id", "label": "Id", @@ -2468,21 +5461,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e7e97838-6aa5-476b-af4b-b9641e4b3e06", - "universalIdentifier": "20202020-c02b-4032-9b32-2b3f4c5d6e7f", + "id": "1d5adc56-92b6-4e62-950d-570c4754a7b2", + "universalIdentifier": "20202020-d01b-4132-9b32-123456789abc", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -2494,8 +5487,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -2503,14 +5496,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "85bca524-80cb-472b-a3ee-9acd2dc2f136", - "universalIdentifier": "20202020-c02c-4033-8c33-3c4f5d6e7f8a", + "id": "bfeb8a4c-85c7-4ce2-a741-8567a0b6e7ec", + "universalIdentifier": "20202020-d01c-4133-8c33-23456789abcd", "type": "DATE_TIME", "name": "updatedAt", "label": "Last update", @@ -2522,8 +5515,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -2531,14 +5524,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "56f666cf-d453-452a-93d4-8ad807e261b4", - "universalIdentifier": "20202020-c02d-4034-9d34-4d5f6e7f8a9b", + "id": "70db13e1-71ea-41cf-858e-82dfdab18fbb", + "universalIdentifier": "20202020-d01d-4134-9d34-3456789abcde", "type": "DATE_TIME", "name": "deletedAt", "label": "Deleted at", @@ -2550,8 +5543,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -2559,14 +5552,180 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "75f79509-3f8f-46eb-9863-077409fa83c6", - "universalIdentifier": "664db1a0-76f4-4429-8452-f8e250ab7545", + "id": "73870ebe-aaa9-4a39-8487-5de19361629b", + "universalIdentifier": "20202020-8609-4f65-a2d9-44009eb422b5", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "The opportunity name", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "6b13a3ed-cd1c-477e-ba31-6db7b5062836", + "universalIdentifier": "20202020-583e-4642-8533-db761d5fa82f", + "type": "CURRENCY", + "name": "amount", + "label": "Amount", + "description": "Opportunity amount", + "icon": "IconCurrencyDollar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "1460b2b7-d1f9-423f-92d3-3d99106b886c", + "universalIdentifier": "20202020-527e-44d6-b1ac-c4158d307b97", + "type": "DATE_TIME", + "name": "closeDate", + "label": "Close date", + "description": "Opportunity close date", + "icon": "IconCalendarEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "35115cd4-1211-43d1-9162-21ae53d63d03", + "universalIdentifier": "20202020-6f76-477d-8551-28cd65b2b4b9", + "type": "SELECT", + "name": "stage", + "label": "Stage", + "description": "Opportunity stage", + "icon": "IconProgressCheck", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'NEW'", + "options": [ + { + "id": "20202020-8e01-4afd-9c39-d2063097587a", + "color": "red", + "label": "New", + "value": "NEW", + "position": 0 + }, + { + "id": "20202020-e685-4671-ac32-26d304dacb6e", + "color": "purple", + "label": "Screening", + "value": "SCREENING", + "position": 1 + }, + { + "id": "20202020-dde9-4acc-b5ca-f6531a8ecb4a", + "color": "sky", + "label": "Meeting", + "value": "MEETING", + "position": 2 + }, + { + "id": "20202020-696e-4f6b-91bc-f413e9b2f654", + "color": "turquoise", + "label": "Proposal", + "value": "PROPOSAL", + "position": 3 + }, + { + "id": "20202020-0bb5-4a6f-a8b2-774bbad21104", + "color": "yellow", + "label": "Customer", + "value": "CUSTOMER", + "position": 4 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a0ad02ab-67b0-4c5e-bd8c-3c61ff0f3563", + "universalIdentifier": "20202020-806d-493a-bbc6-6313e62958e2", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Opportunity record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "84911608-039f-4baa-8aeb-97b5d035298c", + "universalIdentifier": "20202020-a63e-4a62-8e63-42a51828f831", "type": "ACTOR", "name": "createdBy", "label": "Created by", @@ -2578,8 +5737,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -2589,14 +5748,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "9a4f704b-903f-4b0c-9584-7ffc4bc5c5dc", - "universalIdentifier": "6a397eab-3700-4b08-9eb9-d16b61876193", + "id": "ce370104-f382-45f3-87a3-df579d9035a5", + "universalIdentifier": "3c8a6095-3f64-4e81-a59e-66c2bd181e11", "type": "ACTOR", "name": "updatedBy", "label": "Updated by", @@ -2608,8 +5767,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -2619,40 +5778,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "794d591e-5eaf-47da-9f0d-76fb917b84ec", - "universalIdentifier": "566609c9-1c8b-4899-91bb-0af140a89004", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Calendar channel record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d89fbee3-ce3b-4805-9dd0-618a6fde4dff", - "universalIdentifier": "bc9a982c-c314-49d6-818a-2661ce7e918f", + "id": "b14459e0-e62e-482d-886d-e5f7e27e0d6b", + "universalIdentifier": "428a0da5-4b2e-4ce3-b695-89a8b384e6e3", "type": "TS_VECTOR", "name": "searchVector", "label": "Search vector", @@ -2664,460 +5797,37 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"handle\"), ''))", + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", "generatedType": "STORED" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "7d61e07b-36eb-485d-8d1c-d1e5e2802817", - "universalIdentifier": "20202020-1d08-420a-9aa7-22e0f298232d", - "type": "TEXT", - "name": "handle", - "label": "Handle", - "description": "Handle", - "icon": "IconAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "cc7a848c-d602-4937-bbf4-195239f8a641", - "universalIdentifier": "20202020-1b07-4796-9f01-d626bab7ca4d", - "type": "SELECT", - "name": "visibility", - "label": "Visibility", - "description": "Visibility", - "icon": "IconEyeglass", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'SHARE_EVERYTHING'", - "options": [ - { - "id": "20202020-82a0-4859-b356-f5a1d6e3e53d", - "color": "green", - "label": "Metadata", - "value": "METADATA", - "position": 0 - }, - { - "id": "20202020-e5ec-4df5-ba3f-66ca2a79c283", - "color": "orange", - "label": "Share Everything", - "value": "SHARE_EVERYTHING", - "position": 1 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c552c529-e1c1-4bf5-a8ef-b90ce065e807", - "universalIdentifier": "20202020-50fb-404b-ba28-369911a3793a", - "type": "BOOLEAN", - "name": "isContactAutoCreationEnabled", - "label": "Is Contact Auto Creation Enabled", - "description": "Is Contact Auto Creation Enabled", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": true, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b14c58bd-f119-4235-87dd-45e0676f81d9", - "universalIdentifier": "20202020-b55d-447d-b4df-226319058775", - "type": "SELECT", - "name": "contactAutoCreationPolicy", - "label": "Contact auto creation policy", - "description": "Automatically create records for people you participated with in an event.", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'AS_PARTICIPANT_AND_ORGANIZER'", - "options": [ - { - "id": "20202020-47c1-4af1-a8a6-540edeafc55e", - "color": "green", - "label": "As Participant and Organizer", - "value": "AS_PARTICIPANT_AND_ORGANIZER", - "position": 0 - }, - { - "id": "20202020-b3cc-4248-b0d1-c8d45c2418b3", - "color": "orange", - "label": "As Participant", - "value": "AS_PARTICIPANT", - "position": 1 - }, - { - "id": "20202020-84ef-4061-9c22-db596e237ddc", - "color": "blue", - "label": "As Organizer", - "value": "AS_ORGANIZER", - "position": 2 - }, - { - "id": "20202020-f170-491f-9597-0e5817e46c17", - "color": "red", - "label": "None", - "value": "NONE", - "position": 3 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0309aa14-d417-4af4-9d19-4ed8f4514ca6", - "universalIdentifier": "20202020-fe19-4818-8854-21f7b1b43395", - "type": "BOOLEAN", - "name": "isSyncEnabled", - "label": "Is Sync Enabled", - "description": "Is Sync Enabled", - "icon": "IconRefresh", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": true, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9108d4e1-23d3-4153-beba-443b85675226", - "universalIdentifier": "20202020-bac2-4852-a5cb-7a7898992b70", - "type": "TEXT", - "name": "syncCursor", - "label": "Sync Cursor", - "description": "Sync Cursor. Used for syncing events from the calendar provider", - "icon": "IconReload", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fea8879f-af39-451f-abc5-efd6570f05d7", - "universalIdentifier": "20202020-7116-41da-8b4b-035975c4eb6a", - "type": "SELECT", - "name": "syncStatus", - "label": "Sync status", - "description": "Sync status", - "icon": "IconStatusChange", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": [ - { - "id": "20202020-ebdc-4fc8-a5c1-4bc6a90fdc3c", - "color": "yellow", - "label": "Ongoing", - "value": "ONGOING", - "position": 1 - }, - { - "id": "20202020-7126-4c26-9940-f5807ed87266", - "color": "blue", - "label": "Not Synced", - "value": "NOT_SYNCED", - "position": 2 - }, - { - "id": "20202020-0302-4201-bf84-aaa26b7ca94e", - "color": "green", - "label": "Active", - "value": "ACTIVE", - "position": 3 - }, - { - "id": "20202020-6dbb-449d-96b0-092189010f42", - "color": "red", - "label": "Failed Insufficient Permissions", - "value": "FAILED_INSUFFICIENT_PERMISSIONS", - "position": 4 - }, - { - "id": "20202020-935c-4333-a614-f49ee2ec6aa7", - "color": "red", - "label": "Failed Unknown", - "value": "FAILED_UNKNOWN", - "position": 5 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "75458801-df8d-4e34-a8d5-256a73f17e56", - "universalIdentifier": "20202020-6246-42e6-b5cd-003bd921782c", - "type": "SELECT", - "name": "syncStage", - "label": "Sync stage", - "description": "Sync stage", - "icon": "IconStatusChange", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'PENDING_CONFIGURATION'", - "options": [ - { - "id": "20202020-60c1-40a3-90ae-61d9ee1083c1", - "color": "blue", - "label": "Calendar event list fetch pending", - "value": "CALENDAR_EVENT_LIST_FETCH_PENDING", - "position": 0 - }, - { - "id": "20202020-8652-444a-b72e-d4b7112179ca", - "color": "green", - "label": "Calendar event list fetch scheduled", - "value": "CALENDAR_EVENT_LIST_FETCH_SCHEDULED", - "position": 1 - }, - { - "id": "20202020-e87c-4cfe-aefc-635ad34ef223", - "color": "orange", - "label": "Calendar event list fetch ongoing", - "value": "CALENDAR_EVENT_LIST_FETCH_ONGOING", - "position": 2 - }, - { - "id": "20202020-876f-449d-9f09-de5c369ff95f", - "color": "blue", - "label": "Calendar events import pending", - "value": "CALENDAR_EVENTS_IMPORT_PENDING", - "position": 3 - }, - { - "id": "20202020-3d2a-4acd-a0ed-197343b3bf60", - "color": "green", - "label": "Calendar events import scheduled", - "value": "CALENDAR_EVENTS_IMPORT_SCHEDULED", - "position": 4 - }, - { - "id": "20202020-e762-4152-bb20-29fdd49e1dff", - "color": "orange", - "label": "Calendar events import ongoing", - "value": "CALENDAR_EVENTS_IMPORT_ONGOING", - "position": 5 - }, - { - "id": "20202020-487c-464f-8caa-c6393b82b17c", - "color": "red", - "label": "Failed", - "value": "FAILED", - "position": 6 - }, - { - "id": "20202020-ba03-4221-b186-402662b68493", - "color": "gray", - "label": "Pending configuration", - "value": "PENDING_CONFIGURATION", - "position": 9 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7a198769-cfb7-4653-bd5e-e7e6e6c86d50", - "universalIdentifier": "20202020-a934-46f1-a8e7-9568b1e3a53e", - "type": "DATE_TIME", - "name": "syncStageStartedAt", - "label": "Sync stage started at", - "description": "Sync stage started at", - "icon": "IconHistory", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "38be620c-4ae7-4611-a011-431d1a0b18d5", - "universalIdentifier": "20202020-2ff5-4f70-953a-3d0d36357576", - "type": "DATE_TIME", - "name": "syncedAt", - "label": "Last sync date", - "description": "Last sync date", - "icon": "IconHistory", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a0b7f55d-70e7-42d6-a419-91940b669fd7", - "universalIdentifier": "20202020-525c-4b76-b9bd-0dd57fd11d61", - "type": "NUMBER", - "name": "throttleFailureCount", - "label": "Throttle Failure Count", - "description": "Throttle Failure Count", - "icon": "IconX", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d917b55a-24e7-4fbc-945d-11928e6526f3", - "universalIdentifier": "20202020-afb0-4a9f-979f-2d5087d71d09", + "id": "c44505bc-6201-4bb4-80a3-18e49dfc3bc3", + "universalIdentifier": "20202020-87c7-4118-83d6-2f4031005209", "type": "RELATION", - "name": "calendarChannelEventAssociations", - "label": "Calendar Channel Event Associations", - "description": "Calendar Channel Event Associations", - "icon": "IconCalendar", + "name": "attachments", + "label": "Attachments", + "description": "Attachments linked to the opportunity", + "icon": "IconFileImport", "isCustom": false, "isActive": true, "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, + "isUIReadOnly": false, + "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -3125,86 +5835,408 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "de02d560-0a2d-44b3-b8ba-4b471f9551bb", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" }, "targetObjectMetadata": { "__typename": "Object", - "id": "93e2f848-7d84-47aa-85cb-fb1a7bcce3da", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", + "nameSingular": "attachment", + "namePlural": "attachments" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "d917b55a-24e7-4fbc-945d-11928e6526f3", - "name": "calendarChannelEventAssociations" + "id": "c44505bc-6201-4bb4-80a3-18e49dfc3bc3", + "name": "attachments" }, "targetFieldMetadata": { "__typename": "Field", - "id": "49543153-9edf-4626-93da-55e9aad0738a", - "name": "calendarChannel" + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", + "name": "target" } }, "morphRelations": null }, { "__typename": "Field", - "id": "d1e26c42-511b-4052-af18-def236892aca", - "universalIdentifier": "20202020-95b1-4f44-82dc-61b042ae2414", + "id": "495a7d81-45b7-4cd2-8f8b-f01873fd78c6", + "universalIdentifier": "20202020-cbac-457e-b565-adece5fc815f", "type": "RELATION", - "name": "connectedAccount", - "label": "Connected Account", - "description": "Connected Account", - "icon": "IconUserCircle", + "name": "company", + "label": "Company", + "description": "Opportunity company", + "icon": "IconBuildingSkyscraper", "isCustom": false, "isActive": true, "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, + "isUIReadOnly": false, + "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "onDelete": "CASCADE", + "onDelete": "SET_NULL", "relationType": "MANY_TO_ONE", - "joinColumnName": "connectedAccountId" + "joinColumnName": "companyId" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "de02d560-0a2d-44b3-b8ba-4b471f9551bb", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" }, "targetObjectMetadata": { "__typename": "Object", - "id": "37158008-6977-486c-95b3-a58365a98a2f", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "d1e26c42-511b-4052-af18-def236892aca", - "name": "connectedAccount" + "id": "495a7d81-45b7-4cd2-8f8b-f01873fd78c6", + "name": "company" }, "targetFieldMetadata": { "__typename": "Field", - "id": "bb124e59-eedc-426b-b846-5be2a92db138", - "name": "calendarChannels" + "id": "147fef87-1b7f-495f-86b2-a71eca873d56", + "name": "opportunities" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f509d897-5beb-4689-b088-9b536de69598", + "universalIdentifier": "20202020-a1c2-4500-aaae-83ba8a0e827a", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the opportunity", + "icon": "IconHeart", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "f509d897-5beb-4689-b088-9b536de69598", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "dee9b3ac-33e2-45e0-ad39-2c2e01bc2c70", + "name": "opportunity" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "31959174-8fbe-4fc3-a8f6-17405bfe92db", + "universalIdentifier": "20202020-dd3f-42d5-a382-db58aabf43d3", + "type": "RELATION", + "name": "noteTargets", + "label": "Notes", + "description": "Notes tied to the opportunity", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "31959174-8fbe-4fc3-a8f6-17405bfe92db", + "name": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "07ad123b-8f3b-49d4-9754-c4e6d8751300", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "6550d04e-1509-4f3d-946d-ba6694eb8605", + "universalIdentifier": "20202020-8dfb-42fc-92b6-01afb759ed16", + "type": "RELATION", + "name": "pointOfContact", + "label": "Point of Contact", + "description": "Opportunity point of contact", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "pointOfContactId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "6550d04e-1509-4f3d-946d-ba6694eb8605", + "name": "pointOfContact" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "c91a81e6-4f92-4009-9fc3-185cd4259bba", + "name": "pointOfContactForOpportunities" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "17bdc140-c821-4917-ba8d-8409355567ed", + "universalIdentifier": "20202020-59c0-4179-a208-4a255f04a5be", + "type": "RELATION", + "name": "taskTargets", + "label": "Tasks", + "description": "Tasks tied to the opportunity", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "17bdc140-c821-4917-ba8d-8409355567ed", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "3fafd252-d79a-4fe7-8c16-730b6dd495d1", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "81af430e-2889-403e-8b34-6d1756689ca2", + "universalIdentifier": "20202020-30e2-421f-96c7-19c69d1cf631", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Timeline Activities linked to the opportunity.", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "81af430e-2889-403e-8b34-6d1756689ca2", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "5a6259f6-aa53-431a-bc25-26fa0072aa60", + "universalIdentifier": "20202020-be7e-4d1e-8e19-3d5c7c4b9f2a", + "type": "RELATION", + "name": "owner", + "label": "Owner", + "description": "Opportunity owner", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "ownerId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "5a6259f6-aa53-431a-bc25-26fa0072aa60", + "name": "owner" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "33c895f2-e6ec-4d2f-b0c0-391e041c04a4", + "name": "ownedOpportunities" } }, "morphRelations": null @@ -3213,10 +6245,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "9babb7ee-6834-4a85-bf17-0ad672eabbc9", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_7b40c7f03dd1f998ba765ad0730", + "id": "d275a8ee-657f-4d63-9777-6be2e11b35e0", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_c0ac950d77b75527f654b7f6a06", "indexWhereClause": null, "indexType": "BTREE", "isUnique": false, @@ -3224,10 +6256,73 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "1281af58-542b-43e8-9624-22806be15223", - "fieldMetadataId": "d1e26c42-511b-4052-af18-def236892aca", - "createdAt": "2026-02-26T11:55:16.316Z", - "updatedAt": "2026-02-26T11:55:16.316Z", + "id": "d13474c7-0660-4a0a-b39a-64da5ef796e0", + "fieldMetadataId": "6550d04e-1509-4f3d-946d-ba6694eb8605", + "createdAt": "2026-02-27T01:17:26.892Z", + "updatedAt": "2026-02-27T01:17:26.892Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "28c1aac4-b34d-4f24-bb01-7762cfdb7de0", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_4b9feee3298c853326bf6ff8e42", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "c9e8341f-230b-4a50-a0c9-4d4754215f4e", + "fieldMetadataId": "495a7d81-45b7-4cd2-8f8b-f01873fd78c6", + "createdAt": "2026-02-27T01:17:26.892Z", + "updatedAt": "2026-02-27T01:17:26.892Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "580e6b93-9259-43a1-bca9-c5d282d9457a", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_ae112c10e060420923011767b14", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "5c6182fd-6a82-42d6-b869-c3a26763b54e", + "fieldMetadataId": "35115cd4-1211-43d1-9162-21ae53d63d03", + "createdAt": "2026-02-27T01:17:26.893Z", + "updatedAt": "2026-02-27T01:17:26.893Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "3d7aae70-76f0-40fb-9e4d-23bad198dfa9", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_9f96d65260c4676faac27cb6bf3", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "3b5338ce-e505-47d5-af4b-b1513a591856", + "fieldMetadataId": "b14459e0-e62e-482d-886d-e5f7e27e0d6b", + "createdAt": "2026-02-27T01:17:26.893Z", + "updatedAt": "2026-02-27T01:17:26.893Z", "order": 0 } ] @@ -3239,7 +6334,1052 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "cabe467a-d234-4809-976a-3bce37083b71", + "id": "ac31da17-9686-436d-80e4-5278dcd00e81", + "universalIdentifier": "20202020-3f6b-4425-80ab-e468899ab4b2", + "nameSingular": "message", + "namePlural": "messages", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "5014da55-de66-491f-b7cc-2700c588cc56", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Message", + "labelPlural": "Messages", + "description": "Message", + "icon": "IconMessage", + "fieldsList": [ + { + "__typename": "Field", + "id": "19729084-978f-4744-a1a6-0e21e1f049dc", + "universalIdentifier": "20202020-b06a-4101-8a01-9cadbedfaeb1", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c37b7a9c-202b-4122-912e-c095b6bb760e", + "universalIdentifier": "20202020-b06b-4102-9b02-adbecfeafbc2", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "dc191dca-05cd-4a14-b25a-901721a531ea", + "universalIdentifier": "20202020-b06c-4103-8c03-becfdfabfcd3", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3d2e28de-6e98-41cc-8b17-d65537aa17db", + "universalIdentifier": "20202020-b06d-4104-9d04-cfdfabecdde4", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "029c078a-9972-4c5c-ad4d-463c2e62e822", + "universalIdentifier": "6e52bde4-ed41-4462-aa70-121e496270b4", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "529293dd-5e7e-465c-a161-d99537804c68", + "universalIdentifier": "7822dcc0-ee40-4af0-a6fe-f10a14e72b24", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "22cdf01a-b530-4717-a04c-4067f0fb78ff", + "universalIdentifier": "06c5052d-3369-4d6d-8eaa-f9780eddb1fd", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Message record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f823bd7a-a934-4ee1-a06c-ee1a98210e6f", + "universalIdentifier": "529b6008-4a12-4d48-bbc3-26a3f199bafd", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"subject\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f724990f-93e6-420f-8318-d518c4c64727", + "universalIdentifier": "20202020-72b5-416d-aed8-b55609067d01", + "type": "TEXT", + "name": "headerMessageId", + "label": "Header message Id", + "description": "Message id from the message header", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d97ffad4-fc34-4b94-ac4a-2e9cb76097dc", + "universalIdentifier": "20202020-0203-4118-8e2a-05b9bdae6dab", + "type": "SELECT", + "name": "direction", + "label": "Direction", + "description": "Message Direction", + "icon": "IconDirection", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'INCOMING'", + "options": [ + { + "id": "20202020-7b52-47d2-abd8-e96a4295f9a6", + "color": "green", + "label": "Incoming", + "value": "INCOMING", + "position": 0 + }, + { + "id": "20202020-11cb-42be-8df7-709ad53f90f9", + "color": "blue", + "label": "Outgoing", + "value": "OUTGOING", + "position": 1 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "5014da55-de66-491f-b7cc-2700c588cc56", + "universalIdentifier": "20202020-52d1-4036-b9ae-84bd722bb37a", + "type": "TEXT", + "name": "subject", + "label": "Subject", + "description": "Subject", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4922fff2-2120-4bce-9567-f7ecc21a9fa2", + "universalIdentifier": "20202020-d2ee-4e7e-89de-9a0a9044a143", + "type": "TEXT", + "name": "text", + "label": "Text", + "description": "Text", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "28edc2a0-e125-4189-ad42-37618f395678", + "universalIdentifier": "20202020-140a-4a2a-9f86-f13b6a979afc", + "type": "DATE_TIME", + "name": "receivedAt", + "label": "Received At", + "description": "The date the message was received", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b177c805-4ff4-4c09-8c28-1c9ed81a09f6", + "universalIdentifier": "20202020-30f2-4ccd-9f5c-e41bb9d26214", + "type": "RELATION", + "name": "messageThread", + "label": "Message Thread Id", + "description": "Message Thread Id", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "messageThreadId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "ac31da17-9686-436d-80e4-5278dcd00e81", + "nameSingular": "message", + "namePlural": "messages" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "26f62a07-444a-44b2-abf6-70037ab95e25", + "nameSingular": "messageThread", + "namePlural": "messageThreads" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b177c805-4ff4-4c09-8c28-1c9ed81a09f6", + "name": "messageThread" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "ff159b75-37ac-4745-8b55-6d72f84c992a", + "name": "messages" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4ffdf98f-6607-4fd0-a646-1c4ca6a1e77a", + "universalIdentifier": "20202020-7cff-4a74-b63c-73228448cbd9", + "type": "RELATION", + "name": "messageParticipants", + "label": "Message Participants", + "description": "Message Participants", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "ac31da17-9686-436d-80e4-5278dcd00e81", + "nameSingular": "message", + "namePlural": "messages" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "4f6c7ed3-fffc-475a-a4e6-8afd83f16f98", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "4ffdf98f-6607-4fd0-a646-1c4ca6a1e77a", + "name": "messageParticipants" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "5786ed66-82e8-45b5-a99e-eb89ec2d74dc", + "name": "message" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "287d80c0-0349-45d8-ba03-a228b85039e8", + "universalIdentifier": "20202020-3cef-43a3-82c6-50e7cfbc9ae4", + "type": "RELATION", + "name": "messageChannelMessageAssociations", + "label": "Message Channel Association", + "description": "Messages from the channel.", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "ac31da17-9686-436d-80e4-5278dcd00e81", + "nameSingular": "message", + "namePlural": "messages" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "65e845b0-73aa-4348-99ad-f4d6db898e8f", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "287d80c0-0349-45d8-ba03-a228b85039e8", + "name": "messageChannelMessageAssociations" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "d0f39dc4-f79d-4409-94fc-f3af14c209ad", + "name": "message" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "b3acb940-d218-494e-93f3-21c7588f75c2", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_5d002cd3b5be1cb05c0b7b28582", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "696b1a9e-e8f1-438d-af24-cc002b963804", + "fieldMetadataId": "b177c805-4ff4-4c09-8c28-1c9ed81a09f6", + "createdAt": "2026-02-27T01:17:26.881Z", + "updatedAt": "2026-02-27T01:17:26.881Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "aa5c2ea8-3c4e-49c4-857d-ccc02378f49c", + "universalIdentifier": "20202020-491b-4aaa-9825-afd1bae6ae00", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "31896372-bd54-44b7-b516-52914f20c291", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Calendar Channel Event Association", + "labelPlural": "Calendar Channel Event Associations", + "description": "Calendar Channel Event Associations", + "icon": "IconCalendar", + "fieldsList": [ + { + "__typename": "Field", + "id": "31896372-bd54-44b7-b516-52914f20c291", + "universalIdentifier": "20202020-c01a-4021-8a21-9edf06bfef0a", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "fcccc32f-5b9d-4042-b5dd-e7a654df6f5e", + "universalIdentifier": "20202020-c01b-4022-9b22-afefd7cffefb", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "208bc43e-4629-4397-a439-5140ddc4c195", + "universalIdentifier": "20202020-c01c-4023-8c23-bffef8dffef0", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d7e42256-e3b2-42de-91a6-41e15107be27", + "universalIdentifier": "20202020-c01d-4024-9d24-cffef9effef1", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b2788c99-f72f-45ca-a6fb-339ac51e24a7", + "universalIdentifier": "8daa2bc8-bce2-4309-8a48-b929f3ee2c34", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "33c3490a-19c9-45d9-8c91-b9ef43e73aaa", + "universalIdentifier": "55d810d2-fe47-44b4-b1de-b9c32113b695", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "89227db3-76c1-425e-bb82-d0f592a991ce", + "universalIdentifier": "4fa18346-bb2b-49b0-ab35-23df86eed1c8", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Calendar channel event association record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4c79357b-f5b6-477c-a4ab-a923b6232d65", + "universalIdentifier": "1844a9cf-6d35-46d7-99ba-011626a6d71b", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"eventExternalId\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a2273446-bc46-4cef-817a-9dab0b87528b", + "universalIdentifier": "20202020-9ec8-48bb-b279-21d0734a75a1", + "type": "TEXT", + "name": "eventExternalId", + "label": "Event external ID", + "description": "Event external ID", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "45cea326-5aa7-46d7-b38c-1aa8db792c97", + "universalIdentifier": "20202020-c58f-4c69-9bf8-9518fa31aa50", + "type": "TEXT", + "name": "recurringEventExternalId", + "label": "Recurring Event ID", + "description": "Recurring Event ID", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "fa14a5c8-0205-48ac-bb6b-3e1dd93e3502", + "universalIdentifier": "20202020-93ee-4da4-8d58-0282c4a9cb7d", + "type": "RELATION", + "name": "calendarChannel", + "label": "Channel ID", + "description": "Channel ID", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "calendarChannelId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "aa5c2ea8-3c4e-49c4-857d-ccc02378f49c", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "28d82d16-3079-4669-a560-cc3e7eb0cdcb", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "fa14a5c8-0205-48ac-bb6b-3e1dd93e3502", + "name": "calendarChannel" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "56bcb165-d95e-4e90-bd73-f4ce3f3cad45", + "name": "calendarChannelEventAssociations" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9e024610-3ebd-4863-beb8-f68c19f457be", + "universalIdentifier": "20202020-5aa5-437e-bb86-f42d457783e3", + "type": "RELATION", + "name": "calendarEvent", + "label": "Event ID", + "description": "Event ID", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "calendarEventId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "aa5c2ea8-3c4e-49c4-857d-ccc02378f49c", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "7063c812-ee93-49ec-aae9-dfc1a3078ce6", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "9e024610-3ebd-4863-beb8-f68c19f457be", + "name": "calendarEvent" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "407c8165-eba1-4f1a-8778-a381afa8c21c", + "name": "calendarChannelEventAssociations" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "40a48ab5-eabe-4277-975a-5a3f59d506b4", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_968d4fd721a78b75c13a1b9ec12", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "9894edf3-991f-40dd-be5d-9558d6607a95", + "fieldMetadataId": "fa14a5c8-0205-48ac-bb6b-3e1dd93e3502", + "createdAt": "2026-02-27T01:17:26.867Z", + "updatedAt": "2026-02-27T01:17:26.867Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "e1e2170e-82b5-4bba-abeb-ce2bb14bd0ec", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_733381453fca683f36c05af5478", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "a6204034-3474-47b9-92f2-d095d0681d8f", + "fieldMetadataId": "9e024610-3ebd-4863-beb8-f68c19f457be", + "createdAt": "2026-02-27T01:17:26.868Z", + "updatedAt": "2026-02-27T01:17:26.868Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "94688fdc-6133-4125-b3bf-51b6caad382f", "universalIdentifier": "20202020-fe8c-40bc-a681-b80b771449b7", "nameSingular": "messageChannel", "namePlural": "messageChannels", @@ -3248,11 +7388,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "cd74d8bf-958c-41f8-881d-347c3f02c6d6", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "23b27dd4-2aea-4caf-a9a0-914cfd0e46c4", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, @@ -3264,7 +7404,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "fieldsList": [ { "__typename": "Field", - "id": "16fef4e0-f1c1-4462-a964-3803eaf4de40", + "id": "55d3ea0a-4a59-4a26-97f2-088011d8a694", "universalIdentifier": "20202020-b02a-40c1-8ac1-9eafbacbdced", "type": "UUID", "name": "id", @@ -3277,20 +7417,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "2dc7637a-cff0-4c91-819a-34f370acb2b1", + "id": "5928fd2d-b734-4a29-888f-4aec1df683de", "universalIdentifier": "20202020-b02b-40c2-9bc2-afbacbdcedfe", "type": "DATE_TIME", "name": "createdAt", @@ -3303,8 +7443,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -3312,13 +7452,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6af643ac-fdf4-401f-917d-4feb2e6433f3", + "id": "0b159079-8f48-4070-bf7f-9fc7506bf14a", "universalIdentifier": "20202020-b02c-40c3-8cc3-bacbdcedfefa", "type": "DATE_TIME", "name": "updatedAt", @@ -3331,8 +7471,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -3340,13 +7480,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b5bcbe20-2cbd-4c2d-8ec6-ad6b6c83c2eb", + "id": "874b24ae-6050-443e-95c1-b7f39dd6245b", "universalIdentifier": "20202020-b02d-40c4-9dc4-cbdcedfefaab", "type": "DATE_TIME", "name": "deletedAt", @@ -3359,8 +7499,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -3368,13 +7508,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "659c4426-a7eb-4e42-a034-df3c4a3789d1", + "id": "84f27d0d-d4a2-4654-8e4d-6c05d9553844", "universalIdentifier": "b7de8fcc-a7c6-4122-b3fa-1fcf8f30931c", "type": "ACTOR", "name": "createdBy", @@ -3387,8 +7527,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -3398,13 +7538,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "f14b27a2-cc3c-4a58-85cc-438ce8d38df4", + "id": "8297ae7f-bdb4-4422-9d21-520a2c8d0e08", "universalIdentifier": "88bb6ff1-b8a1-4313-95d4-7879acca0b93", "type": "ACTOR", "name": "updatedBy", @@ -3417,8 +7557,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -3428,13 +7568,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b30c6d61-4196-43d1-8d33-b683995ff2b6", + "id": "902788e6-a3be-45a1-a021-c34c9a8d5bc5", "universalIdentifier": "bc8a36af-8b9c-4548-a0da-c90e899e7243", "type": "POSITION", "name": "position", @@ -3447,20 +7587,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "5d06402e-27fc-4989-b5ef-4b039f75c4f2", + "id": "579860ad-bcd4-4d0a-a8b9-364d3845b240", "universalIdentifier": "5e84794c-6f14-4bdf-81a6-76ee11cda51f", "type": "TS_VECTOR", "name": "searchVector", @@ -3473,8 +7613,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -3483,13 +7623,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "070be1df-16bd-49a8-a09b-f2b3b2b3dc79", + "id": "b3d54a5e-0210-470a-89d7-f1abe5f3b530", "universalIdentifier": "20202020-6a6b-4532-9767-cbc61b469453", "type": "SELECT", "name": "visibility", @@ -3502,8 +7642,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "'SHARE_EVERYTHING'", "options": [ { @@ -3531,13 +7671,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "cd74d8bf-958c-41f8-881d-347c3f02c6d6", + "id": "23b27dd4-2aea-4caf-a9a0-914cfd0e46c4", "universalIdentifier": "20202020-2c96-43c3-93e3-ed6b1acb69bc", "type": "TEXT", "name": "handle", @@ -3550,20 +7690,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "02c60c3a-5850-4ec6-8b5d-231395dd0662", + "id": "2163b7e2-11cb-4bcf-bca9-c4363f52fb52", "universalIdentifier": "20202020-ae95-42d9-a3f1-797a2ea22122", "type": "SELECT", "name": "type", @@ -3576,8 +7716,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "'EMAIL'", "options": [ { @@ -3598,13 +7738,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "02a18299-7113-4764-921e-a3c3fdfe6bec", + "id": "abcb987f-7540-441c-a505-baad5e635091", "universalIdentifier": "20202020-fabd-4f14-b7c6-3310f6d132c6", "type": "BOOLEAN", "name": "isContactAutoCreationEnabled", @@ -3617,20 +7757,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": true, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "baa672dd-73ad-4581-8da2-76af059f0a78", + "id": "34f523a3-a78a-429d-883f-0db92f3018de", "universalIdentifier": "20202020-fc0e-4ba6-b259-a66ca89cfa38", "type": "SELECT", "name": "contactAutoCreationPolicy", @@ -3643,8 +7783,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "'SENT'", "options": [ { @@ -3672,13 +7812,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "c17ee5ff-b5a1-41b1-aaf2-906054b4b1b2", + "id": "5ebd2d1b-53ca-4c97-8260-b32a1a03802a", "universalIdentifier": "20202020-cc39-4432-9fe8-ec8ab8bbed95", "type": "SELECT", "name": "messageFolderImportPolicy", @@ -3691,8 +7831,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "'ALL_FOLDERS'", "options": [ { @@ -3713,13 +7853,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "960cb62a-b7b7-401b-b69c-6ef78c63c640", + "id": "1328fdc6-226f-47c4-a1d1-905d2d025bbe", "universalIdentifier": "20202020-1df5-445d-b4f3-2413ad178431", "type": "BOOLEAN", "name": "excludeNonProfessionalEmails", @@ -3732,20 +7872,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": true, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "d511c953-0e0c-4345-be15-e2e6538f8e86", + "id": "2a49cd9d-9847-466f-8a51-40697496113f", "universalIdentifier": "20202020-45a0-4be4-9164-5820a6a109fb", "type": "BOOLEAN", "name": "excludeGroupEmails", @@ -3758,20 +7898,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": true, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "f19ced6e-6b6e-45e7-916a-b8e021b824d8", + "id": "5bbf7f68-c632-4477-8c40-425e3ffe41b6", "universalIdentifier": "20202020-17c5-4e9f-bc50-af46a89fdd42", "type": "SELECT", "name": "pendingGroupEmailsAction", @@ -3784,8 +7924,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "'NONE'", "options": [ { @@ -3813,13 +7953,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "04915e6a-df74-49e1-8609-3660b888b51f", + "id": "bc420ea8-f5a6-4153-8708-b6d66bc705bb", "universalIdentifier": "20202020-d9a6-48e9-990b-b97fdf22e8dd", "type": "BOOLEAN", "name": "isSyncEnabled", @@ -3832,20 +7972,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": true, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "84f9a374-6c8b-4fff-89c3-b7e8a4bc4860", + "id": "f519028c-00f2-4e96-9593-8e43751a94cc", "universalIdentifier": "20202020-79d1-41cf-b738-bcf5ed61e256", "type": "TEXT", "name": "syncCursor", @@ -3858,20 +7998,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "85f7d9a7-631a-40ef-9935-d0f9a07c2de9", + "id": "0042f5e7-52e4-4114-a258-034600058271", "universalIdentifier": "20202020-263d-4c6b-ad51-137ada56f7d4", "type": "DATE_TIME", "name": "syncedAt", @@ -3884,20 +8024,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "7fe0fc1c-0ade-47ed-bc7e-ffd037569f30", + "id": "8806f34b-8ad8-40bc-8ab0-f2a87e9f100e", "universalIdentifier": "20202020-56a1-4f7e-9880-a8493bb899cc", "type": "SELECT", "name": "syncStatus", @@ -3910,8 +8050,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": [ { @@ -3953,13 +8093,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "183ef823-aa78-4b78-80d2-a29e59b5f559", + "id": "ee085d72-ef8e-46f3-b4a4-ccf9fa6c48d2", "universalIdentifier": "20202020-7979-4b08-89fe-99cb5e698767", "type": "SELECT", "name": "syncStage", @@ -3972,8 +8112,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "'PENDING_CONFIGURATION'", "options": [ { @@ -4036,13 +8176,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "810e2627-be66-4524-8940-43475036047f", + "id": "bc93a07f-46e4-42f4-adcf-83dd42e5467a", "universalIdentifier": "20202020-8c61-4a42-ae63-73c1c3c52e06", "type": "DATE_TIME", "name": "syncStageStartedAt", @@ -4055,20 +8195,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e8c47a26-9666-447c-84ba-f44b40140989", + "id": "5e246ebe-ca96-4e11-8dc0-c56da48189e2", "universalIdentifier": "20202020-0291-42be-9ad0-d578a51684ab", "type": "NUMBER", "name": "throttleFailureCount", @@ -4081,20 +8221,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "5c355c8f-a9a2-4ade-b368-e8203aeed8d6", + "id": "e4018f67-c38b-4bc7-bb36-3c2862e4dee3", "universalIdentifier": "20202020-a1e3-4d7f-b5c2-9f8e6d4c3b2a", "type": "DATE_TIME", "name": "throttleRetryAfter", @@ -4107,20 +8247,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "9bf0fb8a-dd4f-4f14-bf48-dec2c8e5a880", + "id": "44eb5272-311c-483a-91a1-59fc683ddc67", "universalIdentifier": "20202020-49a2-44a4-b470-282c0440d15d", "type": "RELATION", "name": "connectedAccount", @@ -4133,8 +8273,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -4144,30 +8284,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "cabe467a-d234-4809-976a-3bce37083b71", + "id": "94688fdc-6133-4125-b3bf-51b6caad382f", "nameSingular": "messageChannel", "namePlural": "messageChannels" }, "targetObjectMetadata": { "__typename": "Object", - "id": "37158008-6977-486c-95b3-a58365a98a2f", + "id": "7470a75c-8b34-4fba-8258-f33a6e645e1c", "nameSingular": "connectedAccount", "namePlural": "connectedAccounts" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "9bf0fb8a-dd4f-4f14-bf48-dec2c8e5a880", + "id": "44eb5272-311c-483a-91a1-59fc683ddc67", "name": "connectedAccount" }, "targetFieldMetadata": { "__typename": "Field", - "id": "c653cf40-a63b-4f93-a93e-2cc4e60238ec", + "id": "5cbe30fd-39bd-4f9b-a79a-6d96a012b445", "name": "messageChannels" } }, @@ -4175,7 +8315,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "31f376d8-2942-4dae-808f-a040c9a45228", + "id": "42e10048-928c-416b-9995-199e283a2ab0", "universalIdentifier": "20202020-49b8-4766-88fd-75f1e21b3d5f", "type": "RELATION", "name": "messageChannelMessageAssociations", @@ -4188,8 +8328,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -4197,30 +8337,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "cabe467a-d234-4809-976a-3bce37083b71", + "id": "94688fdc-6133-4125-b3bf-51b6caad382f", "nameSingular": "messageChannel", "namePlural": "messageChannels" }, "targetObjectMetadata": { "__typename": "Object", - "id": "38b956fd-1178-4a0c-a919-2a0b5c2874b0", + "id": "65e845b0-73aa-4348-99ad-f4d6db898e8f", "nameSingular": "messageChannelMessageAssociation", "namePlural": "messageChannelMessageAssociations" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "31f376d8-2942-4dae-808f-a040c9a45228", + "id": "42e10048-928c-416b-9995-199e283a2ab0", "name": "messageChannelMessageAssociations" }, "targetFieldMetadata": { "__typename": "Field", - "id": "60a333f6-d610-4a5e-83d9-917ee4085319", + "id": "ab65a1a2-05e3-415d-916f-ed3e982cc9d1", "name": "messageChannel" } }, @@ -4228,7 +8368,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "c59314d7-d501-47d0-939a-64afd1f9b82b", + "id": "dd48687d-fdb2-4120-920f-d4caeb08e3b3", "universalIdentifier": "20202020-cc39-4432-9fe8-ec8ab8bbed94", "type": "RELATION", "name": "messageFolders", @@ -4241,8 +8381,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -4250,30 +8390,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "cabe467a-d234-4809-976a-3bce37083b71", + "id": "94688fdc-6133-4125-b3bf-51b6caad382f", "nameSingular": "messageChannel", "namePlural": "messageChannels" }, "targetObjectMetadata": { "__typename": "Object", - "id": "5cde5eae-bc35-4966-86c1-477a74a657ff", + "id": "356be4c3-b095-4533-94ce-b314cb0653ad", "nameSingular": "messageFolder", "namePlural": "messageFolders" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "c59314d7-d501-47d0-939a-64afd1f9b82b", + "id": "dd48687d-fdb2-4120-920f-d4caeb08e3b3", "name": "messageFolders" }, "targetFieldMetadata": { "__typename": "Field", - "id": "c940da70-853e-49fa-9bbe-dcf45b51994b", + "id": "263eb09c-9779-4104-b341-ecd41a8d4b35", "name": "messageChannel" } }, @@ -4283,9 +8423,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "af992857-9c26-4da1-b164-452363c52162", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "c02a9ede-78a5-4a2e-b171-98e33e6464e4", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_bf1967e8710f32f1a65c67fb4b4", "indexWhereClause": null, "indexType": "BTREE", @@ -4294,10 +8434,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "10f14243-db96-4d46-8c60-9660b6004681", - "fieldMetadataId": "9bf0fb8a-dd4f-4f14-bf48-dec2c8e5a880", - "createdAt": "2026-02-26T11:55:16.356Z", - "updatedAt": "2026-02-26T11:55:16.356Z", + "id": "d87de232-74fb-4e72-8aaf-a07c5257d70a", + "fieldMetadataId": "44eb5272-311c-483a-91a1-59fc683ddc67", + "createdAt": "2026-02-27T01:17:26.882Z", + "updatedAt": "2026-02-27T01:17:26.882Z", "order": 0 } ] @@ -4309,1326 +8449,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "universalIdentifier": "20202020-fff0-4b44-be82-bda313884400", - "nameSingular": "noteTarget", - "namePlural": "noteTargets", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "8d81b7db-af6e-4ffe-8597-d0cdd52a1b2c", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Note Target", - "labelPlural": "Note Targets", - "description": "A note target", - "icon": "IconCheckbox", - "fieldsList": [ - { - "__typename": "Field", - "id": "8d81b7db-af6e-4ffe-8597-d0cdd52a1b2c", - "universalIdentifier": "20202020-c02a-4121-8a21-cddeef123456", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2e745dd5-9fc8-4ffa-b371-4e2978c0a5db", - "universalIdentifier": "20202020-c02b-4122-9b22-ddeef1234567", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f2eef24d-655a-4bd5-94cc-a3006505a307", - "universalIdentifier": "20202020-c02c-4123-8c23-eef12345678a", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ac9314e8-6cc1-475b-bc29-f7d6dae9ba50", - "universalIdentifier": "20202020-c02d-4124-9d24-ef123456789b", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f2d7ca06-22d9-415c-9fd6-1e98a6d1d172", - "universalIdentifier": "820a3163-bb7d-41bc-93d9-81a464559c48", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0776dd01-f484-4510-9a94-8e579ce94382", - "universalIdentifier": "a48c2bae-fe78-4d9d-bc37-f56d1a462121", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "59148b75-5a66-4499-989e-2b37e9087226", - "universalIdentifier": "082f7c9e-5ccd-4056-8748-a428f65fa6f6", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "NoteTarget record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0d252da3-125f-41a6-8c6d-aa233dd695cd", - "universalIdentifier": "0cc32d0f-99ab-4fee-bf66-9e84bc8bce00", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c031446f-95b4-4948-9b32-f8be9ea35590", - "universalIdentifier": "20202020-57f3-4f50-9599-fc0f671df003", - "type": "RELATION", - "name": "note", - "label": "Note", - "description": "NoteTarget note", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "noteId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", - "nameSingular": "note", - "namePlural": "notes" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c031446f-95b4-4948-9b32-f8be9ea35590", - "name": "note" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "8c70b651-06ce-46fb-9acd-8a09eb0759ca", - "name": "noteTargets" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", - "universalIdentifier": "7188fce8-43d8-47eb-97b8-f4383d8a15de", - "type": "MORPH_RELATION", - "name": "target", - "label": "EmploymentHistory", - "description": "NoteTargets Employment History", - "icon": "IconCheckbox", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "targetEmploymentHistoryId" - }, - "isLabelSyncedWithName": false, - "morphId": "20202020-f635-435d-ab8d-e1168b375c70", - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": [ - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1e0d46f2-9533-4276-9dbe-f4eb99058ccd", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "80af7112-933c-4a57-9268-e4242f638389", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "61888137-b7ee-4003-9fbc-5c35120b3856", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "988020e9-9357-4e86-86ae-412b45a6826a", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a6f00e6f-c047-4916-8539-8c272dca1913", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e660eff2-80c0-403d-b717-fd0b1e78e22e", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "fdaa5686-513d-4ef7-a6af-7eea99ebb549", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "dc88483d-4b25-4ca7-90c3-702ddbcd8229", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1e75aaab-5f8d-4480-a2eb-96fb78d90b89", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "30f343d2-233b-48a1-916e-4add8ae4ec16", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1612e681-851a-4a30-8a98-8cf61480adeb", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "669f624d-ec75-4211-9994-71d6d6938cc1", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "7d6a7302-efa7-4850-8287-e0959bc5dbae", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "73276c28-6481-4c87-a503-9109d7bb3e47", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "daf84d3f-d080-433e-9380-dcd37a65490c", - "name": "noteTargets" - } - } - ] - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "368e182e-c5a4-463b-96a3-d1a4f8014bee", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_7e2582241f3b749d7a43d7d0231", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "73f85032-e613-4040-bb89-aad12adc6269", - "fieldMetadataId": "c031446f-95b4-4948-9b32-f8be9ea35590", - "createdAt": "2026-02-26T11:55:16.387Z", - "updatedAt": "2026-02-26T11:55:16.387Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "e37076f6-d33e-4179-b9a8-7c11315e5474", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_a1e176335c31525bf3cc12f0e00", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "2f474b1b-4a94-41c8-b2c4-26ae928efadd", - "fieldMetadataId": "988020e9-9357-4e86-86ae-412b45a6826a", - "createdAt": "2026-02-26T11:55:16.388Z", - "updatedAt": "2026-02-26T11:55:16.388Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "05a5247b-1d66-432e-963a-5c84a37d1bc5", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_2f07fa4cf183061692f8d99df80", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "3d7730a4-5a83-4dea-a3e4-cc6b101008fb", - "fieldMetadataId": "80af7112-933c-4a57-9268-e4242f638389", - "createdAt": "2026-02-26T11:55:16.389Z", - "updatedAt": "2026-02-26T11:55:16.389Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "5f2c813b-ac62-461d-b911-314364c49d30", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_9058210268a941b4b77a609e982", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "a391d798-eed8-4de2-b5e4-2e37d97403cb", - "fieldMetadataId": "e660eff2-80c0-403d-b717-fd0b1e78e22e", - "createdAt": "2026-02-26T11:55:16.390Z", - "updatedAt": "2026-02-26T11:55:16.390Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "universalIdentifier": "2b499429-617a-4377-8110-3cd9eafdeb69", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories", - "isCustom": true, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "labelIdentifierFieldMetadataId": "2d536600-c3f6-48ad-b325-d7ae25d47b78", - "imageIdentifierFieldMetadataId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Employment History", - "labelPlural": "Employment Histories", - "description": "", - "icon": "IconBriefcase", - "fieldsList": [ - { - "__typename": "Field", - "id": "2d536600-c3f6-48ad-b325-d7ae25d47b78", - "universalIdentifier": "4c7458e9-4c29-495d-a956-514df61e8a72", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": true, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e036c810-d0fc-4598-a6ff-b6e308c01256", - "universalIdentifier": "f3352263-cd18-4c93-a802-a601cf48e013", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "11f15377-7d97-48c7-a954-b58941123b6f", - "universalIdentifier": "f3f5e75d-4ab5-43a9-a5f6-d2425e0d9228", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "762581e6-a323-449f-9163-52f7ea434668", - "universalIdentifier": "60119d3c-6be8-45db-9395-b5319b38d4ae", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Deletion date", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "df4bdaf2-26c0-40f9-b068-fd123b36f92a", - "universalIdentifier": "02412673-0dc7-493b-ab25-8dc960abe816", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7fc37728-d129-4896-abcf-bb7c4ee7bed3", - "universalIdentifier": "4c544542-ce7a-4c43-8a23-78832ef7b271", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Search vector", - "icon": "IconSearch", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', NULL)", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d38be477-244f-4810-a04d-d4c5c5d72c06", - "universalIdentifier": "7e81ab34-bee5-4b87-9dee-21d3d44c3604", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8a7d0d70-adf9-4ec7-84c7-8ab02ae58f03", - "universalIdentifier": "a28e42a6-b378-4f33-a0af-19e2e362de61", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a65dba61-a5b3-4123-8872-03e01ae85d36", - "universalIdentifier": "62891343-4b32-4fc9-8488-3d98987447f8", - "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "EmploymentHistories tied to the Timeline Activity", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a65dba61-a5b3-4123-8872-03e01ae85d36", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d08d0762-aee7-496e-ac77-94c6bcf6e062", - "universalIdentifier": "869598ab-2123-40fa-b867-b8124d6bde9d", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "EmploymentHistories tied to the Favorite", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d08d0762-aee7-496e-ac77-94c6bcf6e062", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "f5775223-1bbc-43c0-8a01-832f9a9aae94", - "name": "employmentHistory" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b3802d73-c2a0-4296-b804-1d71752b392c", - "universalIdentifier": "eac133cc-96eb-49d0-b3b0-e105438f9965", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "EmploymentHistories tied to the Attachment", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b3802d73-c2a0-4296-b804-1d71752b392c", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1e0d46f2-9533-4276-9dbe-f4eb99058ccd", - "universalIdentifier": "7309561f-52bb-4d0b-9388-271246621041", - "type": "RELATION", - "name": "noteTargets", - "label": "Note Targets", - "description": "EmploymentHistories tied to the Note Target", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1e0d46f2-9533-4276-9dbe-f4eb99058ccd", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3edd3e41-4f17-4406-a206-727998446463", - "universalIdentifier": "46b45ee0-5eff-4899-8bd9-7c0a832b5599", - "type": "RELATION", - "name": "taskTargets", - "label": "Task Targets", - "description": "EmploymentHistories tied to the Task Target", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.358Z", - "updatedAt": "2026-02-26T11:55:17.358Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3edd3e41-4f17-4406-a206-727998446463", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0c8f580e-aa4e-4bb2-a168-589e8b7654f1", - "universalIdentifier": "32dda72c-840e-4dc7-b99a-b14947cb8abf", - "type": "RELATION", - "name": "person", - "label": "Person", - "description": "EmploymentHistories Person", - "icon": "IconUser", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:18.171Z", - "updatedAt": "2026-02-26T11:55:18.171Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "0c8f580e-aa4e-4bb2-a168-589e8b7654f1", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "87865f66-7bad-4f9c-a49f-7e58ffcf0974", - "name": "previousCompanies" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0836a83a-2c48-49ed-bbee-be155dce5fc5", - "universalIdentifier": "29c76744-001d-4b92-9694-95891ccf4f33", - "type": "RELATION", - "name": "company", - "label": "Company", - "description": "EmploymentHistories Company", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:18.263Z", - "updatedAt": "2026-02-26T11:55:18.263Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "companyId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "0836a83a-2c48-49ed-bbee-be155dce5fc5", - "name": "company" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b2785c50-d681-45d3-be13-657112f55f5f", - "name": "previousEmployees" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "8efd7606-70fe-4687-97ca-db2a699b6205", - "createdAt": "2026-02-26T11:55:17.358Z", - "updatedAt": "2026-02-26T11:55:17.358Z", - "name": "IDX_41ec5c0beb67017cf45244d9fa0", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "36471a1b-0441-48de-b21d-8a0a137637d5", - "fieldMetadataId": "7fc37728-d129-4896-abcf-bb7c4ee7bed3", - "createdAt": "2026-02-26T11:55:17.386Z", - "updatedAt": "2026-02-26T11:55:17.386Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "2f574a8d-e979-4b26-8c05-3c6033c4205a", - "createdAt": "2026-02-26T11:55:18.171Z", - "updatedAt": "2026-02-26T11:55:18.171Z", - "name": "IDX_cbb4f48ac0e7d2d33d4c412394f", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "7a83ccaf-faf0-439f-ba77-7460fb866755", - "fieldMetadataId": "0c8f580e-aa4e-4bb2-a168-589e8b7654f1", - "createdAt": "2026-02-26T11:55:18.181Z", - "updatedAt": "2026-02-26T11:55:18.181Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "6e4018ad-a495-4710-b4f9-7cb6d2704be0", - "createdAt": "2026-02-26T11:55:18.263Z", - "updatedAt": "2026-02-26T11:55:18.263Z", - "name": "IDX_9304b6d3edd8cfcae63547a9169", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "8c3c5679-1df1-483a-8d1e-af6b91b5be6c", - "fieldMetadataId": "0836a83a-2c48-49ed-bbee-be155dce5fc5", - "createdAt": "2026-02-26T11:55:18.272Z", - "updatedAt": "2026-02-26T11:55:18.272Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "id": "919364e3-e0b3-4ea3-9e9b-07001572881c", "universalIdentifier": "20202020-1ba1-48ba-bc83-ef7e5990ed10", "nameSingular": "task", "namePlural": "tasks", @@ -5637,11 +8458,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": false, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "afd7dd08-926e-4065-b1a6-68fb378c145a", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "7f90d9d3-0e7a-4392-bc59-535efbe5ff3c", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "shortcut": "T", "isLabelSyncedWithName": false, "isSearchable": true, @@ -5653,7 +8474,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "fieldsList": [ { "__typename": "Field", - "id": "9230edeb-b89f-4231-9bd9-03a8fbcdb970", + "id": "14868caf-65c6-47cd-97e1-7cda3064ac0d", "universalIdentifier": "20202020-a02a-4151-8a51-89abcdefabcd", "type": "UUID", "name": "id", @@ -5666,20 +8487,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "8282d244-6c45-4cee-a108-35f959a9d594", + "id": "2d31c009-a760-4817-80c9-060998d14ba6", "universalIdentifier": "20202020-a02b-4152-9b52-9abcdefabcde", "type": "DATE_TIME", "name": "createdAt", @@ -5692,8 +8513,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -5701,13 +8522,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6f37ee4b-da9d-4756-b5c3-06e2e7e773b0", + "id": "34b65e7e-3ecd-4176-b174-30be74cfb39c", "universalIdentifier": "20202020-a02c-4153-8c53-abcdefabcdef", "type": "DATE_TIME", "name": "updatedAt", @@ -5720,8 +8541,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -5729,13 +8550,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "4e90a0e1-8943-4d74-8086-1fa9bd7aecce", + "id": "63df565f-0b63-4e26-83f0-53b5014e316c", "universalIdentifier": "20202020-a02d-4154-9d54-bcdefabcdefa", "type": "DATE_TIME", "name": "deletedAt", @@ -5748,8 +8569,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -5757,13 +8578,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "28549077-52fc-4658-a06d-0f9334c318c0", + "id": "f0206e70-2c6d-49d8-9db6-c9ce839183b8", "universalIdentifier": "20202020-7d47-4690-8a98-98b9a0c05dd8", "type": "POSITION", "name": "position", @@ -5776,20 +8597,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "afd7dd08-926e-4065-b1a6-68fb378c145a", + "id": "7f90d9d3-0e7a-4392-bc59-535efbe5ff3c", "universalIdentifier": "20202020-b386-4cb7-aa5a-08d4a4d92680", "type": "TEXT", "name": "title", @@ -5802,20 +8623,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a1a28d7d-f10f-4d2e-a780-270ba9858c30", + "id": "15cffcf2-ed38-4ee1-956a-d8bc9d2bef16", "universalIdentifier": "20202020-4aa0-4ae8-898d-7df0afd47ab1", "type": "RICH_TEXT_V2", "name": "bodyV2", @@ -5828,20 +8649,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "1cb7483f-ec26-4419-9a1e-226d5982085e", + "id": "bdb36854-d68b-472c-8b10-c4f484b95f00", "universalIdentifier": "20202020-fd99-40da-951b-4cb9a352fce3", "type": "DATE_TIME", "name": "dueAt", @@ -5854,20 +8675,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "57e1bcd8-376f-4f02-8ccf-f5ccde44c8a2", + "id": "f7bf94fe-1cbc-42e0-8b2c-0e8ef1ed8c64", "universalIdentifier": "20202020-70bc-48f9-89c5-6aa730b151e0", "type": "SELECT", "name": "status", @@ -5880,8 +8701,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "'TODO'", "options": [ { @@ -5909,13 +8730,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "eb1970c3-08e2-458e-9b88-bea4141625f4", + "id": "e7b03c49-574d-4e0c-9999-96a06e00441d", "universalIdentifier": "20202020-1a04-48ab-a567-576965ae5387", "type": "ACTOR", "name": "createdBy", @@ -5928,8 +8749,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -5939,13 +8760,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "5928e399-7495-4bb3-a557-dfcc8d7f4d71", + "id": "fb08e529-8ab6-49a6-a46a-fdddd70d5ab4", "universalIdentifier": "9e8bf518-f4ab-433e-9674-efb75fba2802", "type": "ACTOR", "name": "updatedBy", @@ -5958,8 +8779,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -5969,13 +8790,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "7d27c6bb-0f93-4731-9290-77eac1430d98", + "id": "e41415a2-ac36-4d2b-8a74-d28561f8cc37", "universalIdentifier": "20202020-4746-4e2f-870c-52b02c67c90d", "type": "TS_VECTOR", "name": "searchVector", @@ -5988,8 +8809,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -5998,13 +8819,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "5f4b74fb-fe95-465c-afa6-b6aa08671c20", + "id": "53fa1449-f637-49e0-9086-90c438cbe752", "universalIdentifier": "20202020-794d-4783-a8ff-cecdb15be139", "type": "RELATION", "name": "attachments", @@ -6017,8 +8838,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -6026,30 +8847,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "id": "919364e3-e0b3-4ea3-9e9b-07001572881c", "nameSingular": "task", "namePlural": "tasks" }, "targetObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "5f4b74fb-fe95-465c-afa6-b6aa08671c20", + "id": "53fa1449-f637-49e0-9086-90c438cbe752", "name": "attachments" }, "targetFieldMetadata": { "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", "name": "target" } }, @@ -6057,7 +8878,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "9df50dd1-4773-439b-abff-3f849b95dba3", + "id": "8e9fc8f9-931f-4ab3-a921-e3d0aadd2483", "universalIdentifier": "20202020-4d1d-41ac-b13b-621631298d65", "type": "RELATION", "name": "favorites", @@ -6070,8 +8891,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -6079,30 +8900,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "id": "919364e3-e0b3-4ea3-9e9b-07001572881c", "nameSingular": "task", "namePlural": "tasks" }, "targetObjectMetadata": { "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "9df50dd1-4773-439b-abff-3f849b95dba3", + "id": "8e9fc8f9-931f-4ab3-a921-e3d0aadd2483", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "4de6c38e-e41e-462e-b9d8-1476bfc940f8", + "id": "230d06af-ad50-47d7-957c-a55068535bfc", "name": "task" } }, @@ -6110,7 +8931,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "bb163d2a-e79f-4796-8bcc-7b2196964089", + "id": "017ad6e6-1e18-47fc-abe3-5c332eca430f", "universalIdentifier": "20202020-de9c-4d0e-a452-713d4a3e5fc7", "type": "RELATION", "name": "taskTargets", @@ -6123,8 +8944,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -6132,30 +8953,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "id": "919364e3-e0b3-4ea3-9e9b-07001572881c", "nameSingular": "task", "namePlural": "tasks" }, "targetObjectMetadata": { "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", "nameSingular": "taskTarget", "namePlural": "taskTargets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "bb163d2a-e79f-4796-8bcc-7b2196964089", + "id": "017ad6e6-1e18-47fc-abe3-5c332eca430f", "name": "taskTargets" }, "targetFieldMetadata": { "__typename": "Field", - "id": "313fe199-eab5-4910-8d57-ef3ca16193e8", + "id": "40044cb8-94ea-4468-92d1-7cd0c2aaf748", "name": "task" } }, @@ -6163,7 +8984,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "f43603d7-d5d2-418a-93ba-78711bd2b19c", + "id": "5c19ca1f-2590-4fb0-8068-77808593fe8d", "universalIdentifier": "20202020-065a-4f42-a906-e20422c1753f", "type": "RELATION", "name": "assignee", @@ -6176,8 +8997,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -6187,30 +9008,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "id": "919364e3-e0b3-4ea3-9e9b-07001572881c", "nameSingular": "task", "namePlural": "tasks" }, "targetObjectMetadata": { "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", "nameSingular": "workspaceMember", "namePlural": "workspaceMembers" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "f43603d7-d5d2-418a-93ba-78711bd2b19c", + "id": "5c19ca1f-2590-4fb0-8068-77808593fe8d", "name": "assignee" }, "targetFieldMetadata": { "__typename": "Field", - "id": "be86ea7a-d64d-4266-9412-cc9d51a5f37e", + "id": "70156151-d92a-49ab-8f18-fb1ede8ccf09", "name": "assignedTasks" } }, @@ -6218,7 +9039,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "950bbe53-564c-4c04-af78-80803e23bae4", + "id": "b9ef310f-dbd9-431b-a9ca-7ba0f7142d31", "universalIdentifier": "20202020-c778-4278-99ee-23a2837aee64", "type": "RELATION", "name": "timelineActivities", @@ -6231,8 +9052,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -6240,30 +9061,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "id": "919364e3-e0b3-4ea3-9e9b-07001572881c", "nameSingular": "task", "namePlural": "tasks" }, "targetObjectMetadata": { "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", + "id": "64d19806-f11a-493e-af13-2059861c8139", "nameSingular": "timelineActivity", "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "950bbe53-564c-4c04-af78-80803e23bae4", + "id": "b9ef310f-dbd9-431b-a9ca-7ba0f7142d31", "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", "name": "target" } }, @@ -6273,9 +9094,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "c67aedfb-59ea-4eef-a61c-9342e3c9a92a", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "568cb40b-b454-4ff6-bdc0-765b24afb93f", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_b5b4da613fc4d734f65fb1deb6b", "indexWhereClause": null, "indexType": "BTREE", @@ -6284,19 +9105,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "5c2898eb-7c6d-42a1-b46d-7583bd46c04f", - "fieldMetadataId": "f43603d7-d5d2-418a-93ba-78711bd2b19c", - "createdAt": "2026-02-26T11:55:16.397Z", - "updatedAt": "2026-02-26T11:55:16.397Z", + "id": "80156830-3df4-4f12-b4a3-c4411ab51f77", + "fieldMetadataId": "5c19ca1f-2590-4fb0-8068-77808593fe8d", + "createdAt": "2026-02-27T01:17:26.896Z", + "updatedAt": "2026-02-27T01:17:26.896Z", "order": 0 } ] }, { "__typename": "Index", - "id": "45e6a489-0c99-4595-b518-384ee6a4496f", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "6698678c-91e6-4466-a9ca-1d22c1b7ff0d", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_d01a000cf26e1225d894dc3d364", "indexWhereClause": null, "indexType": "GIN", @@ -6305,10 +9126,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "944fcd26-eaa9-4e2d-8c32-0af429cad486", - "fieldMetadataId": "7d27c6bb-0f93-4731-9290-77eac1430d98", - "createdAt": "2026-02-26T11:55:16.397Z", - "updatedAt": "2026-02-26T11:55:16.397Z", + "id": "8d188d90-7872-4d50-952b-19107a5053b8", + "fieldMetadataId": "e41415a2-ac36-4d2b-8a74-d28561f8cc37", + "createdAt": "2026-02-27T01:17:26.896Z", + "updatedAt": "2026-02-27T01:17:26.896Z", "order": 0 } ] @@ -6320,437 +9141,44 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "a4301009-69b3-4dac-97cd-351a4c49b4ff", - "universalIdentifier": "20202020-3319-4234-a34c-7f3b9d2e4d1f", - "nameSingular": "workflowAutomatedTrigger", - "namePlural": "workflowAutomatedTriggers", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "5bec69c4-48b3-48a4-b152-15e1b00f01bc", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Workflow Automated Trigger", - "labelPlural": "Workflow Automated Triggers", - "description": "A workflow automated trigger", - "icon": "IconSettingsAutomation", - "fieldsList": [ - { - "__typename": "Field", - "id": "5bec69c4-48b3-48a4-b152-15e1b00f01bc", - "universalIdentifier": "20202020-f01a-4171-8a71-abcdefabcdef", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ffa805d2-e745-446f-8657-86725de9b5a0", - "universalIdentifier": "20202020-f01b-4172-9b72-bcdefabcdefa", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f3019aa6-33d2-4581-86df-700ac8f3a674", - "universalIdentifier": "20202020-f01c-4173-8c73-cdefabcdefab", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7fd57bfe-dfa5-472a-a554-c451ac69a246", - "universalIdentifier": "20202020-f01d-4174-9d74-defabcdefabc", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "baec8703-728e-4e6a-9a43-c6bdca499bce", - "universalIdentifier": "5cea2f46-3779-4782-9fce-3062652e2dfd", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "18dec615-7aaa-46e7-bab7-823ae9ab0cd5", - "universalIdentifier": "017d3587-98bd-43ad-b5a6-cb8125105641", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f929e6e6-ad11-47f5-889a-c3c79ca79513", - "universalIdentifier": "f4c5eb0a-8a86-49a2-a775-941eaad98fc9", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "WorkflowAutomatedTrigger record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5cabeb06-465c-43c6-b5ff-681a97881b8e", - "universalIdentifier": "dae934ca-bfca-4101-8211-8eae6e2b5513", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c203cc9b-9949-4f21-b881-6bbdcfef5a03", - "universalIdentifier": "20202020-3319-4234-a34c-3f92c1ab56e7", - "type": "SELECT", - "name": "type", - "label": "Automated Trigger Type", - "description": "The workflow automated trigger type", - "icon": "IconSettingsAutomation", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'DATABASE_EVENT'", - "options": [ - { - "id": "20202020-ccd5-4f45-9292-f6b2fe81b22c", - "color": "green", - "label": "Database Event", - "value": "DATABASE_EVENT", - "position": 0 - }, - { - "id": "20202020-07b8-4e8f-b218-997ac813c209", - "color": "blue", - "label": "Cron", - "value": "CRON", - "position": 1 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "83b4ef81-4084-47a7-83e0-1b1bcd8a9bca", - "universalIdentifier": "20202020-3319-4234-a34c-bac8f903de12", - "type": "RAW_JSON", - "name": "settings", - "label": "Settings", - "description": "The workflow automated trigger settings", - "icon": "IconSettings", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ef27f72a-b310-485f-8b53-d17847253afd", - "universalIdentifier": "20202020-3319-4234-a34c-8e1a4d2f7c03", - "type": "RELATION", - "name": "workflow", - "label": "Workflow", - "description": "WorkflowAutomatedTrigger workflow", - "icon": "IconSettingsAutomation", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "a4301009-69b3-4dac-97cd-351a4c49b4ff", - "nameSingular": "workflowAutomatedTrigger", - "namePlural": "workflowAutomatedTriggers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ef27f72a-b310-485f-8b53-d17847253afd", - "name": "workflow" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "51da5dcd-cb72-420d-927c-cdd4fa08f8f9", - "name": "automatedTriggers" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "9a1dda0a-d227-4757-9fc6-4ceb26eb1ecf", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_397bfb7946782933c476b98d925", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "4de7dda2-e34e-494c-9174-abf321d96463", - "fieldMetadataId": "ef27f72a-b310-485f-8b53-d17847253afd", - "createdAt": "2026-02-26T11:55:16.409Z", - "updatedAt": "2026-02-26T11:55:16.409Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "universalIdentifier": "20202020-b374-4779-a561-80086cb2e17f", - "nameSingular": "company", - "namePlural": "companies", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "universalIdentifier": "20202020-e674-48e5-a542-72570eee7213", + "nameSingular": "person", + "namePlural": "people", "isCustom": false, "isRemote": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "d09663d8-52cf-45da-b3d0-7daef4ef2900", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "ca449ef8-9e1f-4068-a495-aa0637aaa2f5", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": "C", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": "P", "isLabelSyncedWithName": false, "isSearchable": true, "duplicateCriteria": [ [ - "name" + "nameFirstName", + "nameLastName" ], [ - "domainNamePrimaryLinkUrl" + "linkedinLinkPrimaryLinkUrl" + ], + [ + "emailsPrimaryEmail" ] ], - "labelSingular": "Company", - "labelPlural": "Companies", - "description": "A company", - "icon": "IconBuildingSkyscraper", + "labelSingular": "Person", + "labelPlural": "People", + "description": "A person", + "icon": "IconUser", "fieldsList": [ { "__typename": "Field", - "id": "b076ddef-59e1-4822-b2e0-bffe2a604bbb", - "universalIdentifier": "20202020-c05a-4061-8a61-1e2f3a4b5c6d", + "id": "3707be18-4c9d-4822-9532-26d3dbb66667", + "universalIdentifier": "20202020-e01a-4141-8a41-456789abcdef", "type": "UUID", "name": "id", "label": "Id", @@ -6762,21 +9190,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "79036ba7-57a8-4933-841e-74b26f2a0d54", - "universalIdentifier": "20202020-c05b-4062-9b62-2f3a4b5c6d7e", + "id": "18f17d62-517d-4619-b4f6-391bd54a63ad", + "universalIdentifier": "20202020-e01b-4142-9b42-56789abcdefa", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -6788,8 +9216,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -6797,14 +9225,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "ef4d7d67-37ec-469e-9a73-38b30fe077d9", - "universalIdentifier": "20202020-c05c-4063-8c63-3a4b5c6d7e8f", + "id": "38b8660f-fc35-41a2-bac8-81b8c5ce2876", + "universalIdentifier": "20202020-e01c-4143-8c43-6789abcdefab", "type": "DATE_TIME", "name": "updatedAt", "label": "Last update", @@ -6816,8 +9244,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -6825,14 +9253,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "2d4c342b-6d47-47e3-87d8-9d9f945ed119", - "universalIdentifier": "20202020-c05d-4064-9d64-4b5c6d7e8f9a", + "id": "b41c7b89-6125-4bfc-a049-f18b35449fd3", + "universalIdentifier": "20202020-e01d-4144-9d44-789abcdefabc", "type": "DATE_TIME", "name": "deletedAt", "label": "Deleted at", @@ -6844,8 +9272,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -6853,53 +9281,53 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "d09663d8-52cf-45da-b3d0-7daef4ef2900", - "universalIdentifier": "20202020-4d99-4e2e-a84c-4a27837b1ece", - "type": "TEXT", + "id": "ca449ef8-9e1f-4068-a495-aa0637aaa2f5", + "universalIdentifier": "20202020-3875-44d5-8c33-a6239011cab8", + "type": "FULL_NAME", "name": "name", "label": "Name", - "description": "The company name", - "icon": "IconBuildingSkyscraper", + "description": "Contact's name", + "icon": "IconUser", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "d337b009-b6f4-4a7c-b186-9f5ff5ed2a69", - "universalIdentifier": "20202020-0c28-43d8-8ba5-3659924d3489", - "type": "LINKS", - "name": "domainName", - "label": "Domain Name", - "description": "The company website URL. We use this url to fetch the company icon", - "icon": "IconLink", + "id": "f846b233-9ac7-4222-88d5-f06ea1d97543", + "universalIdentifier": "20202020-3c51-43fa-8b6e-af39e29368ab", + "type": "EMAILS", + "name": "emails", + "label": "Emails", + "description": "Contact's Emails", + "icon": "IconMail", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": true, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -6907,70 +9335,18 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "62954303-57a5-44d4-85c7-1936334c44eb", - "universalIdentifier": "20202020-c5ce-4adc-b7b6-9c0979fc55e7", - "type": "ADDRESS", - "name": "address", - "label": "Address", - "description": "Address of the company", - "icon": "IconMap", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f06fa246-62df-4fb8-aba6-1950d599b6fd", - "universalIdentifier": "20202020-8965-464a-8a75-74bafc152a0b", - "type": "NUMBER", - "name": "employees", - "label": "Employees", - "description": "Number of employees in the company", - "icon": "IconUsers", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f3b1508b-e846-40c3-b27a-550036172e4a", - "universalIdentifier": "20202020-ebeb-4beb-b9ad-6848036fb451", + "id": "31b75aea-4480-4bcb-a721-c7e865779d81", + "universalIdentifier": "20202020-f1af-48f7-893b-2007a73dd508", "type": "LINKS", "name": "linkedinLink", "label": "Linkedin", - "description": "The company Linkedin account", + "description": "Contact's Linkedin account", "icon": "IconBrandLinkedin", "isCustom": false, "isActive": true, @@ -6978,25 +9354,25 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b1f85e87-dddb-40c9-b778-209850414a07", - "universalIdentifier": "20202020-6f64-4fd9-9580-9c1991c7d8c3", + "id": "e7c52f56-410c-457d-8fe3-7c07b373d1a5", + "universalIdentifier": "20202020-8fc2-487c-b84a-55a99b145cfd", "type": "LINKS", "name": "xLink", "label": "X", - "description": "The company Twitter/X account", + "description": "Contact's X/Twitter account", "icon": "IconBrandX", "isCustom": false, "isActive": true, @@ -7004,77 +9380,159 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "1d2ed9bc-183f-43a9-9202-a463f1a792cd", - "universalIdentifier": "20202020-602a-495c-9776-f5d5b11d227b", - "type": "CURRENCY", - "name": "annualRecurringRevenue", - "label": "ARR", - "description": "Annual Recurring Revenue: The actual or estimated annual revenue of the company", - "icon": "IconMoneybag", + "id": "fa1ea693-2dd8-4ce5-8f18-ee29709d2142", + "universalIdentifier": "20202020-b0d0-415a-bef9-640a26dacd9b", + "type": "TEXT", + "name": "jobTitle", + "label": "Job Title", + "description": "Contact's job title", + "icon": "IconBriefcase", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "24114a48-0928-4f50-a6e4-f538e58516fd", - "universalIdentifier": "20202020-ba6b-438a-8213-2c5ba28d76a2", - "type": "BOOLEAN", - "name": "idealCustomerProfile", - "label": "ICP", - "description": "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you", - "icon": "IconTarget", + "id": "7fb5b899-ee4a-43db-ae10-36f9688b130b", + "universalIdentifier": "20202020-0638-448e-8825-439134618022", + "type": "PHONES", + "name": "phones", + "label": "Phones", + "description": "Contact's phone numbers", + "icon": "IconPhone", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, - "isNullable": false, + "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, "options": null, - "settings": null, + "settings": { + "maxNumberOfValues": 1 + }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6706b78c-d987-4d08-b00a-5aff663dabb3", - "universalIdentifier": "20202020-9b4e-462b-991d-a0ee33326454", + "id": "c38ed21b-9e25-450e-a627-1085249ad83a", + "universalIdentifier": "20202020-5243-4ffb-afc5-2c675da41346", + "type": "TEXT", + "name": "city", + "label": "City", + "description": "Contact's city", + "icon": "IconMap", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "2d5d150e-fb3c-4bd9-aa14-e4c0b49ce8d9", + "universalIdentifier": "20202020-b8a6-40df-961c-373dc5d2ec21", + "type": "TEXT", + "name": "avatarUrl", + "label": "Avatar", + "description": "Contact's avatar", + "icon": "IconFileUpload", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "42959c09-9e47-41b2-b5ff-a3093a3ee3c2", + "universalIdentifier": "20202020-a7c9-4e3d-8f1b-2d5a6b7c8e9f", + "type": "FILES", + "name": "avatarFile", + "label": "Avatar File", + "description": "Contact's avatar file", + "icon": "IconFileUpload", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "maxNumberOfValues": 1 + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "fb6daf83-9918-499b-98c2-c8d8d0d9b688", + "universalIdentifier": "20202020-fcd5-4231-aff5-fff583eaa0b1", "type": "POSITION", "name": "position", "label": "Position", - "description": "Company record position", + "description": "Person record Position", "icon": "IconHierarchy2", "isCustom": false, "isActive": true, @@ -7082,21 +9540,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a8fa043f-f24d-43e2-8b42-18c120cc2184", - "universalIdentifier": "20202020-fabc-451d-ab7d-412170916baa", + "id": "45a32fb5-0ebf-4a4f-a272-3d3ea1fafb7a", + "universalIdentifier": "20202020-f6ab-4d98-af24-a3d5b664148a", "type": "ACTOR", "name": "createdBy", "label": "Created by", @@ -7108,8 +9566,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -7119,14 +9577,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "4d2a19b8-9c0b-48b6-884b-e0fa07fdad46", - "universalIdentifier": "7444022e-b38f-4d4f-801b-cd664abc4834", + "id": "51bb8b5b-4e36-4193-af15-e154e8fc3a34", + "universalIdentifier": "e9e0dd35-184c-4742-84da-afadf45ce59a", "type": "ACTOR", "name": "updatedBy", "label": "Updated by", @@ -7138,8 +9596,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -7149,14 +9607,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "0c2c2eb2-82c2-4743-86ba-8b49c9381de3", - "universalIdentifier": "85c71601-72f9-4b7b-b343-d46100b2c74d", + "id": "6054f5fa-2911-4282-84ee-7d713a069af6", + "universalIdentifier": "57d1d7ad-fa10-44fc-82f3-ad0959ec2534", "type": "TS_VECTOR", "name": "searchVector", "label": "Search vector", @@ -7168,28 +9626,28 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"domainNamePrimaryLinkLabel\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"domainNamePrimaryLinkUrl\"), '') || ' ' || COALESCE(public.unaccent_immutable(TRANSLATE(regexp_replace(\"domainNameSecondaryLinks\"::text, '\"(label|url)\"\\s*:\\s*', '', 'g'), '[]{}\",:', ' ')), ''))", + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"nameFirstName\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"nameLastName\"), '') || ' ' || \n COALESCE(public.unaccent_immutable(\"emailsPrimaryEmail\"), '') || ' ' ||\n COALESCE(public.unaccent_immutable(SPLIT_PART(\"emailsPrimaryEmail\", '@', 2)), '') || ' ' || COALESCE(public.unaccent_immutable(TRANSLATE(\"emailsAdditionalEmails\"::text, '[]\",', ' ')), '') || ' ' || COALESCE(public.unaccent_immutable(TRANSLATE(REPLACE(\"emailsAdditionalEmails\"::text, '@', ' '), '[]\",', ' ')), '') || ' ' || COALESCE(\"phonesPrimaryPhoneNumber\", '') || ' ' || COALESCE(\"phonesPrimaryPhoneCallingCode\", '') || ' ' || COALESCE(\"phonesPrimaryPhoneCallingCode\" || \"phonesPrimaryPhoneNumber\", '') || ' ' || COALESCE(REPLACE(\"phonesPrimaryPhoneCallingCode\", '+', '') || \"phonesPrimaryPhoneNumber\", '') || ' ' || COALESCE('0' || \"phonesPrimaryPhoneNumber\", '') || ' ' || COALESCE(TRANSLATE(regexp_replace(\"phonesAdditionalPhones\"::text, '\"(number|countryCode|callingCode)\"\\s*:\\s*', '', 'g'), '[]{}\",:', ' '), '') || ' ' || COALESCE(public.unaccent_immutable(\"jobTitle\"), ''))", "generatedType": "STORED" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "db5b7178-2e82-4104-b473-344078ecfcc0", - "universalIdentifier": "20202020-c1b5-4120-b0f0-987ca401ed53", + "id": "1848414f-be0a-4243-8c17-bcebdf5da652", + "universalIdentifier": "20202020-cd97-451f-87fa-bcb789bdbf3a", "type": "RELATION", "name": "attachments", "label": "Attachments", - "description": "Attachments linked to the company", + "description": "Attachments linked to the contact.", "icon": "IconFileImport", "isCustom": false, "isActive": true, @@ -7197,8 +9655,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -7206,30 +9664,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "db5b7178-2e82-4104-b473-344078ecfcc0", + "id": "1848414f-be0a-4243-8c17-bcebdf5da652", "name": "attachments" }, "targetFieldMetadata": { "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", "name": "target" } }, @@ -7237,21 +9695,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "b343e89c-5f48-4769-be0f-b15552b06488", - "universalIdentifier": "20202020-3213-4ddf-9494-6422bcff8d7c", + "id": "1e4ecf31-4538-4979-b5c7-77a4f0977498", + "universalIdentifier": "20202020-52ee-45e9-a702-b64b3753e3a9", "type": "RELATION", - "name": "people", - "label": "People", - "description": "People linked to the company.", - "icon": "IconUsers", + "name": "calendarEventParticipants", + "label": "Calendar Event Participants", + "description": "Calendar Event Participants", + "icon": "IconCalendar", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -7259,257 +9717,98 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", "nameSingular": "person", "namePlural": "people" }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "53e8d9b5-abfd-4a32-b850-f9ec15c8501a", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, "sourceFieldMetadata": { "__typename": "Field", - "id": "b343e89c-5f48-4769-be0f-b15552b06488", - "name": "people" + "id": "1e4ecf31-4538-4979-b5c7-77a4f0977498", + "name": "calendarEventParticipants" }, "targetFieldMetadata": { "__typename": "Field", - "id": "8cc08b2f-7b0b-459d-b32f-883960e8f2d3", - "name": "company" + "id": "2ea47fa7-556f-48ab-b8d9-e695280dfa38", + "name": "person" } }, "morphRelations": null }, { "__typename": "Field", - "id": "1c659dd6-4c64-427b-96f5-0c56b16f7b52", - "universalIdentifier": "20202020-95b8-4e10-9881-edb5d4765f9d", + "id": "bb9817f1-4487-4cfc-b743-6a5cd374cd78", + "universalIdentifier": "20202020-e2f3-448e-b34c-2d625f0025fd", "type": "RELATION", - "name": "accountOwner", - "label": "Account Owner", - "description": "Your team member responsible for managing the company account", - "icon": "IconUserCircle", + "name": "company", + "label": "Company", + "description": "Contact's company", + "icon": "IconBuildingSkyscraper", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { "onDelete": "SET_NULL", "relationType": "MANY_TO_ONE", - "joinColumnName": "accountOwnerId" + "joinColumnName": "companyId" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1c659dd6-4c64-427b-96f5-0c56b16f7b52", - "name": "accountOwner" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6b3bb88a-6986-423d-a982-d15e4443b9d0", - "name": "accountOwnerForCompanies" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c75afae6-0b8b-428d-9121-9a051a7c1bb6", - "universalIdentifier": "20202020-cb17-4a61-8f8f-3be6730480de", - "type": "RELATION", - "name": "taskTargets", - "label": "Tasks", - "description": "Tasks tied to the company", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", "nameSingular": "company", "namePlural": "companies" }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, "sourceFieldMetadata": { "__typename": "Field", - "id": "c75afae6-0b8b-428d-9121-9a051a7c1bb6", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "61888137-b7ee-4003-9fbc-5c35120b3856", - "universalIdentifier": "20202020-bae0-4556-a74a-a9c686f77a88", - "type": "RELATION", - "name": "noteTargets", - "label": "Notes", - "description": "Notes tied to the company", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "61888137-b7ee-4003-9fbc-5c35120b3856", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "04c28495-803a-4ec2-b02b-dee514d78dc6", - "universalIdentifier": "20202020-add3-4658-8e23-d70dccb6d0ec", - "type": "RELATION", - "name": "opportunities", - "label": "Opportunities", - "description": "Opportunities linked to the company.", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "04c28495-803a-4ec2-b02b-dee514d78dc6", - "name": "opportunities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "8043e437-ce0f-426e-9ad4-aae427bf2f78", + "id": "bb9817f1-4487-4cfc-b743-6a5cd374cd78", "name": "company" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "6e05d90c-7fce-4115-93c7-d5fa28a44e75", + "name": "people" } }, "morphRelations": null }, { "__typename": "Field", - "id": "1b604037-c9a2-4e35-b218-f59dd217c442", - "universalIdentifier": "20202020-4d1d-41ac-b13b-621631298d55", + "id": "f84728f2-dffc-4e74-ac53-b7ebe5e787be", + "universalIdentifier": "20202020-4073-4117-9cf1-203bcdc91cbd", "type": "RELATION", "name": "favorites", "label": "Favorites", - "description": "Favorites linked to the company", + "description": "Favorites linked to the contact", "icon": "IconHeart", "isCustom": false, "isActive": true, @@ -7517,8 +9816,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -7526,52 +9825,52 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "1b604037-c9a2-4e35-b218-f59dd217c442", + "id": "f84728f2-dffc-4e74-ac53-b7ebe5e787be", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "c9226dde-adb1-47c3-b8bc-0defd0a4ca0b", - "name": "company" + "id": "c60b72a9-d86d-4e45-935c-6a99103ac289", + "name": "person" } }, "morphRelations": null }, { "__typename": "Field", - "id": "76fc1b66-6b4c-42dc-a9f1-c569527f8c61", - "universalIdentifier": "20202020-0414-4daf-9c0d-64fe7b27f89f", + "id": "9b9e146a-5f80-42ef-9603-f254e8a30ff9", + "universalIdentifier": "20202020-498e-4c61-8158-fa04f0638334", "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "Timeline Activities linked to the company", - "icon": "IconIconTimelineEvent", + "name": "messageParticipants", + "label": "Message Participants", + "description": "Message Participants", + "icon": "IconUserCircle", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -7579,30 +9878,83 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" + "id": "4f6c7ed3-fffc-475a-a4e6-8afd83f16f98", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "76fc1b66-6b4c-42dc-a9f1-c569527f8c61", - "name": "timelineActivities" + "id": "9b9e146a-5f80-42ef-9603-f254e8a30ff9", + "name": "messageParticipants" }, "targetFieldMetadata": { "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", + "id": "d74c4e2a-279c-46bb-9729-b61c18342461", + "name": "person" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4c72443b-0c85-46b5-a23e-b5c056a5342c", + "universalIdentifier": "20202020-c8fc-4258-8250-15905d3fcfec", + "type": "RELATION", + "name": "noteTargets", + "label": "Notes", + "description": "Notes tied to the contact", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "4c72443b-0c85-46b5-a23e-b5c056a5342c", + "name": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "07ad123b-8f3b-49d4-9754-c4e6d8751300", "name": "target" } }, @@ -7610,64 +9962,228 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "b3ae6427-89a7-469e-a0e5-4dbb625d71c3", - "universalIdentifier": "087b6d03-cd2d-4384-9fcd-88978358015e", - "type": "TEXT", - "name": "tagline", - "label": "Tagline", - "description": "Company's Tagline", - "icon": "IconAdCircle", - "isCustom": true, + "id": "c91a81e6-4f92-4009-9fc3-185cd4259bba", + "universalIdentifier": "20202020-911b-4a7d-b67b-918aa9a5b33a", + "type": "RELATION", + "name": "pointOfContactForOpportunities", + "label": "Opportunities", + "description": "List of opportunities for which that person is the point of contact", + "icon": "IconTargetArrow", + "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, - "isNullable": false, + "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:17.728Z", - "updatedAt": "2026-02-26T11:55:17.728Z", - "defaultValue": "''", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, "options": null, - "settings": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "c91a81e6-4f92-4009-9fc3-185cd4259bba", + "name": "pointOfContactForOpportunities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "6550d04e-1509-4f3d-946d-ba6694eb8605", + "name": "pointOfContact" + } + }, "morphRelations": null }, { "__typename": "Field", - "id": "c2b78ff1-062a-473a-9725-ea761eed4506", - "universalIdentifier": "7ad1308c-6f0b-4b2a-9ebf-5079eb23f35e", - "type": "LINKS", - "name": "introVideo", - "label": "Intro Video", - "description": "Company's Intro Video", - "icon": "IconVideo", + "id": "25079ed0-3c1d-430e-a434-02f33bba6759", + "universalIdentifier": "20202020-584b-4d3e-88b6-53ab1fa03c3a", + "type": "RELATION", + "name": "taskTargets", + "label": "Tasks", + "description": "Tasks tied to the contact", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "25079ed0-3c1d-430e-a434-02f33bba6759", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "3fafd252-d79a-4fe7-8c16-730b6dd495d1", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "42350fbf-41d1-4f3b-b5f8-ac2e57f50632", + "universalIdentifier": "20202020-a43e-4873-9c23-e522de906ce5", + "type": "RELATION", + "name": "timelineActivities", + "label": "Events", + "description": "Events linked to the person", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "42350fbf-41d1-4f3b-b5f8-ac2e57f50632", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8f442178-4b4a-4bb9-a7f4-51c043ea72e1", + "universalIdentifier": "f53c055d-bc4d-408e-a9bc-113fbfccd42c", + "type": "TEXT", + "name": "intro", + "label": "Intro", + "description": "Contact's Intro", + "icon": "IconNote", "isCustom": true, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:17.728Z", - "updatedAt": "2026-02-26T11:55:17.728Z", + "createdAt": "2026-02-27T01:17:28.141Z", + "updatedAt": "2026-02-27T01:17:28.141Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "4958a20a-1128-433c-a49b-e65580e79093", - "universalIdentifier": "28a12c81-634a-4ea6-8f9d-6018b4a4c46d", + "id": "88e4f08b-0a5d-420e-9fab-88b843e47aeb", + "universalIdentifier": "df987af3-f0ca-400d-b9d3-9a0489469d52", + "type": "PHONES", + "name": "whatsapp", + "label": "Whatsapp", + "description": "Contact's Whatsapp Number", + "icon": "IconBrandWhatsapp", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.141Z", + "updatedAt": "2026-02-27T01:17:28.141Z", + "defaultValue": { + "additionalPhones": null, + "primaryPhoneNumber": "''", + "primaryPhoneCallingCode": "'+33'", + "primaryPhoneCountryCode": "'FR'" + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "787f8754-2f93-4d4f-921c-f27724f9d6f7", + "universalIdentifier": "1500d388-bf38-4eef-a4c0-ab7e812ad37e", "type": "MULTI_SELECT", - "name": "workPolicy", - "label": "Work Policy", - "description": "Company's Work Policy", + "name": "workPreference", + "label": "Work Preference", + "description": "Person's Work Preference", "icon": "IconHome", "isCustom": true, "isActive": true, @@ -7675,26 +10191,26 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:17.728Z", - "updatedAt": "2026-02-26T11:55:17.728Z", + "createdAt": "2026-02-27T01:17:28.141Z", + "updatedAt": "2026-02-27T01:17:28.141Z", "defaultValue": null, "options": [ { - "id": "0c6c6658-81df-4141-97ec-bdd6f5664913", + "id": "4d859724-93ba-46e7-af56-573c31f7a934", "color": "green", "label": "On-Site", "value": "ON_SITE", "position": 0 }, { - "id": "c9226566-97cd-45a4-8685-2fc74adfd01f", + "id": "ec870b35-1762-4122-8abd-9e286f18d1b4", "color": "turquoise", "label": "Hybrid", "value": "HYBRID", "position": 1 }, { - "id": "10c7fd57-745e-4e1f-bd08-bdb57f98fefc", + "id": "04dbdf13-3bcd-4c94-8130-8aca4b750e90", "color": "sky", "label": "Remote Work", "value": "REMOTE_WORK", @@ -7704,1549 +10220,55 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "cb03aa30-6560-457a-88cc-6a5f94a98daa", - "universalIdentifier": "5520c45d-1981-4f05-8842-840337d9d048", - "type": "BOOLEAN", - "name": "visaSponsorship", - "label": "Visa Sponsorship", - "description": "Company's Visa Sponsorship Policy", - "icon": "IconBrandVisa", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.728Z", - "updatedAt": "2026-02-26T11:55:17.728Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9ad2572c-0171-43f3-8f99-bdc72ee4e24f", - "universalIdentifier": "3a71e9e3-cdc0-4db3-a6f3-91ad0171a876", - "type": "RELATION", - "name": "caredForPets", - "label": "Cared For Pets", - "description": "Companies Pet Care Agreement", - "icon": "IconPaw", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:18.042Z", - "updatedAt": "2026-02-26T11:55:18.747Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY", - "junctionTargetFieldId": "5d68600f-9214-42e3-a00b-fb783342e720" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "9ad2572c-0171-43f3-8f99-bdc72ee4e24f", - "name": "caredForPets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "78472eb5-fa38-41c7-b417-02bf919ca5d2", - "name": "caretaker" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b2785c50-d681-45d3-be13-657112f55f5f", - "universalIdentifier": "c2e7a40c-bfb5-4af8-a7db-a26367fa9730", - "type": "RELATION", - "name": "previousEmployees", - "label": "Previous Employees", - "description": "Companies tied to the Employment History", - "icon": "IconUser", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:18.263Z", - "updatedAt": "2026-02-26T11:55:18.584Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY", - "junctionTargetFieldId": "0c8f580e-aa4e-4bb2-a168-589e8b7654f1" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b2785c50-d681-45d3-be13-657112f55f5f", - "name": "previousEmployees" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0836a83a-2c48-49ed-bbee-be155dce5fc5", - "name": "company" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "a57b95c2-ccb5-40b6-9b79-2dfa7c42ba50", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_f719a95179070eac397ba18dc70", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "4902b1ab-3936-4626-a050-426dd067f8d6", - "fieldMetadataId": "1c659dd6-4c64-427b-96f5-0c56b16f7b52", - "createdAt": "2026-02-26T11:55:16.323Z", - "updatedAt": "2026-02-26T11:55:16.323Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "8fdde044-6af8-43a8-bc60-89203b964b67", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_UNIQUE_2a32339058d0b6910b0834ddf81", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": true, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "97c6cadc-a219-4f0e-8439-3ea7a24323b9", - "fieldMetadataId": "d337b009-b6f4-4a7c-b186-9f5ff5ed2a69", - "createdAt": "2026-02-26T11:55:16.324Z", - "updatedAt": "2026-02-26T11:55:16.324Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "dcf36a6e-ed42-43b7-bc87-4092e73b8bac", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_fb1f4905546cfc6d70a971c76f7", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "374e1759-5462-4406-90bd-31b7209c2bd4", - "fieldMetadataId": "0c2c2eb2-82c2-4743-86ba-8b49c9381de3", - "createdAt": "2026-02-26T11:55:16.326Z", - "updatedAt": "2026-02-26T11:55:16.326Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "9c8a2086-6cd6-4936-96f9-62685c589a6b", - "universalIdentifier": "20202020-849a-4c3e-84f5-a25a7d802271", - "nameSingular": "messageThread", - "namePlural": "messageThreads", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "3c3682e2-e047-41f4-99cf-45a720e33ef9", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Message Thread", - "labelPlural": "Message Threads", - "description": "Message Thread", - "icon": "IconMessage", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "id": "3c3682e2-e047-41f4-99cf-45a720e33ef9", - "universalIdentifier": "20202020-b05a-40f1-8af1-5e6f7a8b9cad", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3bff2ad4-7cfc-4e1a-b939-a69193b858e6", - "universalIdentifier": "20202020-b05b-40f2-9bf2-6f7a8b9cadbe", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ea70289f-5e60-4438-95d0-49c1f60bd00d", - "universalIdentifier": "20202020-b05c-40f3-8cf3-7a8b9cadbecf", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "aa321d10-0f04-4119-b2ef-b5de506c1281", - "universalIdentifier": "20202020-b05d-40f4-9df4-8b9cadbecfda", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c0d2d07d-3078-4305-b8aa-104a53fd21a7", - "universalIdentifier": "b50ce369-9905-46d9-b95b-5e4034d252aa", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b60af433-9ed9-4218-897f-9c234b2a1d73", - "universalIdentifier": "20fbafd0-0a16-4785-b5a6-f1ef45ef304c", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "71bcd21f-c1d1-44de-a952-c7b69424aabb", - "universalIdentifier": "7490a440-7a62-466e-ba93-75a2f2edfb1e", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Message Thread record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "24876001-4c0f-4536-bcf8-7613bfc90227", - "universalIdentifier": "c63e091f-6528-4657-ad2a-b0a158f9e483", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2a97fc3f-dc22-4521-96de-4b85f501b6c0", - "universalIdentifier": "20202020-3115-404f-aade-e1154b28e35a", - "type": "RELATION", - "name": "messages", - "label": "Messages", - "description": "Messages from the thread.", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "9c8a2086-6cd6-4936-96f9-62685c589a6b", - "nameSingular": "messageThread", - "namePlural": "messageThreads" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "575b32e0-0a09-4c20-bb75-70e1ca21eaf7", - "nameSingular": "message", - "namePlural": "messages" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "2a97fc3f-dc22-4521-96de-4b85f501b6c0", - "name": "messages" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "bfe4039d-396a-443d-a496-6feb9a20d9b3", - "name": "messageThread" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d7ee3740-6894-4ded-9b68-2d888c0c0ee4", - "universalIdentifier": "20202020-314e-40a4-906d-a5d5d6c285f6", - "type": "RELATION", - "name": "messageChannelMessageAssociations", - "label": "Message Channel Association", - "description": "Messages from the channel.", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "9c8a2086-6cd6-4936-96f9-62685c589a6b", - "nameSingular": "messageThread", - "namePlural": "messageThreads" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "38b956fd-1178-4a0c-a919-2a0b5c2874b0", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d7ee3740-6894-4ded-9b68-2d888c0c0ee4", - "name": "messageChannelMessageAssociations" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a34cd771-f576-4e64-8ed3-7931ef15f751", - "name": "messageThread" - } - }, - "morphRelations": null - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "universalIdentifier": "904c979d-e233-453c-8ca2-8e44d3e31037", - "nameSingular": "pet", - "namePlural": "pets", - "isCustom": true, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:16.905Z", - "updatedAt": "2026-02-26T11:55:16.905Z", - "labelIdentifierFieldMetadataId": "5e6938bb-abc9-47ce-9147-ab9ae54a28d1", - "imageIdentifierFieldMetadataId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Pet", - "labelPlural": "Pets", - "description": "", - "icon": "IconCat", - "fieldsList": [ - { - "__typename": "Field", - "id": "5e6938bb-abc9-47ce-9147-ab9ae54a28d1", - "universalIdentifier": "6706dc95-e385-42ae-bc0b-f7920716238d", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "Name", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.905Z", - "updatedAt": "2026-02-26T11:55:16.905Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "cae530c3-cf10-4067-83c3-0d20aa619652", - "universalIdentifier": "3dbffb60-50ff-4261-907a-67220ea0fdb0", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": true, - "createdAt": "2026-02-26T11:55:16.905Z", - "updatedAt": "2026-02-26T11:55:16.905Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b711b848-51a5-4cab-94eb-5888b2eef9f9", - "universalIdentifier": "75a1d700-9568-4b14-8f7f-e366f2368f05", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.905Z", - "updatedAt": "2026-02-26T11:55:16.905Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1b9f5fe6-93eb-449e-9295-26e80cc16790", - "universalIdentifier": "dbe76f78-af96-4635-b95e-a245dd6ccf44", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.905Z", - "updatedAt": "2026-02-26T11:55:16.905Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e048f775-9a58-47d0-888d-4554fe04171e", - "universalIdentifier": "25bdd0df-18df-4b2e-a470-d00bf6a444ba", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Deletion date", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.905Z", - "updatedAt": "2026-02-26T11:55:16.905Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "31146a30-7345-4275-897f-05617baf15bb", - "universalIdentifier": "75bfaad8-7452-49c4-9cc4-08290d5895d5", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.905Z", - "updatedAt": "2026-02-26T11:55:16.905Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "57e748b8-faca-4b71-94fc-5accb2efcd41", - "universalIdentifier": "389bfb4b-2f99-43d8-8c14-998c1b5973e5", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Search vector", - "icon": "IconSearch", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.905Z", - "updatedAt": "2026-02-26T11:55:16.905Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "276bcc99-5a06-4263-aa45-e666db417a2b", - "universalIdentifier": "aa2c2d19-8cc3-49d0-b4c0-54c20981847c", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.905Z", - "updatedAt": "2026-02-26T11:55:16.905Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "74e05505-b405-4073-be96-0b4fc2db1080", - "universalIdentifier": "8d6f8276-a6a8-43bb-bb58-ee5fea20df9c", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.905Z", - "updatedAt": "2026-02-26T11:55:16.905Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "30229b21-6b23-4a0a-aa81-f69f64e32d95", - "universalIdentifier": "03aa5946-c537-4915-b9e5-e9510ec3b78c", - "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "Pets tied to the Timeline Activity", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.905Z", - "updatedAt": "2026-02-26T11:55:16.905Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "30229b21-6b23-4a0a-aa81-f69f64e32d95", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a174eaf8-ae73-43e6-9279-fffe37ebfd62", - "universalIdentifier": "511654ca-7475-404f-8582-cb788bb8d129", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Pets tied to the Favorite", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.906Z", - "updatedAt": "2026-02-26T11:55:16.906Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a174eaf8-ae73-43e6-9279-fffe37ebfd62", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a2e8de23-9555-4d67-a437-23165201156d", - "name": "pet" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "13f890e1-27c0-44aa-9e3a-de52f828a38b", - "universalIdentifier": "0a25fca9-1b2d-4660-a89b-dabf487acf6c", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "Pets tied to the Attachment", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.906Z", - "updatedAt": "2026-02-26T11:55:16.906Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "13f890e1-27c0-44aa-9e3a-de52f828a38b", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1612e681-851a-4a30-8a98-8cf61480adeb", - "universalIdentifier": "02d634a7-f7cc-4e3d-acbd-0fb16a11f8e0", - "type": "RELATION", - "name": "noteTargets", - "label": "Note Targets", - "description": "Pets tied to the Note Target", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.906Z", - "updatedAt": "2026-02-26T11:55:16.906Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1612e681-851a-4a30-8a98-8cf61480adeb", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ada40c59-34ac-42a6-87a5-f97e00c791d7", - "universalIdentifier": "cf3019ed-30d0-4cf3-bc23-37876f6dea1a", - "type": "RELATION", - "name": "taskTargets", - "label": "Task Targets", - "description": "Pets tied to the Task Target", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.906Z", - "updatedAt": "2026-02-26T11:55:16.906Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ada40c59-34ac-42a6-87a5-f97e00c791d7", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "86d9c188-3677-4a35-bc13-3f180b3e25f4", - "universalIdentifier": "ced35c50-ac9d-440f-abef-ac47f6f8cfa8", - "type": "SELECT", - "name": "species", - "label": "Species", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.051Z", - "updatedAt": "2026-02-26T11:55:17.051Z", - "defaultValue": null, - "options": [ - { - "id": "6c72ec40-32d4-4802-85d6-7b9599fca8fe", - "color": "blue", - "label": "Dog", - "value": "DOG", - "position": 0 - }, - { - "id": "f78802db-6f48-4524-ae82-d0de43c68701", - "color": "red", - "label": "Cat", - "value": "CAT", - "position": 1 - }, - { - "id": "497eb25c-34cd-4b2f-a7a5-214769ac8e94", - "color": "green", - "label": "Bird", - "value": "BIRD", - "position": 2 - }, - { - "id": "139c569a-16af-4286-bc67-edbd6a880bb4", - "color": "yellow", - "label": "Fish", - "value": "FISH", - "position": 3 - }, - { - "id": "d9bb3eee-b008-4387-b533-aa4cb974d584", - "color": "purple", - "label": "Rabbit", - "value": "RABBIT", - "position": 4 - }, - { - "id": "b44274d0-20f0-4a72-87a9-c03dc4539540", - "color": "orange", - "label": "Hamster", - "value": "HAMSTER", - "position": 5 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5c357002-7661-4b01-9cfb-829b5c8aa9a6", - "universalIdentifier": "628d0861-ef62-4e49-a38c-2273cf98597f", - "type": "MULTI_SELECT", - "name": "traits", - "label": "Traits", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.051Z", - "updatedAt": "2026-02-26T11:55:17.051Z", - "defaultValue": null, - "options": [ - { - "id": "04827718-c640-4dfc-9392-19f95d893436", - "color": "blue", - "label": "Playful", - "value": "PLAYFUL", - "position": 0 - }, - { - "id": "fdf67d27-c77f-4eda-b1a2-84b26a54d66d", - "color": "red", - "label": "Friendly", - "value": "FRIENDLY", - "position": 1 - }, - { - "id": "b022c0cc-5452-4420-b693-deda435bc1bb", - "color": "green", - "label": "Protective", - "value": "PROTECTIVE", - "position": 2 - }, - { - "id": "a1ddfedc-f51d-4501-93d7-91be09194d23", - "color": "yellow", - "label": "Shy", - "value": "SHY", - "position": 3 - }, - { - "id": "2d3687f0-63ce-48fe-a744-d628222d42ff", - "color": "purple", - "label": "Brave", - "value": "BRAVE", - "position": 4 - }, - { - "id": "e92d887e-f195-4897-b683-7b98a7caea62", - "color": "orange", - "label": "Curious", - "value": "CURIOUS", - "position": 5 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "72c3ffff-46e3-4a45-b4c2-5ace868bdc72", - "universalIdentifier": "83424c8b-f166-4ef6-9845-cef81abefb0c", - "type": "TEXT", - "name": "comments", - "label": "Comments", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2bc128ef-ba5c-4577-bc6a-9b2ede6bbdb5", - "universalIdentifier": "1caa9184-6cfc-495b-96f1-c36e0b272681", - "type": "NUMBER", - "name": "age", - "label": "Age", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8718a0ad-dafd-4b48-82ad-187b39cbdb94", - "universalIdentifier": "c02e3649-d29f-4eb5-8a20-31400c587b1a", - "type": "ADDRESS", - "name": "location", - "label": "Location", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "46157921-b7b5-4289-a14d-6a44307d1ddf", - "universalIdentifier": "402ade8a-f926-44da-9e5b-6eaaf611ebdb", - "type": "PHONES", - "name": "vetPhone", - "label": "Vet phone", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d64281c6-1edc-438a-b933-64b21917e11f", - "universalIdentifier": "a42d3877-2bb6-482f-abff-411e0c9b65db", - "type": "EMAILS", - "name": "vetEmail", - "label": "Vet email", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "50d49550-aa6e-4576-a87e-47f1bb3b6408", - "universalIdentifier": "7638fcca-9840-4af7-beba-0469d8cb64dd", - "type": "DATE", - "name": "birthday", - "label": "Birthday", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ebae067d-1437-4f79-89ed-0e3f61dfa473", - "universalIdentifier": "5b0e7126-a832-448d-b291-a953bdada6da", - "type": "BOOLEAN", - "name": "isGoodWithKids", - "label": "Is good with kids", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e92ce1d1-1253-4d53-bb9e-c42603096009", - "universalIdentifier": "8e38aaa5-48e6-47d1-b974-8588c885838f", - "type": "LINKS", - "name": "pictures", - "label": "Pictures", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d686fe67-6b73-4532-ba36-22f3c53224fe", - "universalIdentifier": "d7ffdfd3-b499-4298-a9cf-9c03a331aca5", - "type": "CURRENCY", - "name": "averageCostOfKibblePerMonth", - "label": "Average cost of kibble per month", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "497cad03-102d-4f3c-b175-98c7a47456e4", - "universalIdentifier": "c16777b6-cb2b-4804-8abc-fedc6035446e", - "type": "FULL_NAME", - "name": "makesOwnerThinkOf", - "label": "Makes its owner think of", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5f1d40dc-d72a-4af3-b311-2a6070f073f2", - "universalIdentifier": "49053f1d-75f6-4e54-80de-010da6f2e5b3", + "id": "bb97619a-05f5-46a0-a22c-d5efdb610664", + "universalIdentifier": "a3abd8f2-aec7-4c8e-bbc9-9e2059141e57", "type": "RATING", - "name": "soundSwag", - "label": "Sound swag (bark style, meow style, etc.)", - "description": "", - "icon": "", + "name": "performanceRating", + "label": "Performance Rating", + "description": "Person's Performance Rating", + "icon": "IconStars", "isCustom": true, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", + "createdAt": "2026-02-27T01:17:28.141Z", + "updatedAt": "2026-02-27T01:17:28.141Z", "defaultValue": null, "options": [ { - "id": "ede5bc5e-61d6-4876-aff0-2d81723d58e9", + "id": "6a60bd4c-8b16-48f1-8448-81de31c20a21", "label": "1", "value": "RATING_1", "position": 0 }, { - "id": "e62aa7ae-813a-4107-89f3-f344d359aebf", + "id": "78c094e5-6b72-4b2a-b003-619b1bc7db81", "label": "2", "value": "RATING_2", "position": 1 }, { - "id": "50e850a8-c904-4c07-a240-1ab2396edb21", + "id": "94191599-7732-4846-ac9e-3a9e7ddc7802", "label": "3", "value": "RATING_3", "position": 2 }, { - "id": "aa6585d3-bab9-47c3-9d13-9725b427d316", + "id": "31c7992d-483e-4966-a34b-aeb06feb4eef", "label": "4", "value": "RATING_4", "position": 3 }, { - "id": "ea3fd390-c2d9-46ee-9bd1-fe7ee74d5296", + "id": "ee240e09-0233-405c-b30f-a2ad129466c6", "label": "5", "value": "RATING_5", "position": 4 @@ -9255,784 +10277,114 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a8a2a7fa-1369-4c86-b1e9-dd004f28a1af", - "universalIdentifier": "cb108d1a-abdd-462f-9784-ebd76d70e31b", - "type": "RICH_TEXT", - "name": "bio", - "label": "Bio", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bb6b9e36-dfff-4fc7-8bc3-53a9eaf6c2f8", - "universalIdentifier": "e11acd45-089c-4296-ae6e-bd30a16852ca", - "type": "ARRAY", - "name": "interestingFacts", - "label": "Interesting facts", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c94645f7-908b-4c5f-8db0-dc5f98ce3084", - "universalIdentifier": "d08282d0-4b45-4dfe-8e20-2a3fe6f14e7f", - "type": "RAW_JSON", - "name": "extraData", - "label": "Extra data", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.052Z", - "updatedAt": "2026-02-26T11:55:17.052Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "21a0d7ff-f393-4c07-abce-371fc5f6c9a9", - "universalIdentifier": "55781d8f-b559-465c-84a5-b0f1e2935874", + "id": "0d3ec59b-3ed9-4e25-9882-e58f0d7be540", + "universalIdentifier": "a4f077e4-8bc6-4a51-bec1-2746910fab23", "type": "RELATION", - "name": "caretakers", - "label": "Caretakers", - "description": "Pets tied to the Pet Care Agreement", - "icon": "IconUser", + "name": "previousCompanies", + "label": "Previous Companies", + "description": "People tied to the Employment History", + "icon": "IconBuildingSkyscraper", "isCustom": true, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:18.354Z", - "updatedAt": "2026-02-26T11:55:18.664Z", + "createdAt": "2026-02-27T01:17:28.405Z", + "updatedAt": "2026-02-27T01:17:28.642Z", "defaultValue": null, "options": null, "settings": { "relationType": "ONE_TO_MANY", - "junctionTargetFieldId": "78472eb5-fa38-41c7-b417-02bf919ca5d2" + "junctionTargetFieldId": "af82354c-fc09-49e1-8a5c-dbf8bff020d7" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "0d3ec59b-3ed9-4e25-9882-e58f0d7be540", + "name": "previousCompanies" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "9146ab09-84d2-46e0-b68c-f4947bc6f60d", + "name": "person" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "7c515645-7061-4b47-a962-bd14f0ede49d", + "universalIdentifier": "4c561f69-7ef4-4099-9816-d51a1a501210", + "type": "RELATION", + "name": "caredForPets", + "label": "Cared For Pets", + "description": "People Pet Care Agreement", + "icon": "IconPaw", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.305Z", + "updatedAt": "2026-02-27T01:17:28.870Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY", + "junctionTargetFieldId": "73f75510-6ee9-4aaf-9d4b-1d6c4ffeabf0" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", "nameSingular": "petCareAgreement", "namePlural": "petCareAgreements" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "21a0d7ff-f393-4c07-abce-371fc5f6c9a9", - "name": "caretakers" + "id": "7c515645-7061-4b47-a962-bd14f0ede49d", + "name": "caredForPets" }, "targetFieldMetadata": { "__typename": "Field", - "id": "5d68600f-9214-42e3-a00b-fb783342e720", - "name": "pet" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a7409fe9-80ec-48cd-8f64-90dc2c36ad6a", - "universalIdentifier": "32d3967d-ec97-4685-ada4-918bd41c7e9e", - "type": "MORPH_RELATION", - "name": "polymorphicOwner", - "label": "Polymorphic Owner", - "description": "Pets tied to the Survey result", - "icon": "IconRelationManyToOne", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.931Z", - "updatedAt": "2026-02-26T11:55:17.931Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "polymorphicOwnerSurveyResultId" - }, - "isLabelSyncedWithName": false, - "morphId": "baea63a2-ea05-4647-8902-8f95cffb4223", - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": [ - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a7409fe9-80ec-48cd-8f64-90dc2c36ad6a", - "name": "polymorphicOwner" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "811875ac-af39-4cc4-8722-78829f8e8aa1", - "name": "ownedPets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "cecaf945-0861-4e33-b40c-6ebf1e2d9811", - "name": "polymorphicOwner" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "95e31525-de5a-4f2a-95df-0d9889f5ee76", - "name": "ownedPets" - } - } - ] - }, - { - "__typename": "Field", - "id": "4b45c5f3-4d27-4c1d-8176-0ab4c6f3982a", - "universalIdentifier": "607b8299-d3a1-46f0-837f-fb7451449d42", - "type": "MORPH_RELATION", - "name": "polymorphicHelper", - "label": "Polymorphic Helper", - "description": "Pets tied to the Survey result", - "icon": "IconRelationOneToMany", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.932Z", - "updatedAt": "2026-02-26T11:55:17.932Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": "94400fa5-f705-42fc-89bb-d06f453ae7fa", - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": [ - { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4b45c5f3-4d27-4c1d-8176-0ab4c6f3982a", - "name": "polymorphicHelper" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d4fcf171-377b-4529-be5a-c8cb7aaeeb00", - "name": "helpedPets" - } - }, - { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c81c422f-2e0a-42f6-980e-dcfe84a1bc7c", - "name": "polymorphicHelper" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "470a37f2-8445-4ac3-803a-fd2c79314f25", - "name": "helpedPets" - } - } - ] - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "1940411f-10e7-4d2d-8b6c-60dcce4d7147", - "createdAt": "2026-02-26T11:55:16.906Z", - "updatedAt": "2026-02-26T11:55:16.906Z", - "name": "IDX_82c02a6c94da4f260020dfb54b9", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "c0d60ad7-e3f4-43ef-b71d-c2a81cf6381d", - "fieldMetadataId": "57e748b8-faca-4b71-94fc-5accb2efcd41", - "createdAt": "2026-02-26T11:55:16.935Z", - "updatedAt": "2026-02-26T11:55:16.935Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "9c985e8f-3701-4d29-a76d-766919b668f1", - "createdAt": "2026-02-26T11:55:17.932Z", - "updatedAt": "2026-02-26T11:55:17.932Z", - "name": "IDX_4dda151ad87a8e853437e6a9905", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "f18bb295-c860-465d-b936-661c797d3844", - "fieldMetadataId": "a7409fe9-80ec-48cd-8f64-90dc2c36ad6a", - "createdAt": "2026-02-26T11:55:17.952Z", - "updatedAt": "2026-02-26T11:55:17.952Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "839b55f0-bbf9-41c8-9621-1bdb6035ae5d", - "createdAt": "2026-02-26T11:55:17.932Z", - "updatedAt": "2026-02-26T11:55:17.932Z", - "name": "IDX_0658daa5af230af11406a847c00", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "532940fb-4791-4ac1-a718-5908aa07cc58", - "fieldMetadataId": "cecaf945-0861-4e33-b40c-6ebf1e2d9811", - "createdAt": "2026-02-26T11:55:17.955Z", - "updatedAt": "2026-02-26T11:55:17.955Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "93e2f848-7d84-47aa-85cb-fb1a7bcce3da", - "universalIdentifier": "20202020-491b-4aaa-9825-afd1bae6ae00", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "5538a3b3-df69-4ad8-b66c-af7371b81b0e", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Calendar Channel Event Association", - "labelPlural": "Calendar Channel Event Associations", - "description": "Calendar Channel Event Associations", - "icon": "IconCalendar", - "fieldsList": [ - { - "__typename": "Field", - "id": "5538a3b3-df69-4ad8-b66c-af7371b81b0e", - "universalIdentifier": "20202020-c01a-4021-8a21-9edf06bfef0a", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d93a1177-f2e9-48df-b3bb-cbb728730493", - "universalIdentifier": "20202020-c01b-4022-9b22-afefd7cffefb", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9f39d125-65cf-4d04-8c36-0ec128dea691", - "universalIdentifier": "20202020-c01c-4023-8c23-bffef8dffef0", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "293659d1-2f13-4a28-8bf6-63e8c057a47c", - "universalIdentifier": "20202020-c01d-4024-9d24-cffef9effef1", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "33625824-5040-429e-a7c7-2ff5d5e68eb3", - "universalIdentifier": "8daa2bc8-bce2-4309-8a48-b929f3ee2c34", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "16a65922-cd3a-44ad-8560-f0751349d99a", - "universalIdentifier": "55d810d2-fe47-44b4-b1de-b9c32113b695", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "04932a09-63ce-4157-b4bf-13e25c50f99a", - "universalIdentifier": "4fa18346-bb2b-49b0-ab35-23df86eed1c8", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Calendar channel event association record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "aa63d1f2-77b6-4004-8461-77aa97a738b2", - "universalIdentifier": "1844a9cf-6d35-46d7-99ba-011626a6d71b", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"eventExternalId\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f04d7627-66b5-4d48-bf3a-fd09cc2b4e99", - "universalIdentifier": "20202020-9ec8-48bb-b279-21d0734a75a1", - "type": "TEXT", - "name": "eventExternalId", - "label": "Event external ID", - "description": "Event external ID", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b49e8ba5-46a6-4261-9c41-57132fbd9ce9", - "universalIdentifier": "20202020-c58f-4c69-9bf8-9518fa31aa50", - "type": "TEXT", - "name": "recurringEventExternalId", - "label": "Recurring Event ID", - "description": "Recurring Event ID", - "icon": "IconHistory", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "49543153-9edf-4626-93da-55e9aad0738a", - "universalIdentifier": "20202020-93ee-4da4-8d58-0282c4a9cb7d", - "type": "RELATION", - "name": "calendarChannel", - "label": "Channel ID", - "description": "Channel ID", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "calendarChannelId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "93e2f848-7d84-47aa-85cb-fb1a7bcce3da", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "de02d560-0a2d-44b3-b8ba-4b471f9551bb", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "49543153-9edf-4626-93da-55e9aad0738a", - "name": "calendarChannel" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d917b55a-24e7-4fbc-945d-11928e6526f3", - "name": "calendarChannelEventAssociations" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1de0a895-7219-4cdc-af9d-630935841c31", - "universalIdentifier": "20202020-5aa5-437e-bb86-f42d457783e3", - "type": "RELATION", - "name": "calendarEvent", - "label": "Event ID", - "description": "Event ID", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "calendarEventId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "93e2f848-7d84-47aa-85cb-fb1a7bcce3da", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4a6d149e-0a0d-4345-b95f-81dcac36c54c", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1de0a895-7219-4cdc-af9d-630935841c31", - "name": "calendarEvent" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4c2926bd-62c6-4bf4-b924-d1c00bd8d4a6", - "name": "calendarChannelEventAssociations" + "id": "0a27394a-f071-4155-a642-9b6700abb9d6", + "name": "caretaker" } }, "morphRelations": null @@ -10041,10 +10393,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "59c3a8b1-ee2b-4ee9-949a-07a4b5a0dc43", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_968d4fd721a78b75c13a1b9ec12", + "id": "904bdd57-6607-4df5-999c-7285aef8ee54", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_ae09ff97967369e0644bacc0fce", "indexWhereClause": null, "indexType": "BTREE", "isUnique": false, @@ -10052,891 +10404,41 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "b4b81539-95f7-40ff-962b-dec7c7f65027", - "fieldMetadataId": "49543153-9edf-4626-93da-55e9aad0738a", - "createdAt": "2026-02-26T11:55:16.311Z", - "updatedAt": "2026-02-26T11:55:16.311Z", + "id": "f8019931-1122-4704-a60a-684477e2bb3c", + "fieldMetadataId": "bb9817f1-4487-4cfc-b743-6a5cd374cd78", + "createdAt": "2026-02-27T01:17:26.894Z", + "updatedAt": "2026-02-27T01:17:26.894Z", "order": 0 } ] }, { "__typename": "Index", - "id": "60a0c1f1-3f34-4a89-822d-148ad5437492", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_733381453fca683f36c05af5478", + "id": "385f3131-682f-435d-a03b-04c552d29cbb", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_UNIQUE_87914cd3ce963115f8cb943e2ac", "indexWhereClause": null, "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "7bfa53c9-1016-4b11-bffb-ca5f069c2959", - "fieldMetadataId": "1de0a895-7219-4cdc-af9d-630935841c31", - "createdAt": "2026-02-26T11:55:16.313Z", - "updatedAt": "2026-02-26T11:55:16.313Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "universalIdentifier": "02d64c17-0045-4d79-abfc-249728d53465", - "nameSingular": "surveyResult", - "namePlural": "surveyResults", - "isCustom": true, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:17.137Z", - "updatedAt": "2026-02-26T11:55:17.137Z", - "labelIdentifierFieldMetadataId": "d74cee56-7aad-443e-bc90-82f72320d839", - "imageIdentifierFieldMetadataId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Survey result", - "labelPlural": "Survey results", - "description": "", - "icon": "IconRulerMeasure", - "fieldsList": [ - { - "__typename": "Field", - "id": "d74cee56-7aad-443e-bc90-82f72320d839", - "universalIdentifier": "212691a3-12c8-4d99-ada5-06895995036f", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "Name", - "icon": "IconAbc", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.137Z", - "updatedAt": "2026-02-26T11:55:17.137Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "228f5c2f-de00-4947-b636-ce0ffa6ba4ed", - "universalIdentifier": "1fd34ea2-886b-47b0-9335-9339139304fb", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, "isUnique": true, - "createdAt": "2026-02-26T11:55:17.137Z", - "updatedAt": "2026-02-26T11:55:17.137Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ee0f5061-a0d4-49e7-8605-9b22628f54c4", - "universalIdentifier": "ec29133a-8a2f-489f-b1da-5eda9902778a", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.137Z", - "updatedAt": "2026-02-26T11:55:17.137Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2d6d9d65-0d38-4d99-a74c-268110ed94ee", - "universalIdentifier": "f7d790fa-9ea5-4280-85fc-7d56c07f4a71", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.137Z", - "updatedAt": "2026-02-26T11:55:17.137Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "96029b8a-46c9-4890-b394-602ac64bc0ec", - "universalIdentifier": "d4fc1e60-f693-4b87-ade7-98a789b60c86", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Deletion date", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.137Z", - "updatedAt": "2026-02-26T11:55:17.137Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "cadc8811-eb98-4503-a53c-8c36628cfa41", - "universalIdentifier": "06ddaa97-d785-497b-abe1-01efbead8ced", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.137Z", - "updatedAt": "2026-02-26T11:55:17.137Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e098502a-7185-4d8f-bca5-7ea48a1c0038", - "universalIdentifier": "4a046c9d-a678-4e42-a57d-8bfe1f86deaf", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Search vector", - "icon": "IconSearch", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.137Z", - "updatedAt": "2026-02-26T11:55:17.137Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a24adb34-4c9c-44ae-bd26-b96dd790f516", - "universalIdentifier": "01303783-3297-4b87-a258-f7bd9b3b5af4", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.137Z", - "updatedAt": "2026-02-26T11:55:17.137Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e14cb5c8-305a-4a10-87ed-6cd1e44a5687", - "universalIdentifier": "845575a6-5d60-4ddd-ba09-260b3c35cda0", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.137Z", - "updatedAt": "2026-02-26T11:55:17.137Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f796a27f-d889-4abe-8765-cc8ee5923597", - "universalIdentifier": "5434684d-354f-43b5-8371-c86a64d2a4ab", - "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "SurveyResults tied to the Timeline Activity", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.137Z", - "updatedAt": "2026-02-26T11:55:17.137Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "f796a27f-d889-4abe-8765-cc8ee5923597", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", - "name": "target" + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "b83dd92f-189b-4217-82cc-8c9cbc3243df", + "fieldMetadataId": "f846b233-9ac7-4222-88d5-f06ea1d97543", + "createdAt": "2026-02-27T01:17:26.895Z", + "updatedAt": "2026-02-27T01:17:26.895Z", + "order": 0 } - }, - "morphRelations": null + ] }, - { - "__typename": "Field", - "id": "ddd3d5c6-b167-40ff-bd6a-f1aa0b54a7f7", - "universalIdentifier": "9b715d20-8c81-4282-9136-e049c5340b39", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "SurveyResults tied to the Favorite", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.138Z", - "updatedAt": "2026-02-26T11:55:17.138Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ddd3d5c6-b167-40ff-bd6a-f1aa0b54a7f7", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "87c0df39-1f38-44d9-a6e8-a8668ebed8dc", - "name": "surveyResult" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c8a2e68a-a834-4f10-be12-a079daebd391", - "universalIdentifier": "a7c9929e-5f7f-40a1-8930-99d6e03ca7d3", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "SurveyResults tied to the Attachment", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.138Z", - "updatedAt": "2026-02-26T11:55:17.138Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c8a2e68a-a834-4f10-be12-a079daebd391", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7d6a7302-efa7-4850-8287-e0959bc5dbae", - "universalIdentifier": "71ae75e7-8701-48da-a6bb-72bda5afafdb", - "type": "RELATION", - "name": "noteTargets", - "label": "Note Targets", - "description": "SurveyResults tied to the Note Target", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.138Z", - "updatedAt": "2026-02-26T11:55:17.138Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7d6a7302-efa7-4850-8287-e0959bc5dbae", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "09c697bd-0a71-4779-a6fc-9612e1cf71ca", - "universalIdentifier": "be8e8060-a9f0-4414-84d1-b6a9e8abe427", - "type": "RELATION", - "name": "taskTargets", - "label": "Task Targets", - "description": "SurveyResults tied to the Task Target", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.138Z", - "updatedAt": "2026-02-26T11:55:17.138Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "09c697bd-0a71-4779-a6fc-9612e1cf71ca", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c57ffc6f-9ca2-4291-ab3c-a6f65ed00ce8", - "universalIdentifier": "141d752c-8e8e-434f-a3ff-8000d10a4b3c", - "type": "NUMBER", - "name": "score", - "label": "Score (Float 3 decimals)", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.277Z", - "updatedAt": "2026-02-26T11:55:17.277Z", - "defaultValue": null, - "options": null, - "settings": { - "type": "number", - "dataType": "float", - "decimals": 3 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "32ad46e5-c851-4bf7-a6a8-3359db46ee08", - "universalIdentifier": "17aa743d-b3c1-4618-94d8-83080497e3f7", - "type": "NUMBER", - "name": "percentageOfCompletion", - "label": "Percentage of completion (Float 3 decimals + percentage)", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.277Z", - "updatedAt": "2026-02-26T11:55:17.277Z", - "defaultValue": null, - "options": null, - "settings": { - "type": "percentage", - "dataType": "float", - "decimals": 6 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4f33ff1a-2311-44e4-91d5-3bf2a57c1109", - "universalIdentifier": "a1e092b4-3dbe-4d57-b206-ebb2135840d7", - "type": "NUMBER", - "name": "participants", - "label": "Participants (Int)", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.277Z", - "updatedAt": "2026-02-26T11:55:17.277Z", - "defaultValue": null, - "options": null, - "settings": { - "type": "number", - "dataType": "int" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3b1d98dc-d884-4268-be12-c0150873e729", - "universalIdentifier": "b5492647-f180-4dfe-bf81-65521928e2ce", - "type": "NUMBER", - "name": "averageEstimatedNumberOfAtomsInTheUniverse", - "label": "Average estimated number of atoms in the universe (BigInt)", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.277Z", - "updatedAt": "2026-02-26T11:55:17.277Z", - "defaultValue": null, - "options": null, - "settings": { - "type": "number", - "dataType": "bigint" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "175eec50-6c7c-4a36-9440-1a538bf8a915", - "universalIdentifier": "7cdfdb9a-7737-4e2f-b289-c88b75b60dff", - "type": "TEXT", - "name": "comments", - "label": "Comments (Max 5 rows)", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.277Z", - "updatedAt": "2026-02-26T11:55:17.277Z", - "defaultValue": null, - "options": null, - "settings": { - "displayedMaxRows": 5 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "89e983f8-067c-4636-95e6-6b78a03968c7", - "universalIdentifier": "585123d1-9775-4577-a386-022a5c2b88fb", - "type": "TEXT", - "name": "shortNotes", - "label": "Short notes (Max 1 row)", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.277Z", - "updatedAt": "2026-02-26T11:55:17.277Z", - "defaultValue": null, - "options": null, - "settings": { - "displayedMaxRows": 1 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "84a36ccf-53a3-438f-aeb8-7d769502da04", - "universalIdentifier": "50016d05-e6e6-403e-a803-161e136abd11", - "type": "FILES", - "name": "files", - "label": "Files", - "description": "", - "icon": "IconFiles", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.277Z", - "updatedAt": "2026-02-26T11:55:17.277Z", - "defaultValue": null, - "options": null, - "settings": { - "maxNumberOfValues": 5 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "811875ac-af39-4cc4-8722-78829f8e8aa1", - "universalIdentifier": "8e4c41f8-9d4e-4c66-ad79-7daf2d905176", - "type": "RELATION", - "name": "ownedPets", - "label": "Owned Pets", - "description": "SurveyResults Pet", - "icon": "IconRelationOneToMany", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.932Z", - "updatedAt": "2026-02-26T11:55:17.932Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "811875ac-af39-4cc4-8722-78829f8e8aa1", - "name": "ownedPets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a7409fe9-80ec-48cd-8f64-90dc2c36ad6a", - "name": "polymorphicOwner" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d4fcf171-377b-4529-be5a-c8cb7aaeeb00", - "universalIdentifier": "c34baffd-a588-4ba5-b614-34a18c7441f3", - "type": "RELATION", - "name": "helpedPets", - "label": "Helped Pets", - "description": "SurveyResults Pet", - "icon": "IconRelationOneToMany", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.932Z", - "updatedAt": "2026-02-26T11:55:17.932Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "helpedPetsId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d4fcf171-377b-4529-be5a-c8cb7aaeeb00", - "name": "helpedPets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4b45c5f3-4d27-4c1d-8176-0ab4c6f3982a", - "name": "polymorphicHelper" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ { "__typename": "Index", - "id": "6e9f1977-554e-4024-892b-ecc7247e1557", - "createdAt": "2026-02-26T11:55:17.138Z", - "updatedAt": "2026-02-26T11:55:17.138Z", - "name": "IDX_e2a25535adda4544be555d3b6d8", + "id": "702755df-9cf4-4e51-bedd-9616d2c40083", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_bbd7aec1976fc684a0a5e4816c9", "indexWhereClause": null, "indexType": "GIN", "isUnique": false, @@ -10944,31 +10446,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "53391630-faec-4c8f-b066-c343bba34bd3", - "fieldMetadataId": "e098502a-7185-4d8f-bca5-7ea48a1c0038", - "createdAt": "2026-02-26T11:55:17.164Z", - "updatedAt": "2026-02-26T11:55:17.164Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "c731d59c-52b0-4449-b31f-23b4b059a343", - "createdAt": "2026-02-26T11:55:17.932Z", - "updatedAt": "2026-02-26T11:55:17.932Z", - "name": "IDX_f69cb5fa5975d86fddaef55f8f1", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "b953840d-45f3-45b9-b751-8a60b172bae0", - "fieldMetadataId": "d4fcf171-377b-4529-be5a-c8cb7aaeeb00", - "createdAt": "2026-02-26T11:55:17.957Z", - "updatedAt": "2026-02-26T11:55:17.957Z", + "id": "6939344f-01d0-4b00-bdee-1eb4841597e0", + "fieldMetadataId": "6054f5fa-2911-4282-84ee-7d713a069af6", + "createdAt": "2026-02-27T01:17:26.895Z", + "updatedAt": "2026-02-27T01:17:26.895Z", "order": 0 } ] @@ -10980,729 +10461,33 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", - "universalIdentifier": "20202020-62be-406c-b9ca-8caa50d51392", - "nameSingular": "workflow", - "namePlural": "workflows", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "8e87df5e-5cb8-4245-91d2-457ba9175caf", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": "W", - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Workflow", - "labelPlural": "Workflows", - "description": "A workflow", - "icon": "IconSettingsAutomation", - "fieldsList": [ - { - "__typename": "Field", - "id": "4bbb2c4c-3ae3-4054-b8dc-a4b1f9213fd8", - "universalIdentifier": "20202020-f02a-4181-8a81-efabcdefabcd", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3eeb8f69-e35e-4a9c-9d4b-7649aab71175", - "universalIdentifier": "20202020-f02b-4182-9b82-fabcdefabcde", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d1088afc-5769-47f5-b95b-89941ce32c09", - "universalIdentifier": "20202020-f02c-4183-8c83-abcdefabcdef", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7d2a5ace-989f-4df6-bfb4-0425ea0ac702", - "universalIdentifier": "20202020-f02d-4184-9d84-bcdefabcdefa", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8e87df5e-5cb8-4245-91d2-457ba9175caf", - "universalIdentifier": "20202020-b3d3-478f-acc0-5d901e725b20", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "The workflow name", - "icon": "IconSettingsAutomation", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "405a6c74-a1ba-4def-9ae6-6213bed30086", - "universalIdentifier": "20202020-326a-4fba-8639-3456c0a169e8", - "type": "TEXT", - "name": "lastPublishedVersionId", - "label": "Last published Version Id", - "description": "The workflow last published version id", - "icon": "IconVersions", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f373b556-8e51-4d91-adb6-a08cac0897b0", - "universalIdentifier": "20202020-357c-4432-8c50-8c31b4a552d9", - "type": "MULTI_SELECT", - "name": "statuses", - "label": "Statuses", - "description": "The current statuses of the workflow versions", - "icon": "IconStatusChange", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": [ - { - "id": "20202020-e9d8-41df-8262-31bb04948366", - "color": "yellow", - "label": "Draft", - "value": "DRAFT", - "position": 0 - }, - { - "id": "20202020-e47e-4d57-913a-7b29e1f140ef", - "color": "green", - "label": "Active", - "value": "ACTIVE", - "position": 1 - }, - { - "id": "20202020-bdfa-4d35-bf5c-e410cccfc765", - "color": "gray", - "label": "Deactivated", - "value": "DEACTIVATED", - "position": 2 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f34436e3-f353-432f-84a8-5fd97fdd1898", - "universalIdentifier": "20202020-39b0-4d8c-8c5f-33c2326deb5f", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Workflow record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b39e710b-6003-4feb-a000-f56721367e77", - "universalIdentifier": "20202020-6007-401a-8aa5-e6f48581a6f3", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b3b22c16-9a17-498a-b2c9-acc659fc192d", - "universalIdentifier": "3559831e-caf2-4eb5-9db1-b47bf968c774", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "95ec7b51-87db-4d28-aa5f-b1e0c431f67f", - "universalIdentifier": "20202020-535d-4ffa-b7f3-4fa0d5da1b7a", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9ff8a194-bd02-47c9-b46f-306b3a5d2053", - "universalIdentifier": "20202020-4a8c-4e2d-9b1c-7e5f3a2b4c6d", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "Attachments linked to the workflow", - "icon": "IconFileUpload", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "9ff8a194-bd02-47c9-b46f-306b3a5d2053", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5bac4d14-e0b1-465b-93bc-6a7cb283d001", - "universalIdentifier": "20202020-c554-4c41-be7a-cf9cd4b0d512", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Favorites linked to the workflow", - "icon": "IconHeart", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5bac4d14-e0b1-465b-93bc-6a7cb283d001", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "e99d4788-7cec-4349-a01c-56c494a06f23", - "name": "workflow" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "712f749d-999a-4a46-b904-c4d83a84f4ab", - "universalIdentifier": "20202020-906e-486a-a798-131a5f081faf", - "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "Timeline activities linked to the workflow", - "icon": "IconTimelineEvent", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "712f749d-999a-4a46-b904-c4d83a84f4ab", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7a5b8146-e866-4789-9d1c-168182c85901", - "universalIdentifier": "20202020-9432-416e-8f3c-27ee3153d099", - "type": "RELATION", - "name": "versions", - "label": "Versions", - "description": "Workflow versions linked to the workflow.", - "icon": "IconVersions", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7a5b8146-e866-4789-9d1c-168182c85901", - "name": "versions" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3e2cb808-9b0b-4251-ab27-18d907f1ac70", - "name": "workflow" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fced1683-e122-4618-9f14-fc4ac2e6ebb9", - "universalIdentifier": "20202020-759b-4340-b58b-e73595c4df4f", - "type": "RELATION", - "name": "runs", - "label": "Runs", - "description": "Workflow runs linked to the workflow.", - "icon": "IconRun", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "fced1683-e122-4618-9f14-fc4ac2e6ebb9", - "name": "runs" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "459f0273-b38a-454e-b910-937e6ea1580e", - "name": "workflow" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "51da5dcd-cb72-420d-927c-cdd4fa08f8f9", - "universalIdentifier": "20202020-3319-4234-a34c-117ecad2b8a9", - "type": "RELATION", - "name": "automatedTriggers", - "label": "Automated Triggers", - "description": "Workflow automated triggers linked to the workflow.", - "icon": "IconSettingsAutomation", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "a4301009-69b3-4dac-97cd-351a4c49b4ff", - "nameSingular": "workflowAutomatedTrigger", - "namePlural": "workflowAutomatedTriggers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "51da5dcd-cb72-420d-927c-cdd4fa08f8f9", - "name": "automatedTriggers" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ef27f72a-b310-485f-8b53-d17847253afd", - "name": "workflow" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "88310ace-9a2a-48a8-996a-de7464cf5a40", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_d09fc4b1711543f42c127270f1e", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "be394871-6b82-4d2d-ad8d-ea9a2a712ef9", - "fieldMetadataId": "95ec7b51-87db-4d28-aa5f-b1e0c431f67f", - "createdAt": "2026-02-26T11:55:16.408Z", - "updatedAt": "2026-02-26T11:55:16.408Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "823cfbad-68a1-4475-aa2f-7d0588506b6e", - "universalIdentifier": "20202020-a433-4456-aa2d-fd9cb26b774a", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants", + "id": "7470a75c-8b34-4fba-8258-f33a6e645e1c", + "universalIdentifier": "20202020-977e-46b2-890b-c3002ddfd5c5", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts", "isCustom": false, "isRemote": false, "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "263fa07d-7026-4bcb-9c73-6f2c88e9e756", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "b9ef7340-2030-461d-9852-07de860559f5", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, "duplicateCriteria": null, - "labelSingular": "Message Participant", - "labelPlural": "Message Participants", - "description": "Message Participants", - "icon": "IconUserCircle", + "labelSingular": "Connected Account", + "labelPlural": "Connected Accounts", + "description": "A connected account", + "icon": "IconAt", "fieldsList": [ { "__typename": "Field", - "id": "0117dcbe-4903-484a-9ad1-29a755ced221", - "universalIdentifier": "20202020-b04a-40e1-8ae1-1a2b3c4d5e6f", + "id": "756901a1-cb8d-4cf1-868a-316388872864", + "universalIdentifier": "20202020-c06a-4071-8a71-5c6d7e8f9aab", "type": "UUID", "name": "id", "label": "Id", @@ -11714,21 +10499,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "768d3d65-18e9-478a-a06c-797c0e5199e4", - "universalIdentifier": "20202020-b04b-40e2-9be2-2b3c4d5e6f7a", + "id": "feb746a1-2eb5-491f-8b27-d9554147687c", + "universalIdentifier": "20202020-c06b-4072-9b72-6d7e8f9aabbc", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -11740,8 +10525,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -11749,14 +10534,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "bf313b51-f67b-4acd-8ba9-b8617dba47cc", - "universalIdentifier": "20202020-b04c-40e3-8ce3-3c4d5e6f7a8b", + "id": "d16b097e-aab2-469f-a0eb-997e6ff73835", + "universalIdentifier": "20202020-c06c-4073-8c73-7e8f9aabbccd", "type": "DATE_TIME", "name": "updatedAt", "label": "Last update", @@ -11768,8 +10553,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -11777,14 +10562,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "c79f59c1-c88f-4067-8d9a-dbf587a39f34", - "universalIdentifier": "20202020-b04d-40e4-9de4-4d5e6f7a8b9c", + "id": "68e75c2e-08e0-4d1d-8096-5aaffd1af1ed", + "universalIdentifier": "20202020-c06d-4074-9d74-8f9aabbccdde", "type": "DATE_TIME", "name": "deletedAt", "label": "Deleted at", @@ -11796,8 +10581,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -11805,14 +10590,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "0278bafe-4665-417e-ae6d-06b1569fa704", - "universalIdentifier": "e0e6aa04-6ad5-4d12-8799-6febf00452c1", + "id": "c4f45a0e-f6a1-44f0-bee4-168dd5120ed9", + "universalIdentifier": "e09c2463-9ca6-4004-97ce-6039e3161a5d", "type": "ACTOR", "name": "createdBy", "label": "Created by", @@ -11824,8 +10609,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -11835,14 +10620,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "8e4b3099-1f38-45e4-b4f7-5de943f93cbf", - "universalIdentifier": "6c90fd49-22b8-4f91-b4eb-4b9af630e988", + "id": "6dc4a26d-b061-42a5-a8d5-07e832cb273f", + "universalIdentifier": "0a84c0e1-f9fc-47d5-8ac9-58538e50a9f9", "type": "ACTOR", "name": "updatedBy", "label": "Updated by", @@ -11854,8 +10639,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -11865,18 +10650,18 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "31cf7ff6-347e-45e8-a729-24531df00f66", - "universalIdentifier": "f49ca74e-dcdf-445d-a707-3c22869b4e6c", + "id": "d874ba9a-cb95-4e0a-8abb-f6c14d32d087", + "universalIdentifier": "66b7bc3e-c99e-42b6-82e6-6f43142c0f2f", "type": "POSITION", "name": "position", "label": "Position", - "description": "Message Participant record position", + "description": "Connected account record position", "icon": "IconHierarchy2", "isCustom": false, "isActive": true, @@ -11884,21 +10669,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "1143a734-6e29-47be-a5d9-9630d15264ad", - "universalIdentifier": "80fec74f-cda7-46bd-ae37-8998bd4f992b", + "id": "b0236a2e-922e-4227-897c-d7eb87a5f55d", + "universalIdentifier": "140767fe-0aa4-4573-a0bd-67cb657c9452", "type": "TS_VECTOR", "name": "searchVector", "label": "Search vector", @@ -11910,8 +10695,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -11920,125 +10705,386 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "8b29d96a-d411-4729-8b87-c8631922e6a6", - "universalIdentifier": "20202020-65d1-42f4-8729-c9ec1f52aecd", - "type": "SELECT", - "name": "role", - "label": "Role", - "description": "Role", - "icon": "IconAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'FROM'", - "options": [ - { - "id": "20202020-761b-4f02-bc28-795f9a67be48", - "color": "green", - "label": "From", - "value": "FROM", - "position": 0 - }, - { - "id": "20202020-86bc-4cf1-a887-c992c1a0f97f", - "color": "blue", - "label": "To", - "value": "TO", - "position": 1 - }, - { - "id": "20202020-fc2b-431f-805c-650ab60c4f88", - "color": "orange", - "label": "Cc", - "value": "CC", - "position": 2 - }, - { - "id": "20202020-fc9c-436e-842a-7e3a9b92766f", - "color": "red", - "label": "Bcc", - "value": "BCC", - "position": 3 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "263fa07d-7026-4bcb-9c73-6f2c88e9e756", - "universalIdentifier": "20202020-2456-464e-b422-b965a4db4a0b", + "id": "b9ef7340-2030-461d-9852-07de860559f5", + "universalIdentifier": "20202020-c804-4a50-bb05-b3a9e24f1dec", "type": "TEXT", "name": "handle", - "label": "Handle", - "description": "Handle", - "icon": "IconAt", + "label": "handle", + "description": "The account handle (email, username, phone number, etc.)", + "icon": "IconMail", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "640557f8-78f2-4d12-9d61-811cd143c684", - "universalIdentifier": "20202020-36dd-4a4f-ac02-228425be9fac", + "id": "d20eb007-9100-43ae-aaa7-77be2d0473c5", + "universalIdentifier": "20202020-ebb0-4516-befc-a9e95935efd5", "type": "TEXT", - "name": "displayName", - "label": "Display Name", - "description": "Display Name", - "icon": "IconUser", + "name": "provider", + "label": "provider", + "description": "The account provider", + "icon": "IconSettings", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'google'", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8cb073d9-a38b-4977-8415-fc271c0ced61", + "universalIdentifier": "20202020-707b-4a0a-8753-2ad42efe1e29", + "type": "TEXT", + "name": "accessToken", + "label": "Access Token", + "description": "Messaging provider access token", + "icon": "IconKey", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "8a10e79e-bd6d-4fe1-888f-9f79bd6d6a31", - "universalIdentifier": "20202020-985b-429a-9db9-9e55f4898a2a", + "id": "475864f2-0ff0-49e1-8c42-ee1ecade168c", + "universalIdentifier": "20202020-532d-48bd-80a5-c4be6e7f6e49", + "type": "TEXT", + "name": "refreshToken", + "label": "Refresh Token", + "description": "Messaging provider refresh token", + "icon": "IconKey", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8346c1e0-c501-49bf-ba94-e88475aa7e1b", + "universalIdentifier": "20202020-115c-4a87-b50f-ac4367a971b9", + "type": "TEXT", + "name": "lastSyncHistoryId", + "label": "Last sync history ID", + "description": "Last sync history ID", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "cf7f9413-3dc2-4eb0-865c-f1ac5d0adb98", + "universalIdentifier": "20202020-d268-4c6b-baff-400d402b430a", + "type": "DATE_TIME", + "name": "authFailedAt", + "label": "Auth failed at", + "description": "Auth failed at", + "icon": "IconX", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "7df95e62-a797-491a-bf7f-ca8b55d67fc2", + "universalIdentifier": "20202020-aa5e-4e85-903b-fdf90a941941", + "type": "DATE_TIME", + "name": "lastCredentialsRefreshedAt", + "label": "Last credentials refreshed at", + "description": "Last credentials refreshed at", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "2a806817-2395-4cd6-8cab-f16b61a09f23", + "universalIdentifier": "20202020-8a3d-46be-814f-6228af16c47b", + "type": "TEXT", + "name": "handleAliases", + "label": "Handle Aliases", + "description": "Handle Aliases", + "icon": "IconMail", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "35915e09-d2d5-4401-98b4-f697ab9a6876", + "universalIdentifier": "20202020-8a3d-46be-814f-6228af16c47c", + "type": "ARRAY", + "name": "scopes", + "label": "Scopes", + "description": "Scopes", + "icon": "IconSettings", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a107fa6b-cc91-47af-b577-77db2af0bdb9", + "universalIdentifier": "20202020-a1b2-46be-814f-6228af16c481", + "type": "RAW_JSON", + "name": "connectionParameters", + "label": "Custom Connection Parameters", + "description": "JSON object containing custom connection parameters", + "icon": "IconSettings", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "583f6285-3cb1-4358-be64-339984436045", + "universalIdentifier": "20202020-af4a-47bb-99ec-51911c1d3977", "type": "RELATION", - "name": "message", - "label": "Message", - "description": "Message", + "name": "calendarChannels", + "label": "Calendar Channels", + "description": "Calendar Channels", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "7470a75c-8b34-4fba-8258-f33a6e645e1c", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "28d82d16-3079-4669-a560-cc3e7eb0cdcb", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "583f6285-3cb1-4358-be64-339984436045", + "name": "calendarChannels" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "2d5fa76f-3b75-4f23-83fa-39db5ed38f57", + "name": "connectedAccount" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "82974602-49aa-43a9-8623-28a0222cc204", + "universalIdentifier": "20202020-3517-4896-afac-b1d0aa362af6", + "type": "RELATION", + "name": "accountOwner", + "label": "Account Owner", + "description": "Account Owner", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "accountOwnerId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "7470a75c-8b34-4fba-8258-f33a6e645e1c", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "82974602-49aa-43a9-8623-28a0222cc204", + "name": "accountOwner" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "c27331d0-0ae9-4c42-ae82-5b518cf9ec44", + "name": "connectedAccounts" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "5cbe30fd-39bd-4f9b-a79a-6d96a012b445", + "universalIdentifier": "20202020-24f7-4362-8468-042204d1e445", + "type": "RELATION", + "name": "messageChannels", + "label": "Message Channels", + "description": "Message Channels", "icon": "IconMessage", "isCustom": false, "isActive": true, @@ -12046,2168 +11092,40 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageId" + "relationType": "ONE_TO_MANY" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", - "type": "MANY_TO_ONE", + "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "823cfbad-68a1-4475-aa2f-7d0588506b6e", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" + "id": "7470a75c-8b34-4fba-8258-f33a6e645e1c", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" }, "targetObjectMetadata": { "__typename": "Object", - "id": "575b32e0-0a09-4c20-bb75-70e1ca21eaf7", - "nameSingular": "message", - "namePlural": "messages" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "8a10e79e-bd6d-4fe1-888f-9f79bd6d6a31", - "name": "message" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "371daa7c-84ad-4066-a321-0a3c5e3758dc", - "name": "messageParticipants" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c5dd8967-a6bb-4404-af3b-1c8089668eb6", - "universalIdentifier": "20202020-249d-4e0f-82cd-1b9df5cd3da2", - "type": "RELATION", - "name": "person", - "label": "Person", - "description": "Person", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "823cfbad-68a1-4475-aa2f-7d0588506b6e", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c5dd8967-a6bb-4404-af3b-1c8089668eb6", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "9cee645e-9ac4-41b7-8f53-722e3be6a4e2", - "name": "messageParticipants" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f21fd1f3-c782-46ab-851a-2c25e710a375", - "universalIdentifier": "20202020-77a7-4845-99ed-1bcbb478be6f", - "type": "RELATION", - "name": "workspaceMember", - "label": "Workspace Member", - "description": "Workspace member", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workspaceMemberId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "823cfbad-68a1-4475-aa2f-7d0588506b6e", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "f21fd1f3-c782-46ab-851a-2c25e710a375", - "name": "workspaceMember" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "bc7e17df-a3ae-442f-beea-40a126f55a4c", - "name": "messageParticipants" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "6b85cf86-4f98-4949-873f-b5961b011e28", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_19ad12ae96a5d4357ff3a15ba2b", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "039425f2-90d9-44ec-8c24-9817163b6599", - "fieldMetadataId": "8a10e79e-bd6d-4fe1-888f-9f79bd6d6a31", - "createdAt": "2026-02-26T11:55:16.384Z", - "updatedAt": "2026-02-26T11:55:16.384Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "32324c33-bbad-4239-a732-e3f952aa8a85", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_47a5ea9e149973d6ef980bdc4f1", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "3099b6ef-6a3c-42c0-a705-3c95bbc3f540", - "fieldMetadataId": "c5dd8967-a6bb-4404-af3b-1c8089668eb6", - "createdAt": "2026-02-26T11:55:16.385Z", - "updatedAt": "2026-02-26T11:55:16.385Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "a9990b6a-5945-46f1-93b4-ba4da1f3c2e1", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_7a56509bca48a709378017a9135", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "56c80ddb-08cd-4d5e-8221-8c69d9199a31", - "fieldMetadataId": "f21fd1f3-c782-46ab-851a-2c25e710a375", - "createdAt": "2026-02-26T11:55:16.385Z", - "updatedAt": "2026-02-26T11:55:16.385Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "universalIdentifier": "20202020-ab56-4e05-92a3-e2414a499860", - "nameSingular": "favorite", - "namePlural": "favorites", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "a9ad29a0-89d4-4348-b78a-f757142e7ea0", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Favorite", - "labelPlural": "Favorites", - "description": "A favorite", - "icon": "IconHeart", - "fieldsList": [ - { - "__typename": "Field", - "id": "a9ad29a0-89d4-4348-b78a-f757142e7ea0", - "universalIdentifier": "20202020-f01a-4091-8a91-ddeeffaabbcc", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "34f5c295-0f46-46b5-9026-1e3cc8b3af61", - "universalIdentifier": "20202020-f01b-4092-9b92-eeffaabbccdd", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "94f89b5c-4b21-4398-86d9-d5d956a73124", - "universalIdentifier": "20202020-f01c-4093-8c93-ffaabbccddee", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c3ec08b7-330d-463a-972c-472fe3a49231", - "universalIdentifier": "20202020-f01d-4094-9d94-aabbccddeeff", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "90bf40a4-b7d9-479f-be67-89c1931f7df1", - "universalIdentifier": "6440dc3d-fa50-49cc-abd3-98eeccd79288", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e7027444-5488-4e78-aa0b-950bc2fe0047", - "universalIdentifier": "6c117b1a-0470-499b-8fcb-d9059eafbd43", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e4246f59-fb3f-44ab-baac-5547a5616970", - "universalIdentifier": "20202020-dd26-42c6-8c3c-2a7598c204f6", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Favorite position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5054108d-69f9-4792-93d1-a2fccc47979e", - "universalIdentifier": "cbb27ea1-5cf8-4fed-9e0a-e4152815bd6e", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4fa8e932-cba7-401b-954d-4966081b3d73", - "universalIdentifier": "20202020-5a93-4fa9-acce-e73481a0bbdf", - "type": "UUID", - "name": "viewId", - "label": "ViewId", - "description": "ViewId", - "icon": "IconView", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c9226dde-adb1-47c3-b8bc-0defd0a4ca0b", - "universalIdentifier": "20202020-cff5-4682-8bf9-069169e08279", - "type": "RELATION", - "name": "company", - "label": "Company", - "description": "Favorite company", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "companyId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c9226dde-adb1-47c3-b8bc-0defd0a4ca0b", - "name": "company" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1b604037-c9a2-4e35-b218-f59dd217c442", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "70be7142-93b4-4771-8f25-7df6de222149", - "universalIdentifier": "20202020-6ef9-45e4-b440-cc986f687c91", - "type": "RELATION", - "name": "dashboard", - "label": "Dashboard", - "description": "Favorite dashboard", - "icon": "IconLayoutDashboard", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "dashboardId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "11054c51-6e7a-44a1-9d40-03ce04f21fbe", - "nameSingular": "dashboard", - "namePlural": "dashboards" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "70be7142-93b4-4771-8f25-7df6de222149", - "name": "dashboard" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "102ee85a-e3f1-4e5f-ba7d-fbf0676b2609", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e56f7c0a-383a-4696-87bf-a2517f815a1c", - "universalIdentifier": "20202020-ce63-49cb-9676-fdc0c45892cd", - "type": "RELATION", - "name": "forWorkspaceMember", - "label": "Workspace Member", - "description": "Favorite workspace member", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "forWorkspaceMemberId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e56f7c0a-383a-4696-87bf-a2517f815a1c", - "name": "forWorkspaceMember" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1dccd03c-2a89-467a-8291-406d67cb8672", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a035a64c-ff08-4415-b60b-e6427e12fad4", - "universalIdentifier": "20202020-c428-4f40-b6f3-86091511c41c", - "type": "RELATION", - "name": "person", - "label": "Person", - "description": "Favorite person", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a035a64c-ff08-4415-b60b-e6427e12fad4", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "38b54144-53ed-474b-adb2-d5ad43c65398", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "817a93f7-3d8c-47cb-b5ca-e9b90b5ed7bf", - "universalIdentifier": "20202020-dabc-48e1-8318-2781a2b32aa2", - "type": "RELATION", - "name": "opportunity", - "label": "Opportunity", - "description": "Favorite opportunity", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "opportunityId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "817a93f7-3d8c-47cb-b5ca-e9b90b5ed7bf", - "name": "opportunity" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "350a3c5f-7db2-4b1c-8d6a-873aa70fd7b2", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e99d4788-7cec-4349-a01c-56c494a06f23", - "universalIdentifier": "20202020-b11b-4dc8-999a-6bd0a947b463", - "type": "RELATION", - "name": "workflow", - "label": "Workflow", - "description": "Favorite workflow", - "icon": "IconSettingsAutomation", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e99d4788-7cec-4349-a01c-56c494a06f23", - "name": "workflow" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5bac4d14-e0b1-465b-93bc-6a7cb283d001", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2dcedf0e-9e22-413c-93b3-aee7e8d78b9d", - "universalIdentifier": "20202020-e1b8-4caf-b55a-3ab4d4cbcd21", - "type": "RELATION", - "name": "workflowVersion", - "label": "Workflow", - "description": "Favorite workflow version", - "icon": "IconSettingsAutomation", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowVersionId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "2dcedf0e-9e22-413c-93b3-aee7e8d78b9d", - "name": "workflowVersion" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "f29c7287-04f9-4a25-a548-f87f6c10c4e8", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "06307fef-1bb9-414b-ba29-e66bce2c416e", - "universalIdentifier": "20202020-db5a-4fe4-9a13-9afa22b1e762", - "type": "RELATION", - "name": "workflowRun", - "label": "Workflow", - "description": "Favorite workflow run", - "icon": "IconSettingsAutomation", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowRunId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "06307fef-1bb9-414b-ba29-e66bce2c416e", - "name": "workflowRun" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "c5b2856a-7a7b-4b3d-a71f-c2b579ce9756", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4de6c38e-e41e-462e-b9d8-1476bfc940f8", - "universalIdentifier": "20202020-1b1b-4b3b-8b1b-7f8d6a1d7d5c", - "type": "RELATION", - "name": "task", - "label": "Task", - "description": "Favorite task", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "taskId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4de6c38e-e41e-462e-b9d8-1476bfc940f8", - "name": "task" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "9df50dd1-4773-439b-abff-3f849b95dba3", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "27ea9991-d5bb-44e1-bf1a-ecc6ca0528cb", - "universalIdentifier": "20202020-1f25-43fe-8b00-af212fdde824", - "type": "RELATION", - "name": "note", - "label": "Note", - "description": "Favorite note", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "noteId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", - "nameSingular": "note", - "namePlural": "notes" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "27ea9991-d5bb-44e1-bf1a-ecc6ca0528cb", - "name": "note" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "972ed175-3bb8-44c8-8a15-6110a752c232", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a7b7f354-5af5-4b4b-9299-8e0d73345b3c", - "universalIdentifier": "20202020-f658-4d12-8b4d-248356aa4bd9", - "type": "RELATION", - "name": "favoriteFolder", - "label": "Favorite Folder", - "description": "The folder this favorite belongs to", - "icon": "IconFolder", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "favoriteFolderId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5b6da133-e4a5-4ce3-b0c4-5926f064e73e", - "nameSingular": "favoriteFolder", - "namePlural": "favoriteFolders" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a7b7f354-5af5-4b4b-9299-8e0d73345b3c", - "name": "favoriteFolder" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "bb116b78-1f4e-4243-b6e6-2da509a3ea1a", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "58e2d91e-e2a0-4d3a-8068-b874b836e10c", - "universalIdentifier": "19d52aec-fd4d-419b-b009-df0373998f4b", - "type": "RELATION", - "name": "rocket", - "label": "Rocket", - "description": "Favorites Rocket", - "icon": "IconHeart", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.644Z", - "updatedAt": "2026-02-26T11:55:16.644Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "rocketId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "58e2d91e-e2a0-4d3a-8068-b874b836e10c", - "name": "rocket" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "cc6bb53d-87a4-43cd-b6dd-465ca1465010", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a2e8de23-9555-4d67-a437-23165201156d", - "universalIdentifier": "40dbdada-3714-464a-b29d-671519a50c11", - "type": "RELATION", - "name": "pet", - "label": "Pet", - "description": "Favorites Pet", - "icon": "IconHeart", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:16.906Z", - "updatedAt": "2026-02-26T11:55:16.906Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "petId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a2e8de23-9555-4d67-a437-23165201156d", - "name": "pet" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a174eaf8-ae73-43e6-9279-fffe37ebfd62", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "87c0df39-1f38-44d9-a6e8-a8668ebed8dc", - "universalIdentifier": "cbd838e6-bdaf-42fb-a830-73d2bfcb7b00", - "type": "RELATION", - "name": "surveyResult", - "label": "SurveyResult", - "description": "Favorites Survey result", - "icon": "IconHeart", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.138Z", - "updatedAt": "2026-02-26T11:55:17.138Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "surveyResultId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "87c0df39-1f38-44d9-a6e8-a8668ebed8dc", - "name": "surveyResult" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ddd3d5c6-b167-40ff-bd6a-f1aa0b54a7f7", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f5775223-1bbc-43c0-8a01-832f9a9aae94", - "universalIdentifier": "d5bb45e5-6dbc-4bec-9c8e-18e5e1af7295", - "type": "RELATION", - "name": "employmentHistory", - "label": "EmploymentHistory", - "description": "Favorites Employment History", - "icon": "IconHeart", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.357Z", - "updatedAt": "2026-02-26T11:55:17.357Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "employmentHistoryId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "f5775223-1bbc-43c0-8a01-832f9a9aae94", - "name": "employmentHistory" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d08d0762-aee7-496e-ac77-94c6bcf6e062", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7031369f-3903-4bb7-b630-8f6ec11730cc", - "universalIdentifier": "b05cddda-43d3-4e55-8fb1-b2d1bff71620", - "type": "RELATION", - "name": "petCareAgreement", - "label": "PetCareAgreement", - "description": "Favorites Pet Care Agreement", - "icon": "IconHeart", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.574Z", - "updatedAt": "2026-02-26T11:55:17.574Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "petCareAgreementId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7031369f-3903-4bb7-b630-8f6ec11730cc", - "name": "petCareAgreement" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "581a210e-ae07-4c8f-9e75-21abe6548bbf", - "name": "favorites" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "8b05c498-c12e-4ed1-be92-6a8ba1c199ae", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_e6a755f59ac856c2af85d0b1857", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "790a005d-1e77-477b-9715-55f209bc11fd", - "fieldMetadataId": "e56f7c0a-383a-4696-87bf-a2517f815a1c", - "createdAt": "2026-02-26T11:55:16.332Z", - "updatedAt": "2026-02-26T11:55:16.332Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "14c455a3-9330-4301-88ca-c266d9756bb9", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_c6a04c62f1b835de81b87c8d5cb", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "22234a93-2c80-4333-ad21-0dc08c483e43", - "fieldMetadataId": "a035a64c-ff08-4415-b60b-e6427e12fad4", - "createdAt": "2026-02-26T11:55:16.333Z", - "updatedAt": "2026-02-26T11:55:16.333Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "1df4a4f2-8d2e-425b-915c-4a2a1a72eada", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_f54929018ffb0a56df35a15ee1a", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "5b74d97a-6c54-4c2c-8057-4f9b0df37ac6", - "fieldMetadataId": "c9226dde-adb1-47c3-b8bc-0defd0a4ca0b", - "createdAt": "2026-02-26T11:55:16.335Z", - "updatedAt": "2026-02-26T11:55:16.335Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "07a9c7f0-56fb-4620-8e27-806d23a77c0e", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_03c5b5ea0ebe0cdd54c16f01cd4", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "62d546f2-1909-495d-87e5-4ace197e6e7b", - "fieldMetadataId": "a7b7f354-5af5-4b4b-9299-8e0d73345b3c", - "createdAt": "2026-02-26T11:55:16.338Z", - "updatedAt": "2026-02-26T11:55:16.338Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "caf045c6-9daa-46d8-b1ed-c650054193b5", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_2ef95462446ad1fad48894bd459", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "2f95dec1-3b5c-461c-aee9-17ff31e4cae3", - "fieldMetadataId": "817a93f7-3d8c-47cb-b5ca-e9b90b5ed7bf", - "createdAt": "2026-02-26T11:55:16.339Z", - "updatedAt": "2026-02-26T11:55:16.339Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "94f105f6-959b-4516-83f5-8e2dec4421e8", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_7b93282d4e9b5a9851d07829996", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "85b14551-8a5c-4dcb-af44-e5dc850dbc0a", - "fieldMetadataId": "e99d4788-7cec-4349-a01c-56c494a06f23", - "createdAt": "2026-02-26T11:55:16.341Z", - "updatedAt": "2026-02-26T11:55:16.341Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "f18df5d9-82aa-454b-a5c9-a57fdc555fb5", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_352fe024686b6bcf5e7e1b65449", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "0a433e88-db13-4b9c-8747-1b8fe8d3438a", - "fieldMetadataId": "2dcedf0e-9e22-413c-93b3-aee7e8d78b9d", - "createdAt": "2026-02-26T11:55:16.342Z", - "updatedAt": "2026-02-26T11:55:16.342Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "01712aa1-3b68-423c-a564-545f0fcfe40a", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_17f260b2397f21011117688a00c", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "42894825-8253-4fa1-aa1b-b4babc9d7a01", - "fieldMetadataId": "06307fef-1bb9-414b-ba29-e66bce2c416e", - "createdAt": "2026-02-26T11:55:16.344Z", - "updatedAt": "2026-02-26T11:55:16.344Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "5a4ffb6e-1176-48f5-9578-bbf4738a85aa", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_f08a4bc49e7422db941d7c1be50", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "29b97d6f-b214-457f-8da2-2ef8a1613d02", - "fieldMetadataId": "4de6c38e-e41e-462e-b9d8-1476bfc940f8", - "createdAt": "2026-02-26T11:55:16.346Z", - "updatedAt": "2026-02-26T11:55:16.346Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "23c44924-2011-4af3-9620-a524c27e1e05", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_36f8b958533baaeabdde3479b31", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "b1dcec05-636c-4a1a-a644-ebbc0288fbdc", - "fieldMetadataId": "27ea9991-d5bb-44e1-bf1a-ecc6ca0528cb", - "createdAt": "2026-02-26T11:55:16.348Z", - "updatedAt": "2026-02-26T11:55:16.348Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "69ed9542-8aeb-46e3-9aa4-a80befc3c478", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_d85e3f572ec0d3c406cc58f79af", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "6c1d7199-f83b-4d5a-9fd3-dc4bb443f4c6", - "fieldMetadataId": "70be7142-93b4-4771-8f25-7df6de222149", - "createdAt": "2026-02-26T11:55:16.350Z", - "updatedAt": "2026-02-26T11:55:16.350Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "5cde5eae-bc35-4966-86c1-477a74a657ff", - "universalIdentifier": "20202020-4955-4fd9-8e59-2dbd373f2a46", - "nameSingular": "messageFolder", - "namePlural": "messageFolders", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "0ea1428e-d77a-4be1-a2d3-ab236ce7d7d3", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Message Folder", - "labelPlural": "Message Folders", - "description": "Message Folders", - "icon": "IconFolder", - "fieldsList": [ - { - "__typename": "Field", - "id": "0ea1428e-d77a-4be1-a2d3-ab236ce7d7d3", - "universalIdentifier": "20202020-b03a-40d1-8ad1-dcedfefaabbc", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "45651dd2-d3e1-484c-80b5-34f39dad9d7c", - "universalIdentifier": "20202020-b03b-40d2-9bd2-edfefaabbccd", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9a5ea53a-f92f-4a33-b030-6012ba779902", - "universalIdentifier": "20202020-b03c-40d3-8cd3-fefaabbccdde", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3bc2ae36-346a-4c34-a0f5-e2c1ebe084a5", - "universalIdentifier": "20202020-b03d-40d4-9dd4-faabbccddeef", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c707d943-5e5c-4908-9235-bbe5cc5b643b", - "universalIdentifier": "bfe19f84-b640-4ce3-b771-4e7bf18bad14", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c53ed058-c2ae-45f9-82a3-35fdcdf46883", - "universalIdentifier": "7ec7eea8-8715-4656-a602-3cb4256aaca1", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f13af197-652d-4cfe-9aa5-727ad26bb962", - "universalIdentifier": "5317d4f4-12c5-469d-8e47-0f3b2ffc95b4", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Message Folder record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "65195130-3f2e-4eed-9af2-fa4804c90cf6", - "universalIdentifier": "5f2d3937-bafd-4d71-b4cb-b34037efd2e1", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5cbabe02-d9f9-4f69-bcee-5470748b71f2", - "universalIdentifier": "20202020-7cf8-40bc-a681-b80b771449b7", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "Folder name", - "icon": "IconFolder", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f9fe1330-ac58-4a04-9c5b-e095c851d693", - "universalIdentifier": "20202020-98cd-49ed-8dfc-cb5796400e64", - "type": "TEXT", - "name": "syncCursor", - "label": "Sync Cursor", - "description": "Sync Cursor", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ab34cc08-27d7-438d-84cf-b1d29e7ee22a", - "universalIdentifier": "20202020-2af5-4a25-b2de-3c9386da941b", - "type": "BOOLEAN", - "name": "isSentFolder", - "label": "Is Sent Folder", - "description": "Is Sent Folder", - "icon": "IconCheck", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "55b3e266-344e-4fce-9c82-df1be57df457", - "universalIdentifier": "20202020-764f-4e09-8f95-cd46b6bfe3c4", - "type": "BOOLEAN", - "name": "isSynced", - "label": "Is Synced", - "description": "Is Synced", - "icon": "IconCheck", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e1bbe3eb-7bbe-4f6b-a820-18389bc5b00b", - "universalIdentifier": "20202020-e45d-49de-a4aa-587bbf9601f3", - "type": "TEXT", - "name": "parentFolderId", - "label": "Parent Folder ID", - "description": "Parent Folder ID", - "icon": "IconFolder", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d5ef9ab8-3358-4416-a8b3-5446144e2c7e", - "universalIdentifier": "20202020-f3a8-4d2b-9c7e-1b5f9a8e4c6d", - "type": "TEXT", - "name": "externalId", - "label": "External ID", - "description": "External ID", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "de7626f8-d28c-4deb-a128-1de37a75d17c", - "universalIdentifier": "20202020-4f97-4c79-9517-16387fe237f7", - "type": "SELECT", - "name": "pendingSyncAction", - "label": "Pending Sync Action", - "description": "Pending action for folder sync", - "icon": "IconReload", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'NONE'", - "options": [ - { - "id": "20202020-dc59-4dd3-92fe-f41c6491a588", - "color": "red", - "label": "Folder deletion", - "value": "FOLDER_DELETION", - "position": 0 - }, - { - "id": "20202020-aa29-41d3-872b-142174fe6595", - "color": "blue", - "label": "None", - "value": "NONE", - "position": 1 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c940da70-853e-49fa-9bbe-dcf45b51994b", - "universalIdentifier": "20202020-c9f8-43db-a3e7-7f2e8b5d9c1a", - "type": "RELATION", - "name": "messageChannel", - "label": "Message Channel", - "description": "Message Channel", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageChannelId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5cde5eae-bc35-4966-86c1-477a74a657ff", - "nameSingular": "messageFolder", - "namePlural": "messageFolders" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "cabe467a-d234-4809-976a-3bce37083b71", + "id": "94688fdc-6133-4125-b3bf-51b6caad382f", "nameSingular": "messageChannel", "namePlural": "messageChannels" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "c940da70-853e-49fa-9bbe-dcf45b51994b", - "name": "messageChannel" + "id": "5cbe30fd-39bd-4f9b-a79a-6d96a012b445", + "name": "messageChannels" }, "targetFieldMetadata": { "__typename": "Field", - "id": "c59314d7-d501-47d0-939a-64afd1f9b82b", - "name": "messageFolders" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ea147889-8c57-447b-af3c-e34eacbe5edf", - "universalIdentifier": "cce5ce1e-31d0-42e6-83cd-90059244a484", - "type": "RELATION", - "name": "messageChannelMessageAssociationMessageFolders", - "label": "Message Association Folders", - "description": "Message Association Folders (supports multiple folders/labels)", - "icon": "IconFolders", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5cde5eae-bc35-4966-86c1-477a74a657ff", - "nameSingular": "messageFolder", - "namePlural": "messageFolders" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "32004991-757c-4fb7-81e4-b58e933fe2c8", - "nameSingular": "messageChannelMessageAssociationMessageFolder", - "namePlural": "messageChannelMessageAssociationMessageFolders" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ea147889-8c57-447b-af3c-e34eacbe5edf", - "name": "messageChannelMessageAssociationMessageFolders" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "59fafe4a-e243-4683-8e3c-34262c6244a2", - "name": "messageFolder" + "id": "44eb5272-311c-483a-91a1-59fc683ddc67", + "name": "connectedAccount" } }, "morphRelations": null @@ -14216,10 +11134,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "a36fac56-7ad4-4b2c-8ce5-a28c506f049e", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_a1bbe482462d9f016582d99d4e6", + "id": "5e20a513-5997-4c23-a0b8-8a4b55e9384d", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_3c8bbe54bd34f40dfe2d05ac964", "indexWhereClause": null, "indexType": "BTREE", "isUnique": false, @@ -14227,10 +11145,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "9d711eab-078a-4284-ba3b-bbc931dda62d", - "fieldMetadataId": "c940da70-853e-49fa-9bbe-dcf45b51994b", - "createdAt": "2026-02-26T11:55:16.383Z", - "updatedAt": "2026-02-26T11:55:16.383Z", + "id": "b151f41a-f3a2-483d-897b-7e0f723ba676", + "fieldMetadataId": "82974602-49aa-43a9-8623-28a0222cc204", + "createdAt": "2026-02-27T01:17:26.874Z", + "updatedAt": "2026-02-27T01:17:26.874Z", "order": 0 } ] @@ -14242,926 +11160,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "5b6da133-e4a5-4ce3-b0c4-5926f064e73e", - "universalIdentifier": "20202020-7cf8-401f-8211-a9587d27fd2d", - "nameSingular": "favoriteFolder", - "namePlural": "favoriteFolders", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "1f8d0c61-ddf2-4e37-9ce4-3b7e79df3ca4", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Favorite Folder", - "labelPlural": "Favorite Folders", - "description": "A favorite folder", - "icon": "IconFolder", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "id": "1f8d0c61-ddf2-4e37-9ce4-3b7e79df3ca4", - "universalIdentifier": "20202020-f02a-40a1-8aa1-1f2e3d4c5b6a", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ac76ad49-aa8f-420a-9c3a-f602754f1091", - "universalIdentifier": "20202020-f02b-40a2-9ba2-2f3e4d5c6b7a", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "71d3b0d9-5ebf-437b-8999-e1a0b860746e", - "universalIdentifier": "20202020-f02c-40a3-8ca3-3f4e5d6c7b8a", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6ff2a6d6-2548-466d-8296-f1ff6c160259", - "universalIdentifier": "20202020-f02d-40a4-9da4-4f5e6d7c8b9a", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2fadc736-96b3-439f-8fa8-c45fa4045be1", - "universalIdentifier": "1ec58922-7789-4832-a583-ec97f766f433", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ed9162e8-9d50-4e67-a664-35ec04680b8b", - "universalIdentifier": "6a53edc6-0ef2-4c35-9065-f91c4ddf7f01", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6e25c174-60f7-44e4-ba9d-14148f79dac7", - "universalIdentifier": "20202020-5278-4bde-8909-2cec74d43744", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Favorite folder position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "566216ed-51c2-46f0-9b8d-3d0f3bc160cf", - "universalIdentifier": "c5bb12e1-0cc3-428f-89f0-4c8747239ac3", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1ed614d2-80f8-41c4-8fc5-6d28d7d827a3", - "universalIdentifier": "20202020-82a3-4537-8ff0-dbce7eec35d6", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "Name of the favorite folder", - "icon": "IconText", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bb116b78-1f4e-4243-b6e6-2da509a3ea1a", - "universalIdentifier": "20202020-b5e3-4b42-8af2-03cd4fd2e4d2", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Favorites in this folder", - "icon": "IconHeart", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5b6da133-e4a5-4ce3-b0c4-5926f064e73e", - "nameSingular": "favoriteFolder", - "namePlural": "favoriteFolders" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "bb116b78-1f4e-4243-b6e6-2da509a3ea1a", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a7b7f354-5af5-4b4b-9299-8e0d73345b3c", - "name": "favoriteFolder" - } - }, - "morphRelations": null - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "575b32e0-0a09-4c20-bb75-70e1ca21eaf7", - "universalIdentifier": "20202020-3f6b-4425-80ab-e468899ab4b2", - "nameSingular": "message", - "namePlural": "messages", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "a94052c1-d192-4347-9326-1be2889d5aba", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Message", - "labelPlural": "Messages", - "description": "Message", - "icon": "IconMessage", - "fieldsList": [ - { - "__typename": "Field", - "id": "ae9f04df-7c00-45f8-9479-849dc5b86a9e", - "universalIdentifier": "20202020-b06a-4101-8a01-9cadbedfaeb1", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5905bdc1-dcfe-4833-8a41-dd5984da47de", - "universalIdentifier": "20202020-b06b-4102-9b02-adbecfeafbc2", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7bced71c-7c9b-4eb7-b6c2-77a4952b50d1", - "universalIdentifier": "20202020-b06c-4103-8c03-becfdfabfcd3", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bd45eca0-17dc-4150-badd-eb01e266ee96", - "universalIdentifier": "20202020-b06d-4104-9d04-cfdfabecdde4", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7209922a-b0f4-49b2-8d4f-689a98520f14", - "universalIdentifier": "6e52bde4-ed41-4462-aa70-121e496270b4", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4635662e-261a-47ba-b9fd-cc4a7707e2cb", - "universalIdentifier": "7822dcc0-ee40-4af0-a6fe-f10a14e72b24", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9f1af34b-0243-41eb-938e-b0de40c5bf99", - "universalIdentifier": "06c5052d-3369-4d6d-8eaa-f9780eddb1fd", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Message record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b9af4162-6df3-46e6-b9e5-0a8ba54d3d47", - "universalIdentifier": "529b6008-4a12-4d48-bbc3-26a3f199bafd", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"subject\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a3c89abe-3e21-4785-88c6-e4a5b2c3cf69", - "universalIdentifier": "20202020-72b5-416d-aed8-b55609067d01", - "type": "TEXT", - "name": "headerMessageId", - "label": "Header message Id", - "description": "Message id from the message header", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0dc0a57b-11d0-470a-90b1-4a2d00e51270", - "universalIdentifier": "20202020-0203-4118-8e2a-05b9bdae6dab", - "type": "SELECT", - "name": "direction", - "label": "Direction", - "description": "Message Direction", - "icon": "IconDirection", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'INCOMING'", - "options": [ - { - "id": "20202020-7b52-47d2-abd8-e96a4295f9a6", - "color": "green", - "label": "Incoming", - "value": "INCOMING", - "position": 0 - }, - { - "id": "20202020-11cb-42be-8df7-709ad53f90f9", - "color": "blue", - "label": "Outgoing", - "value": "OUTGOING", - "position": 1 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a94052c1-d192-4347-9326-1be2889d5aba", - "universalIdentifier": "20202020-52d1-4036-b9ae-84bd722bb37a", - "type": "TEXT", - "name": "subject", - "label": "Subject", - "description": "Subject", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "46f3b5e6-7a6d-4246-9486-8ac6400f5f7d", - "universalIdentifier": "20202020-d2ee-4e7e-89de-9a0a9044a143", - "type": "TEXT", - "name": "text", - "label": "Text", - "description": "Text", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "075b0a86-da5d-4067-bdae-a131313d4c74", - "universalIdentifier": "20202020-140a-4a2a-9f86-f13b6a979afc", - "type": "DATE_TIME", - "name": "receivedAt", - "label": "Received At", - "description": "The date the message was received", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bfe4039d-396a-443d-a496-6feb9a20d9b3", - "universalIdentifier": "20202020-30f2-4ccd-9f5c-e41bb9d26214", - "type": "RELATION", - "name": "messageThread", - "label": "Message Thread Id", - "description": "Message Thread Id", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageThreadId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "575b32e0-0a09-4c20-bb75-70e1ca21eaf7", - "nameSingular": "message", - "namePlural": "messages" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "9c8a2086-6cd6-4936-96f9-62685c589a6b", - "nameSingular": "messageThread", - "namePlural": "messageThreads" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "bfe4039d-396a-443d-a496-6feb9a20d9b3", - "name": "messageThread" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "2a97fc3f-dc22-4521-96de-4b85f501b6c0", - "name": "messages" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "371daa7c-84ad-4066-a321-0a3c5e3758dc", - "universalIdentifier": "20202020-7cff-4a74-b63c-73228448cbd9", - "type": "RELATION", - "name": "messageParticipants", - "label": "Message Participants", - "description": "Message Participants", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "575b32e0-0a09-4c20-bb75-70e1ca21eaf7", - "nameSingular": "message", - "namePlural": "messages" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "823cfbad-68a1-4475-aa2f-7d0588506b6e", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "371daa7c-84ad-4066-a321-0a3c5e3758dc", - "name": "messageParticipants" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "8a10e79e-bd6d-4fe1-888f-9f79bd6d6a31", - "name": "message" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "73fec415-ebc9-44bc-b69d-277e29f34310", - "universalIdentifier": "20202020-3cef-43a3-82c6-50e7cfbc9ae4", - "type": "RELATION", - "name": "messageChannelMessageAssociations", - "label": "Message Channel Association", - "description": "Messages from the channel.", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "575b32e0-0a09-4c20-bb75-70e1ca21eaf7", - "nameSingular": "message", - "namePlural": "messages" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "38b956fd-1178-4a0c-a919-2a0b5c2874b0", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "73fec415-ebc9-44bc-b69d-277e29f34310", - "name": "messageChannelMessageAssociations" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a4b9b0ff-ac52-497b-9e92-308177fb65c9", - "name": "message" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "4e3640fc-4e41-43af-8846-38bf384eedda", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_5d002cd3b5be1cb05c0b7b28582", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "0414cb66-513e-4dc9-b96f-65c3b9574f2b", - "fieldMetadataId": "bfe4039d-396a-443d-a496-6feb9a20d9b3", - "createdAt": "2026-02-26T11:55:16.354Z", - "updatedAt": "2026-02-26T11:55:16.354Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", "universalIdentifier": "20202020-5a9a-44e8-95df-771cd06d0fb1", "nameSingular": "taskTarget", "namePlural": "taskTargets", @@ -15170,11 +11169,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "71905b85-8e3d-4ca9-aeff-544a3181ccdc", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "2950701d-9a1d-4217-89d8-8b075cad6ec0", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, @@ -15186,7 +11185,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "fieldsList": [ { "__typename": "Field", - "id": "71905b85-8e3d-4ca9-aeff-544a3181ccdc", + "id": "2950701d-9a1d-4217-89d8-8b075cad6ec0", "universalIdentifier": "20202020-a03a-4161-8a61-cdefabcdefab", "type": "UUID", "name": "id", @@ -15199,20 +11198,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "3925e204-5453-47de-8e31-41ea20fad79a", + "id": "8a82da89-7cb4-4b50-83a3-9e158283b823", "universalIdentifier": "20202020-a03b-4162-9b62-defabcdefabc", "type": "DATE_TIME", "name": "createdAt", @@ -15225,8 +11224,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -15234,13 +11233,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "5a2afd8d-f77f-4dd5-9d34-7e05aa94f063", + "id": "85553d97-89b4-4124-947a-c138ff3079b6", "universalIdentifier": "20202020-a03c-4163-8c63-efabcdefabcd", "type": "DATE_TIME", "name": "updatedAt", @@ -15253,8 +11252,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -15262,13 +11261,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "60643535-f0ef-4df3-be9e-ba36e3b0c1e9", + "id": "52182f13-c288-4f03-9e64-4ab2d9b3c75c", "universalIdentifier": "20202020-a03d-4164-9d64-fabcdefabcde", "type": "DATE_TIME", "name": "deletedAt", @@ -15281,8 +11280,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -15290,13 +11289,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6991a8a5-76f2-4ed3-ae6f-a36e5271741c", + "id": "40fc8db0-26fa-40e8-a170-5af18a4f6da8", "universalIdentifier": "65fe2a53-45e4-4225-9711-b827f55e51cc", "type": "ACTOR", "name": "createdBy", @@ -15309,8 +11308,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -15320,13 +11319,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "f1d5c2f6-cc3d-4179-bb56-491f97af5794", + "id": "30fa6e18-632c-4294-976f-150ef3be2b95", "universalIdentifier": "bea3734f-aff2-49ed-9dc9-d4666a2e2178", "type": "ACTOR", "name": "updatedBy", @@ -15339,8 +11338,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -15350,13 +11349,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a4b1fba4-a91c-4a05-8601-3d593fbc100b", + "id": "1e848b98-4071-407b-985a-b712b94aca0a", "universalIdentifier": "4216c06a-498b-4111-9577-d9bcbccdda39", "type": "POSITION", "name": "position", @@ -15369,20 +11368,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "7efaf497-35db-4924-a6d7-3c748b5c427e", + "id": "bdac3f67-7553-4b9b-9888-5e72ec3ff68c", "universalIdentifier": "8768a9c0-37c0-4465-b86d-c4c7f466ec23", "type": "TS_VECTOR", "name": "searchVector", @@ -15395,20 +11394,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "313fe199-eab5-4910-8d57-ef3ca16193e8", + "id": "40044cb8-94ea-4468-92d1-7cd0c2aaf748", "universalIdentifier": "20202020-e881-457a-8758-74aaef4ae78a", "type": "RELATION", "name": "task", @@ -15421,8 +11420,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -15432,30 +11431,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", "nameSingular": "taskTarget", "namePlural": "taskTargets" }, "targetObjectMetadata": { "__typename": "Object", - "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "id": "919364e3-e0b3-4ea3-9e9b-07001572881c", "nameSingular": "task", "namePlural": "tasks" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "313fe199-eab5-4910-8d57-ef3ca16193e8", + "id": "40044cb8-94ea-4468-92d1-7cd0c2aaf748", "name": "task" }, "targetFieldMetadata": { "__typename": "Field", - "id": "bb163d2a-e79f-4796-8bcc-7b2196964089", + "id": "017ad6e6-1e18-47fc-abe3-5c332eca430f", "name": "taskTargets" } }, @@ -15463,12 +11462,12 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", - "universalIdentifier": "1f249a53-6ad7-4a6a-88f0-adfe5c9282a9", + "id": "3fafd252-d79a-4fe7-8c16-730b6dd495d1", + "universalIdentifier": "da729d33-7c53-4c08-907e-1f6b5084b9c7", "type": "MORPH_RELATION", "name": "target", - "label": "SurveyResult", - "description": "TaskTargets Survey result", + "label": "PetCareAgreement", + "description": "TaskTargets Pet Care Agreement", "icon": "IconCheckbox", "isCustom": true, "isActive": true, @@ -15476,18 +11475,18 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:17.138Z", - "updatedAt": "2026-02-26T11:55:17.138Z", + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", "defaultValue": null, "options": null, "settings": { "onDelete": "SET_NULL", "relationType": "MANY_TO_ONE", - "joinColumnName": "targetSurveyResultId" + "joinColumnName": "targetPetCareAgreementId" }, "isLabelSyncedWithName": false, "morphId": "20202020-f636-435d-ab8d-e1168b375c71", - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", "relation": null, "morphRelations": [ { @@ -15495,206 +11494,206 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", "nameSingular": "taskTarget", "namePlural": "taskTargets" }, "targetObjectMetadata": { "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "09c697bd-0a71-4779-a6fc-9612e1cf71ca", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6a1fd391-5d8e-4b71-967e-6b6de96000cc", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "c75afae6-0b8b-428d-9121-9a051a7c1bb6", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "29f65364-1132-44f1-a690-c066f1a29eb7", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "416ff507-5645-4dbb-a71b-e834477dce27", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "300453c0-d79d-47b6-b7c3-2027df66aeb2", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "bf2f0bec-a793-4a2b-97ea-7928f07255e7", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7b3a67a3-a520-47b0-9afc-94359ebe32aa", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0a1d53ce-6eb7-4a4a-b16b-241cf5409750", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "82b39b34-f9bb-4bcb-9bbd-90de488a5d2a", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ada40c59-34ac-42a6-87a5-f97e00c791d7", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b8df92f6-432a-483f-a699-9622eb1ec543", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3edd3e41-4f17-4406-a206-727998446463", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", "nameSingular": "petCareAgreement", "namePlural": "petCareAgreements" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "147f4660-9b9f-4d1c-9953-22e44108224b", + "id": "3fafd252-d79a-4fe7-8c16-730b6dd495d1", "name": "target" }, "targetFieldMetadata": { "__typename": "Field", - "id": "72a5b8f7-3893-4dea-b922-a6d29bd5418d", + "id": "11576aee-6293-4ea2-9815-31c1001679aa", + "name": "taskTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "d7f6546e-0759-456d-a45d-abf106898378", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "2ca55499-a2e8-457d-8f31-531b1598e758", + "name": "taskTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "be913b69-a9db-4fb6-b803-9be42723ca99", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "17bdc140-c821-4917-ba8d-8409355567ed", + "name": "taskTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "61d23471-5a4f-442e-ac77-98d2b4322b61", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "25079ed0-3c1d-430e-a434-02f33bba6759", + "name": "taskTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "bc702a8a-a25b-4d05-8ccf-b507980d9c98", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "e1c6b2d8-889e-49a0-8343-1df45b593641", + "name": "taskTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "6c352f73-c5c0-4027-9890-c380a506b152", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1f9f3c79-d695-4802-bc94-aeed27a3e018", + "name": "taskTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "4f4be142-c952-40e5-b6bd-724d2d4c02da", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "e04459a5-f37b-47d1-9afe-829e4255fd3f", + "name": "taskTargets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b0c16684-93ee-496f-a866-f75f9e368b63", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "5d3c4923-b4f0-4959-bce0-48e6be052104", "name": "taskTargets" } } @@ -15704,9 +11703,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "76d82d0c-e505-4d2a-a61d-fe405bb303f9", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "1cd0674a-b32d-444d-90a5-c2e3460040fe", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_74ad70941560ba6b2a179ad460c", "indexWhereClause": null, "indexType": "BTREE", @@ -15715,19 +11714,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "01f7eea5-221e-457d-8dfb-fe396796c076", - "fieldMetadataId": "313fe199-eab5-4910-8d57-ef3ca16193e8", - "createdAt": "2026-02-26T11:55:16.398Z", - "updatedAt": "2026-02-26T11:55:16.398Z", + "id": "7aa39e9c-345e-43c1-bee5-68ab8d64cdfb", + "fieldMetadataId": "40044cb8-94ea-4468-92d1-7cd0c2aaf748", + "createdAt": "2026-02-27T01:17:26.897Z", + "updatedAt": "2026-02-27T01:17:26.897Z", "order": 0 } ] }, { "__typename": "Index", - "id": "a5c8288e-98d0-484a-bb0c-f706a1f050f8", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "29c6ee23-b903-4490-a8f3-ce3d29575bb0", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_f3d9b01b0d587804e7beeb2a534", "indexWhereClause": null, "indexType": "BTREE", @@ -15736,19 +11735,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "c97843e0-7f3e-4d86-befc-80e9cea40b32", - "fieldMetadataId": "300453c0-d79d-47b6-b7c3-2027df66aeb2", - "createdAt": "2026-02-26T11:55:16.399Z", - "updatedAt": "2026-02-26T11:55:16.399Z", + "id": "d2f0e8ed-d01f-4082-8a89-a7f094b4da79", + "fieldMetadataId": "61d23471-5a4f-442e-ac77-98d2b4322b61", + "createdAt": "2026-02-27T01:17:26.898Z", + "updatedAt": "2026-02-27T01:17:26.898Z", "order": 0 } ] }, { "__typename": "Index", - "id": "d9562041-3b1e-4fb1-a87a-b917bb1ebc9b", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "1d403537-2866-48c6-aeaf-de9b9a1868d1", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_419778384cd97935db3e246f589", "indexWhereClause": null, "indexType": "BTREE", @@ -15757,19 +11756,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "2822fc14-7a99-4bb5-b47b-be08c00f964d", - "fieldMetadataId": "6a1fd391-5d8e-4b71-967e-6b6de96000cc", - "createdAt": "2026-02-26T11:55:16.399Z", - "updatedAt": "2026-02-26T11:55:16.399Z", + "id": "524a76ff-89b8-46a1-a582-089691c4b825", + "fieldMetadataId": "d7f6546e-0759-456d-a45d-abf106898378", + "createdAt": "2026-02-27T01:17:26.898Z", + "updatedAt": "2026-02-27T01:17:26.898Z", "order": 0 } ] }, { "__typename": "Index", - "id": "a21fe5d5-00f7-456b-ba50-bf6d9640acc9", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "0de83b7d-4bc3-4791-ae95-cd923c9e6367", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_f0e95ec5e72b91f28fffac1201b", "indexWhereClause": null, "indexType": "BTREE", @@ -15778,10 +11777,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "0f012572-f2d9-4807-b637-f64554ed7ca3", - "fieldMetadataId": "29f65364-1132-44f1-a690-c066f1a29eb7", - "createdAt": "2026-02-26T11:55:16.400Z", - "updatedAt": "2026-02-26T11:55:16.400Z", + "id": "96274b15-455f-49c1-b8e5-bbe37aa0ae76", + "fieldMetadataId": "be913b69-a9db-4fb6-b803-9be42723ca99", + "createdAt": "2026-02-27T01:17:26.899Z", + "updatedAt": "2026-02-27T01:17:26.899Z", "order": 0 } ] @@ -15793,7 +11792,3747 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", + "id": "7063c812-ee93-49ec-aae9-dfc1a3078ce6", + "universalIdentifier": "20202020-8f1d-4eef-9f85-0d1965e27221", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "5d03af86-bbfb-4e94-8053-6212543697ac", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Calendar event", + "labelPlural": "Calendar events", + "description": "Calendar events", + "icon": "IconCalendar", + "indexMetadataList": [], + "fieldsList": [ + { + "__typename": "Field", + "id": "11f20dfb-79cd-4576-9bd0-85b0c59b0aa7", + "universalIdentifier": "20202020-641a-4ffe-960d-c3c186d95b17", + "type": "TEXT", + "name": "location", + "label": "Location", + "description": "Location", + "icon": "IconMapPin", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9d0c00e2-576f-46a1-a676-53926ee3c2ae", + "universalIdentifier": "20202020-335b-4e04-b470-43b84b64863c", + "type": "BOOLEAN", + "name": "isCanceled", + "label": "Is canceled", + "description": "Is canceled", + "icon": "IconCalendarCancel", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": false, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "282d3888-50d2-4c2b-a8de-0e3b279c447a", + "universalIdentifier": "20202020-551c-402c-bb6d-dfe9efe86bcb", + "type": "BOOLEAN", + "name": "isFullDay", + "label": "Is Full Day", + "description": "Is Full Day", + "icon": "IconHours24", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": false, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f7a48639-7b0a-4a53-8bab-00cad2e94ee2", + "universalIdentifier": "20202020-2c57-4c75-93c5-2ac950a6ed67", + "type": "DATE_TIME", + "name": "startsAt", + "label": "Start Date", + "description": "Start Date", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e7fa3139-480e-4e92-a480-9396bdf23fdb", + "universalIdentifier": "20202020-2554-4ee1-a617-17907f6bab21", + "type": "DATE_TIME", + "name": "endsAt", + "label": "End Date", + "description": "End Date", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "68d01723-987a-4672-8f46-79ff306fec51", + "universalIdentifier": "20202020-9f03-4058-a898-346c62181599", + "type": "DATE_TIME", + "name": "externalCreatedAt", + "label": "Creation DateTime", + "description": "Creation DateTime", + "icon": "IconCalendarPlus", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d5cbf6f8-daad-4a96-ba39-bfbe29cb9f8f", + "universalIdentifier": "20202020-b355-4c18-8825-ef42c8a5a755", + "type": "DATE_TIME", + "name": "externalUpdatedAt", + "label": "Update DateTime", + "description": "Update DateTime", + "icon": "IconCalendarCog", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "7b6b25e6-4224-4f0d-b349-f69343996d7e", + "universalIdentifier": "20202020-52c4-4266-a98f-e90af0b4d271", + "type": "TEXT", + "name": "description", + "label": "Description", + "description": "Description", + "icon": "IconFileDescription", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "73efa64e-ab0d-4ead-8562-b21aff4f994d", + "universalIdentifier": "20202020-c04a-4051-8a51-9cadbe0f1e2d", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e45458d7-7d52-41c0-885d-8341c44d78ff", + "universalIdentifier": "20202020-c04b-4052-9b52-adbecf1f2e3e", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a6a83229-d7c4-4059-914d-b4111a943301", + "universalIdentifier": "20202020-c04c-4053-8c53-becf0f2f3e4f", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "ba2ef980-0f9a-43cd-88df-8045bcc9e9c0", + "universalIdentifier": "20202020-c04d-4054-9d54-cd0f1f3f4e5f", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "13bd2cb4-ec9e-47e7-8a82-fcbe7e7dac38", + "universalIdentifier": "664a9500-2641-4caa-8d95-069807bb2eb4", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "6e8f926c-d864-428c-b550-6f615de816d0", + "universalIdentifier": "1081c196-d675-4801-b9e1-7d8637b48eab", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "53bc36cf-7847-4a5e-9204-0f838be85ecc", + "universalIdentifier": "e9488e9a-0abe-4500-8c1d-bfbd6b8cffad", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Calendar event record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "7c4c609c-41ff-4267-8603-046d4856a8a3", + "universalIdentifier": "b9e7825c-d491-4414-b904-910c00b5b93b", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"title\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "5d03af86-bbfb-4e94-8053-6212543697ac", + "universalIdentifier": "20202020-080e-49d1-b21d-9702a7e2525c", + "type": "TEXT", + "name": "title", + "label": "Title", + "description": "Title", + "icon": "IconH1", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "dc0e8408-565d-4a94-a4c0-ef481da96070", + "universalIdentifier": "20202020-f24b-45f4-b6a3-d2f9fcb98714", + "type": "TEXT", + "name": "iCalUid", + "label": "iCal UID", + "description": "iCal UID", + "icon": "IconKey", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a477c18a-85c7-474f-803a-b06ae1db89cf", + "universalIdentifier": "20202020-1c3f-4b5a-b526-5411a82179eb", + "type": "TEXT", + "name": "conferenceSolution", + "label": "Conference Solution", + "description": "Conference Solution", + "icon": "IconScreenShare", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4dbc9cf8-9c3f-40e4-9c6e-83fb2aa10892", + "universalIdentifier": "20202020-35da-43ef-9ca0-e936e9dc237b", + "type": "LINKS", + "name": "conferenceLink", + "label": "Meet Link", + "description": "Meet Link", + "icon": "IconLink", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "407c8165-eba1-4f1a-8778-a381afa8c21c", + "universalIdentifier": "20202020-bdf8-4572-a2cc-ecbb6bcc3a02", + "type": "RELATION", + "name": "calendarChannelEventAssociations", + "label": "Calendar Channel Event Associations", + "description": "Calendar Channel Event Associations", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "7063c812-ee93-49ec-aae9-dfc1a3078ce6", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "aa5c2ea8-3c4e-49c4-857d-ccc02378f49c", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "407c8165-eba1-4f1a-8778-a381afa8c21c", + "name": "calendarChannelEventAssociations" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "9e024610-3ebd-4863-beb8-f68c19f457be", + "name": "calendarEvent" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d417b03a-2915-43c8-a8c4-21608eea7b11", + "universalIdentifier": "20202020-e07e-4ccb-88f5-6f3d00458eec", + "type": "RELATION", + "name": "calendarEventParticipants", + "label": "Event Participants", + "description": "Event Participants", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "7063c812-ee93-49ec-aae9-dfc1a3078ce6", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "53e8d9b5-abfd-4a32-b850-f9ec15c8501a", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "d417b03a-2915-43c8-a8c4-21608eea7b11", + "name": "calendarEventParticipants" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "66d2c6fd-1562-4066-b612-355625981913", + "name": "calendarEvent" + } + }, + "morphRelations": null + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "universalIdentifier": "1221d973-7c84-46e7-b435-8d506d9ef16b", + "nameSingular": "pet", + "namePlural": "pets", + "isCustom": true, + "isRemote": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "labelIdentifierFieldMetadataId": "32a344f6-f9c8-4288-8707-b11f22e1d99b", + "imageIdentifierFieldMetadataId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": true, + "duplicateCriteria": null, + "labelSingular": "Pet", + "labelPlural": "Pets", + "description": "", + "icon": "IconCat", + "fieldsList": [ + { + "__typename": "Field", + "id": "32a344f6-f9c8-4288-8707-b11f22e1d99b", + "universalIdentifier": "a42d0778-1132-489a-8d12-dc1b23a1ef0f", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "Name", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9a858d38-c8c4-49e4-80b7-394afb97fb88", + "universalIdentifier": "abd88431-f6fa-43db-81ac-c0af1a186774", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": true, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "2a944f7a-f105-43a5-9736-0d3f9924f2e5", + "universalIdentifier": "77ad9724-4067-49cf-93ec-b49bc9a45b54", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": "now", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "30faf848-06fc-4eaf-9e44-23375651aec1", + "universalIdentifier": "d7b71b49-f2e4-4e6b-a9ea-1d60d217c9cb", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "953234d6-ae31-42e5-81d2-24cdc2e667e5", + "universalIdentifier": "f519d87a-a7ed-46aa-9ca5-331271f26eda", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Deletion date", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "090ea353-4dfb-40f2-9595-cc0664f02ffd", + "universalIdentifier": "c5f5154b-3b46-4a93-b544-cc881b0b9f39", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "86cdb011-25bc-4d99-b8a3-b8fcc15eec4c", + "universalIdentifier": "169fc891-3739-4736-86d8-a73d35922c26", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Search vector", + "icon": "IconSearch", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3530b13b-24c2-4e2b-8c8b-a041727d0049", + "universalIdentifier": "42edce9c-638e-4450-957d-4c3254e95e33", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": "now", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "cd90d262-aa96-40be-a9ec-638d2cc8a7cb", + "universalIdentifier": "0f80ce2b-b1b9-4e81-8fc7-91d4f08be399", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c3b04d6e-4644-4a6d-8949-5c2476574aa3", + "universalIdentifier": "165d19f5-4e16-4e7c-9653-f74dfe5aca40", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Pets tied to the Timeline Activity", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "c3b04d6e-4644-4a6d-8949-5c2476574aa3", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "90830515-2b58-4398-bdd5-cbe9408a2680", + "universalIdentifier": "ebb365e4-43d9-45c1-84e0-a691ec81e877", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Pets tied to the Favorite", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "90830515-2b58-4398-bdd5-cbe9408a2680", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1fdc12a0-c2d3-4dd5-9b1b-45a435361b78", + "name": "pet" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "cc148bdf-b070-4bdf-9ae0-21005ce6ff77", + "universalIdentifier": "13278556-8a12-4df7-9ac0-f12eb70f0771", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Pets tied to the Attachment", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "cc148bdf-b070-4bdf-9ae0-21005ce6ff77", + "name": "attachments" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "5aa9be29-57c9-4f2a-968d-47bb2762e383", + "universalIdentifier": "eff8139f-42a0-4c2c-a04b-e3a6630d1307", + "type": "RELATION", + "name": "noteTargets", + "label": "Note Targets", + "description": "Pets tied to the Note Target", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "5aa9be29-57c9-4f2a-968d-47bb2762e383", + "name": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "07ad123b-8f3b-49d4-9754-c4e6d8751300", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "1f9f3c79-d695-4802-bc94-aeed27a3e018", + "universalIdentifier": "ce33f423-2254-4a61-acdf-fbbb7f660d8e", + "type": "RELATION", + "name": "taskTargets", + "label": "Task Targets", + "description": "Pets tied to the Task Target", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "1f9f3c79-d695-4802-bc94-aeed27a3e018", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "3fafd252-d79a-4fe7-8c16-730b6dd495d1", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c71ebb04-5c7b-411f-b0b4-3a2b33969391", + "universalIdentifier": "ee00b482-fe51-49a1-b443-61a6465fb16a", + "type": "SELECT", + "name": "species", + "label": "Species", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": [ + { + "id": "906b5041-200f-4a61-83ce-b2fc34bded52", + "color": "blue", + "label": "Dog", + "value": "DOG", + "position": 0 + }, + { + "id": "213105fb-e8f1-43ed-9d72-25f0e16a686a", + "color": "red", + "label": "Cat", + "value": "CAT", + "position": 1 + }, + { + "id": "467e266c-e153-4518-b2e9-314354435970", + "color": "green", + "label": "Bird", + "value": "BIRD", + "position": 2 + }, + { + "id": "3f50166e-b0ae-430c-8132-a9554854e827", + "color": "yellow", + "label": "Fish", + "value": "FISH", + "position": 3 + }, + { + "id": "e9aea894-9d0c-4222-ab58-071948cdc411", + "color": "purple", + "label": "Rabbit", + "value": "RABBIT", + "position": 4 + }, + { + "id": "66e2b17e-a1e8-4838-bee8-9e3c81c8c4e1", + "color": "orange", + "label": "Hamster", + "value": "HAMSTER", + "position": 5 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a4e49b5a-ea74-4982-9f3d-d9d102d9cb04", + "universalIdentifier": "c9017922-c281-434a-9c8f-68690a273805", + "type": "MULTI_SELECT", + "name": "traits", + "label": "Traits", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": [ + { + "id": "42a968bb-b36d-4b8d-bf4c-946949b01b39", + "color": "blue", + "label": "Playful", + "value": "PLAYFUL", + "position": 0 + }, + { + "id": "a24003e1-ca8c-4adc-a7f7-05184bd29a6e", + "color": "red", + "label": "Friendly", + "value": "FRIENDLY", + "position": 1 + }, + { + "id": "c0b9dc41-b94f-4f70-9794-8a5a90656624", + "color": "green", + "label": "Protective", + "value": "PROTECTIVE", + "position": 2 + }, + { + "id": "5e545253-211f-439e-bb49-731f7508808c", + "color": "yellow", + "label": "Shy", + "value": "SHY", + "position": 3 + }, + { + "id": "ab3b2195-c35f-49aa-a7b9-ae7262be2d5b", + "color": "purple", + "label": "Brave", + "value": "BRAVE", + "position": 4 + }, + { + "id": "d1930d05-3c65-4726-be5c-26a6847dece1", + "color": "orange", + "label": "Curious", + "value": "CURIOUS", + "position": 5 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "869414cf-b570-41a5-b7fb-750994a3b41d", + "universalIdentifier": "f748eea7-86c6-441d-8aa4-3ecca3e2c1b8", + "type": "TEXT", + "name": "comments", + "label": "Comments", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c1bf9c8e-dd3b-4726-aa1a-924b02fcdc24", + "universalIdentifier": "d0298500-f6e5-4361-9283-52f5c448bf9d", + "type": "NUMBER", + "name": "age", + "label": "Age", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "69e45153-70a1-4f81-8aa9-be0bd2930cba", + "universalIdentifier": "42342840-da51-4a2e-8a45-da4443f48b15", + "type": "ADDRESS", + "name": "location", + "label": "Location", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "fb39a805-3996-41c1-ae64-d73aadf7698c", + "universalIdentifier": "e5d1e756-c33e-4ada-8b1a-b2b2db74609b", + "type": "PHONES", + "name": "vetPhone", + "label": "Vet phone", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "bf9e4c63-5238-453b-baf0-18bdbadf509d", + "universalIdentifier": "40537cac-eed3-4123-9c4e-ba221c593d86", + "type": "EMAILS", + "name": "vetEmail", + "label": "Vet email", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "449389ad-12b8-4dd9-a84b-30092a9f5781", + "universalIdentifier": "bd2ef23d-7916-4f29-a4b9-458567832eb9", + "type": "DATE", + "name": "birthday", + "label": "Birthday", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "17368e9d-ae76-4636-be45-acf15c0c06e5", + "universalIdentifier": "e4867f1f-69e6-4386-9818-1033af29fea0", + "type": "BOOLEAN", + "name": "isGoodWithKids", + "label": "Is good with kids", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "93abbadd-0c08-4ed1-8a3a-46c269cc89e0", + "universalIdentifier": "bfeb0444-f6f5-4efa-a415-952bff075afb", + "type": "LINKS", + "name": "pictures", + "label": "Pictures", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3bdc06e1-f945-4464-b3e7-85dfdeb98b69", + "universalIdentifier": "09dbd981-9512-4743-8358-1fe3d7b01365", + "type": "CURRENCY", + "name": "averageCostOfKibblePerMonth", + "label": "Average cost of kibble per month", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b991048c-2bf8-459c-bbd8-0d781525efe2", + "universalIdentifier": "8310c9c4-6f95-4735-89f3-b43acb97c47d", + "type": "FULL_NAME", + "name": "makesOwnerThinkOf", + "label": "Makes its owner think of", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "19e32d90-1c52-4557-b391-d5cb0048d9ed", + "universalIdentifier": "b5914e9e-eb9b-4469-bfd8-5fd22bbfaf39", + "type": "RATING", + "name": "soundSwag", + "label": "Sound swag (bark style, meow style, etc.)", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": [ + { + "id": "d1cb8506-ccde-4713-87f7-019dff79e70e", + "label": "1", + "value": "RATING_1", + "position": 0 + }, + { + "id": "3de0eab2-3e2b-4d25-a0a4-19ec7a0befa9", + "label": "2", + "value": "RATING_2", + "position": 1 + }, + { + "id": "4b2fc732-0aa5-4e2c-a428-a472ca69f9cf", + "label": "3", + "value": "RATING_3", + "position": 2 + }, + { + "id": "38fa9975-3587-4bfd-8fbd-c93c43a4a6eb", + "label": "4", + "value": "RATING_4", + "position": 3 + }, + { + "id": "0332bf11-2c76-4a21-8dbb-546768a76d0f", + "label": "5", + "value": "RATING_5", + "position": 4 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "7700d2ac-0643-44a2-acd0-f0bb446bc08c", + "universalIdentifier": "107ed3e9-2ae0-43ef-a2d6-3f24bc54c2a5", + "type": "RICH_TEXT", + "name": "bio", + "label": "Bio", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "95566b05-a69e-4cf0-a31a-2b9d837ba186", + "universalIdentifier": "de4b9fcb-5d05-472a-b86d-20b4b792772d", + "type": "ARRAY", + "name": "interestingFacts", + "label": "Interesting facts", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8e7e458a-657f-4baf-a1cf-750ad79ab109", + "universalIdentifier": "6b5defaa-cd1e-4a7d-8cca-6c58e8c2a6fd", + "type": "RAW_JSON", + "name": "extraData", + "label": "Extra data", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.590Z", + "updatedAt": "2026-02-27T01:17:27.590Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "30091ffc-504e-49ae-b1eb-1633616a1fd0", + "universalIdentifier": "68774f31-dbc9-48e8-91e0-10ab140be7f2", + "type": "RELATION", + "name": "caretakers", + "label": "Caretakers", + "description": "Pets tied to the Pet Care Agreement", + "icon": "IconUser", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.543Z", + "updatedAt": "2026-02-27T01:17:28.757Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY", + "junctionTargetFieldId": "0a27394a-f071-4155-a642-9b6700abb9d6" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "30091ffc-504e-49ae-b1eb-1633616a1fd0", + "name": "caretakers" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "73f75510-6ee9-4aaf-9d4b-1d6c4ffeabf0", + "name": "pet" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8ea29616-1e89-4351-b5e1-ca7ad4f78014", + "universalIdentifier": "2b5ea799-0083-40b0-b0f9-828a9f115243", + "type": "MORPH_RELATION", + "name": "polymorphicOwner", + "label": "Polymorphic Owner", + "description": "Pets tied to the Survey result", + "icon": "IconRelationManyToOne", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.223Z", + "updatedAt": "2026-02-27T01:17:28.223Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "polymorphicOwnerSurveyResultId" + }, + "isLabelSyncedWithName": false, + "morphId": "eae8aa4a-eb2e-44c9-bfac-c88ee40b5e76", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": [ + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "8ea29616-1e89-4351-b5e1-ca7ad4f78014", + "name": "polymorphicOwner" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "3b251609-1144-4599-9e7f-58dc0572f646", + "name": "ownedPets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "d13d54dd-6a73-4a76-9a92-c14fe6c92e68", + "name": "polymorphicOwner" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "6570d066-45a4-43f4-a508-e33a672f11f4", + "name": "ownedPets" + } + } + ] + }, + { + "__typename": "Field", + "id": "df1f2bd4-22fe-4c38-b051-66608169f8bf", + "universalIdentifier": "2b055af6-f7c4-4699-83f2-8e1d82fe2428", + "type": "MORPH_RELATION", + "name": "polymorphicHelper", + "label": "Polymorphic Helper", + "description": "Pets tied to the Survey result", + "icon": "IconRelationOneToMany", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.224Z", + "updatedAt": "2026-02-27T01:17:28.224Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": "7d113231-fa2a-4430-931b-b18867dca952", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": [ + { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "df1f2bd4-22fe-4c38-b051-66608169f8bf", + "name": "polymorphicHelper" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "a8693002-794c-4096-a09d-d347a73ec4a1", + "name": "helpedPets" + } + }, + { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "f92b3b1e-99ce-41c4-be77-af0c5acabd66", + "name": "polymorphicHelper" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "9625cbbd-d058-430c-b85a-5a7c1527183c", + "name": "helpedPets" + } + } + ] + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "d18a6ed6-3200-4121-a4a9-bae8dc78b045", + "createdAt": "2026-02-27T01:17:27.371Z", + "updatedAt": "2026-02-27T01:17:27.371Z", + "name": "IDX_82c02a6c94da4f260020dfb54b9", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "344600d7-2410-4340-acc7-ad6eb81e9351", + "fieldMetadataId": "86cdb011-25bc-4d99-b8a3-b8fcc15eec4c", + "createdAt": "2026-02-27T01:17:27.413Z", + "updatedAt": "2026-02-27T01:17:27.413Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "09ef442e-dc44-468b-a5cc-c1719b9d95ed", + "createdAt": "2026-02-27T01:17:28.223Z", + "updatedAt": "2026-02-27T01:17:28.223Z", + "name": "IDX_4dda151ad87a8e853437e6a9905", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": true, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "0869c3dd-2315-4338-aedb-34ddf7f457bf", + "fieldMetadataId": "8ea29616-1e89-4351-b5e1-ca7ad4f78014", + "createdAt": "2026-02-27T01:17:28.240Z", + "updatedAt": "2026-02-27T01:17:28.240Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "e3e1762f-f61c-4c4c-9b11-205e58c56d37", + "createdAt": "2026-02-27T01:17:28.223Z", + "updatedAt": "2026-02-27T01:17:28.223Z", + "name": "IDX_0658daa5af230af11406a847c00", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": true, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "27a962f5-b179-4c9c-a446-d5dd9f7a5287", + "fieldMetadataId": "d13d54dd-6a73-4a76-9a92-c14fe6c92e68", + "createdAt": "2026-02-27T01:17:28.242Z", + "updatedAt": "2026-02-27T01:17:28.242Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "65e845b0-73aa-4348-99ad-f4d6db898e8f", + "universalIdentifier": "20202020-ad1e-4127-bccb-d83ae04d2ccb", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "53b35f53-f6ef-4573-a8c2-c467aa47142a", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Message Channel Message Association", + "labelPlural": "Message Channel Message Associations", + "description": "Message Synced with a Message Channel", + "icon": "IconMessage", + "fieldsList": [ + { + "__typename": "Field", + "id": "53b35f53-f6ef-4573-a8c2-c467aa47142a", + "universalIdentifier": "20202020-b01a-40b1-8ab1-5a6b7c8d9eaf", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8dd1bdbe-7ad7-4221-8c6d-d58ab01c41ce", + "universalIdentifier": "20202020-b01b-40b2-9bb2-6b7c8d9eafba", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b801999c-a67d-4860-9755-8cbe93bee535", + "universalIdentifier": "20202020-b01c-40b3-8cb3-7c8d9eafbacb", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "108ebd05-eee2-4494-89a2-1e35c3f5231a", + "universalIdentifier": "20202020-b01d-40b4-9db4-8d9eafbacbdc", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b4d4bf87-93cf-4413-8985-9de4baaa6080", + "universalIdentifier": "ce7dc96f-dd33-4bce-9505-cbd381440cec", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8fc0bfc0-8756-4251-83fc-2215c1e4f73c", + "universalIdentifier": "334d2ad6-4bc4-4b51-9c92-8ad57652475e", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b8257aed-1bcd-4822-8636-cb42add15d26", + "universalIdentifier": "45d1e083-90d6-4507-b68a-454a9dc3a540", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Message channel message association record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a02043c2-cd3f-4cb0-8a84-996aa05e8d4a", + "universalIdentifier": "edddd409-d9f0-4b93-8e3f-37faef6a3387", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"messageExternalId\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "35d1017e-21e3-45d0-ba6d-f5d9210bfe74", + "universalIdentifier": "20202020-37d6-438f-b6fd-6503596c8f34", + "type": "TEXT", + "name": "messageExternalId", + "label": "Message External Id", + "description": "Message id from the messaging provider", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8adf0477-0e11-45aa-9765-a676f1bcd687", + "universalIdentifier": "20202020-35fb-421e-afa0-0b8e8f7f9018", + "type": "TEXT", + "name": "messageThreadExternalId", + "label": "Thread External Id", + "description": "Thread id from the messaging provider", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8c2cf23c-b6e4-40da-b490-c1320c631966", + "universalIdentifier": "75c9b0f7-9e76-44d4-a2f9-47051e61eec7", + "type": "SELECT", + "name": "direction", + "label": "Direction", + "description": "Message Direction", + "icon": "IconDirection", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'INCOMING'", + "options": [ + { + "id": "20202020-3075-4e35-b6a1-27db444a4668", + "color": "green", + "label": "Incoming", + "value": "INCOMING", + "position": 0 + }, + { + "id": "20202020-a15f-4512-9202-391a3c0bbed3", + "color": "blue", + "label": "Outgoing", + "value": "OUTGOING", + "position": 1 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d0f39dc4-f79d-4409-94fc-f3af14c209ad", + "universalIdentifier": "20202020-da5d-4ac5-8743-342ab0a0336b", + "type": "RELATION", + "name": "message", + "label": "Message Id", + "description": "Message Id", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "messageId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "65e845b0-73aa-4348-99ad-f4d6db898e8f", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "ac31da17-9686-436d-80e4-5278dcd00e81", + "nameSingular": "message", + "namePlural": "messages" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "d0f39dc4-f79d-4409-94fc-f3af14c209ad", + "name": "message" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "287d80c0-0349-45d8-ba03-a228b85039e8", + "name": "messageChannelMessageAssociations" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "ab65a1a2-05e3-415d-916f-ed3e982cc9d1", + "universalIdentifier": "20202020-b658-408f-bd46-3bd2d15d7e52", + "type": "RELATION", + "name": "messageChannel", + "label": "Message Channel Id", + "description": "Message Channel Id", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "messageChannelId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "65e845b0-73aa-4348-99ad-f4d6db898e8f", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "94688fdc-6133-4125-b3bf-51b6caad382f", + "nameSingular": "messageChannel", + "namePlural": "messageChannels" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "ab65a1a2-05e3-415d-916f-ed3e982cc9d1", + "name": "messageChannel" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "42e10048-928c-416b-9995-199e283a2ab0", + "name": "messageChannelMessageAssociations" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "77a13f56-bcad-494a-bb98-8dac321d6e8f", + "universalIdentifier": "20202020-fac8-42a8-94dd-44dbc920ae16", + "type": "RELATION", + "name": "messageThread", + "label": "Message Thread Id", + "description": "Message Thread Id", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "messageThreadId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "65e845b0-73aa-4348-99ad-f4d6db898e8f", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "26f62a07-444a-44b2-abf6-70037ab95e25", + "nameSingular": "messageThread", + "namePlural": "messageThreads" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "77a13f56-bcad-494a-bb98-8dac321d6e8f", + "name": "messageThread" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "926f50f3-c3f3-4439-99f6-21d987e90a96", + "name": "messageChannelMessageAssociations" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "02112f8c-2dde-4be4-8ea9-944f10212be8", + "universalIdentifier": "9bfc9da7-ae2d-44fd-9563-ede90c5d6222", + "type": "RELATION", + "name": "messageFolders", + "label": "Message Folders", + "description": "Message Folders (supports multiple folders/labels)", + "icon": "IconFolders", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "65e845b0-73aa-4348-99ad-f4d6db898e8f", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "4ace5c8d-0e35-443c-8499-729a92fb36d9", + "nameSingular": "messageChannelMessageAssociationMessageFolder", + "namePlural": "messageChannelMessageAssociationMessageFolders" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "02112f8c-2dde-4be4-8ea9-944f10212be8", + "name": "messageFolders" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "19a8ea36-fc54-4d69-af15-54295271cd98", + "name": "messageChannelMessageAssociation" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "4964b197-a4ef-4f63-b6d9-76181766c874", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_2e85541b739066142845bdef99a", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "9d1b6b0b-9a0b-4b90-a9fc-8ac07fa2e421", + "fieldMetadataId": "ab65a1a2-05e3-415d-916f-ed3e982cc9d1", + "createdAt": "2026-02-27T01:17:26.883Z", + "updatedAt": "2026-02-27T01:17:26.883Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "39a09b14-a841-455b-90fd-1067ac5833e2", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_3f4c0095cf17b62868bec089fab", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "26c9576a-ca7f-401d-8c84-d49054ce0122", + "fieldMetadataId": "d0f39dc4-f79d-4409-94fc-f3af14c209ad", + "createdAt": "2026-02-27T01:17:26.883Z", + "updatedAt": "2026-02-27T01:17:26.883Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "c07c4b6b-dab3-485b-9997-0c6ba45ad995", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_da56d8b595a778d404eae01f29b", + "indexWhereClause": "\"deletedAt\" IS NULL", + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "c7e24a44-cbe1-47d7-8469-bb7ff15c1558", + "fieldMetadataId": "ab65a1a2-05e3-415d-916f-ed3e982cc9d1", + "createdAt": "2026-02-27T01:17:26.884Z", + "updatedAt": "2026-02-27T01:17:26.884Z", + "order": 0 + }, + { + "__typename": "IndexField", + "id": "948da63b-f691-48c6-90ea-e60b8f2ce45e", + "fieldMetadataId": "d0f39dc4-f79d-4409-94fc-f3af14c209ad", + "createdAt": "2026-02-27T01:17:26.884Z", + "updatedAt": "2026-02-27T01:17:26.884Z", + "order": 1 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "universalIdentifier": "20202020-6736-4337-b5c4-8b39fae325a5", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "581495fa-a57c-4332-87cc-1850e3e7be1e", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Timeline Activity", + "labelPlural": "Timeline Activities", + "description": "Aggregated / filtered event to be displayed on the timeline", + "icon": "IconTimelineEvent", + "fieldsList": [ + { + "__typename": "Field", + "id": "4c62c49a-7c88-41ae-a129-909b47845f0c", + "universalIdentifier": "81dc29fc-c872-4efd-bf31-d07872cd260e", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9fe8ec7e-2df5-4ead-87a8-85ed1304bda8", + "universalIdentifier": "e245d799-3e4b-4c69-ab9a-6b7c91d71195", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Timeline activity record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b16a24c9-c514-45f8-a98b-f3e0cc01f1b2", + "universalIdentifier": "20202020-a01a-4081-8a81-9aabbccddeff", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "43b350e0-9c21-44c8-a3a2-58ad393eb638", + "universalIdentifier": "20202020-a01b-4082-9b82-aabbccddeeff", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "79a0f95b-656e-42ec-9181-5f81d730df71", + "universalIdentifier": "20202020-a01c-4083-8c83-bbccddeeffaa", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "ce6c51ac-5df9-4b3b-9b22-97523b56759b", + "universalIdentifier": "20202020-a01d-4084-9d84-ccddeeffaabb", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "81ce73e6-6069-4237-a1db-831983c4c6db", + "universalIdentifier": "8f66191f-927d-4a6d-a15f-d0ff8cfc5a6d", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "583b91a0-07d8-4a57-9fd6-7e5411b4c79b", + "universalIdentifier": "20202020-9526-4993-b339-c4318c4d39f0", + "type": "DATE_TIME", + "name": "happensAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "581495fa-a57c-4332-87cc-1850e3e7be1e", + "universalIdentifier": "20202020-7207-46e8-9dab-849505ae8497", + "type": "TEXT", + "name": "name", + "label": "Event name", + "description": "Event name", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "1fd0caae-2858-4050-ba7b-3382e1cb8761", + "universalIdentifier": "20202020-f142-4b04-b91b-6a2b4af3bf11", + "type": "RAW_JSON", + "name": "properties", + "label": "Event details", + "description": "Json value for event details", + "icon": "IconListDetails", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "732ba66c-248c-4e5e-a395-500fd5feb7a3", + "universalIdentifier": "20202020-cfdb-4bef-bbce-a29f41230934", + "type": "TEXT", + "name": "linkedRecordCachedName", + "label": "Linked Record cached name", + "description": "Cached record name", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d7cf02a8-3dc2-4dfb-8e0a-f0bed266a8d3", + "universalIdentifier": "20202020-2e0e-48c0-b445-ee6c1e61687d", + "type": "UUID", + "name": "linkedRecordId", + "label": "Linked Record id", + "description": "Linked Record id", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b7bbb5ae-2729-4207-b551-9a536acc35c2", + "universalIdentifier": "20202020-c595-449d-9f89-562758c9ee69", + "type": "UUID", + "name": "linkedObjectMetadataId", + "label": "Linked Object Metadata Id", + "description": "Linked Object Metadata Id", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d7cc46f4-266b-41a8-8a4f-83046a6b8d4f", + "universalIdentifier": "bc1d1b67-903a-4354-8272-4a6efc4cbe63", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9394ad17-cd2e-4473-87e7-3208eb3ad5d3", + "universalIdentifier": "20202020-af23-4479-9a30-868edc474b36", + "type": "RELATION", + "name": "workspaceMember", + "label": "Workspace Member", + "description": "Event workspace member", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "workspaceMemberId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "9394ad17-cd2e-4473-87e7-3208eb3ad5d3", + "name": "workspaceMember" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "b4c76ed0-b128-479f-9e3a-18878b67f5ec", + "name": "timelineActivities" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "universalIdentifier": "20202020-ec55-4135-8da5-3a20badc0156", + "type": "MORPH_RELATION", + "name": "target", + "label": "Target", + "description": "Event target", + "icon": "IconArrowUpRight", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "targetNoteId" + }, + "isLabelSyncedWithName": false, + "morphId": "20202020-9a2b-4c3d-a4e5-f6a7b8c9d0e1", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": [ + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "1691dfbb-f84a-4fe8-acd4-a7f35e7673a7", + "nameSingular": "note", + "namePlural": "notes" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "7f344d16-80cb-4f45-a8f0-8bec30a1c446", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "4d8e1cd3-2778-48fd-b53a-0006430df933", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "d26e5411-91c9-4eec-a731-5a8fded0dfd1", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "5f90b5d9-b823-4278-b3db-fc540f13936a", + "nameSingular": "dashboard", + "namePlural": "dashboards" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "a3e3b5bb-869e-4f85-a198-2555b5489db8", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "865fda8f-8087-4a9d-995a-9c4e7f7a7502", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "2f2f768d-e4e1-4efe-8628-5606abef4e4c", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "81af430e-2889-403e-8b34-6d1756689ca2", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b2727db1-04db-4642-a8cb-27a0df069005", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "42350fbf-41d1-4f3b-b5f8-ac2e57f50632", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "919364e3-e0b3-4ea3-9e9b-07001572881c", + "nameSingular": "task", + "namePlural": "tasks" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "0e56d6a8-35e4-4591-a69d-eea8ee702b5c", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "b9ef310f-dbd9-431b-a9ca-7ba0f7142d31", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", + "nameSingular": "workflow", + "namePlural": "workflows" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "96989642-cbee-49e9-97ee-9dcbce6ce61a", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "fe15112f-1287-4fc7-bbca-44ead6b54951", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "54bf871f-e183-471f-a66c-309507af74da", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "94ddf355-e729-4a37-8558-5b50ced499d0", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "a0272e8a-eda0-4237-b564-5653d9492577", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "613d9797-95db-4eaa-99b2-1814b529f26b", + "nameSingular": "workflowRun", + "namePlural": "workflowRuns" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "fbec850c-ca94-4696-8a05-bf2aa2aa43ed", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "e5b7e3f4-3638-4bf0-914c-8f94b280383d", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "58384545-d87b-4b9b-a544-93ec32c9acd0", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "2366a1fb-80e5-4ec3-89e0-a86d3ffc0f74", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "14ecc1e5-1e2d-49cd-a9dc-b3219991c2e5", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "c3b04d6e-4644-4a6d-8949-5c2476574aa3", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "07176cf2-bf2a-49eb-8652-7fc561e345ff", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "b76ebb15-79f9-4c32-ba83-a6c613e53903", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "3bf22fed-e41f-407f-8c4d-fb557d7ee542", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "d11c027b-bcdc-49bc-ab6b-87c7e35b8755", + "name": "timelineActivities" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "4f581471-1b9a-4a4b-b550-ba7c1bdcade4", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "f5165e25-c5ce-4ccc-b547-ee831c4de6ff", + "name": "timelineActivities" + } + } + ] + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "0f7fd8e0-e650-4c83-b078-d535ca25c706", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_dc68847d0ff0b17baef8fb632c2", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "78c3e848-41db-49c4-a0db-c4d0dcfffbeb", + "fieldMetadataId": "9394ad17-cd2e-4473-87e7-3208eb3ad5d3", + "createdAt": "2026-02-27T01:17:26.899Z", + "updatedAt": "2026-02-27T01:17:26.899Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "f1b0c86e-2335-4009-93ff-caa1e1bfa97c", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_e49dd7da4ed5c919babcd31c93b", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "465e05e6-e8ac-4027-a593-13435c0a1321", + "fieldMetadataId": "b2727db1-04db-4642-a8cb-27a0df069005", + "createdAt": "2026-02-27T01:17:26.900Z", + "updatedAt": "2026-02-27T01:17:26.900Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "5b1f9321-0af4-4cf9-a83e-c0cd02268487", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_9b267fc4a89dd1aaec4c5340f05", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "25829902-553e-418f-9f4c-d893e2f7469c", + "fieldMetadataId": "4d8e1cd3-2778-48fd-b53a-0006430df933", + "createdAt": "2026-02-27T01:17:26.901Z", + "updatedAt": "2026-02-27T01:17:26.901Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "30ff37db-80f8-4c53-97f1-36d0bd1f1132", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_62d09af534224aa478109b2d585", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "beed4d38-d882-4fd6-922e-d44ba3fcfd96", + "fieldMetadataId": "2f2f768d-e4e1-4efe-8628-5606abef4e4c", + "createdAt": "2026-02-27T01:17:26.901Z", + "updatedAt": "2026-02-27T01:17:26.901Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "6e9dcfe5-8124-4fa2-a4a1-335676606ae0", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_26a021921ba73b428be8f244ded", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "6da79579-13f7-433f-9be6-0a2870c5ddad", + "fieldMetadataId": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "createdAt": "2026-02-27T01:17:26.902Z", + "updatedAt": "2026-02-27T01:17:26.902Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "066ff5a9-4562-433c-994e-c7b48169ebb8", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_1ff229b8237e8368a92c08d11f0", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "920c40a3-5700-42b0-a867-8ca63e158f45", + "fieldMetadataId": "0e56d6a8-35e4-4591-a69d-eea8ee702b5c", + "createdAt": "2026-02-27T01:17:26.903Z", + "updatedAt": "2026-02-27T01:17:26.903Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "7a782a59-ef50-4a9f-a8ed-16be85f44997", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_9a2065c2b56ffe8b74d1a12705f", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "70a1b89b-7f2a-4243-85f9-933df5645ef2", + "fieldMetadataId": "96989642-cbee-49e9-97ee-9dcbce6ce61a", + "createdAt": "2026-02-27T01:17:26.903Z", + "updatedAt": "2026-02-27T01:17:26.903Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "9aef4414-84ef-40fc-821b-6cdb2afcb719", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_953cb9c73db904f98697f4867b2", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "f84da37a-017b-4b9b-968e-0735f3a20dc6", + "fieldMetadataId": "94ddf355-e729-4a37-8558-5b50ced499d0", + "createdAt": "2026-02-27T01:17:26.904Z", + "updatedAt": "2026-02-27T01:17:26.904Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "35f95a52-c00d-4813-a315-12608328a065", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_58b130a455b1451066c84dc63e2", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "9e12c61b-c99f-4d18-a957-864d66284348", + "fieldMetadataId": "fbec850c-ca94-4696-8a05-bf2aa2aa43ed", + "createdAt": "2026-02-27T01:17:26.904Z", + "updatedAt": "2026-02-27T01:17:26.904Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "0c37aa5e-a09f-4464-ba72-fc915adf01a6", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_6b2a27852dd0e0846577662a33a", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "a53880ce-7807-4cce-b8bb-f2803a99676d", + "fieldMetadataId": "a3e3b5bb-869e-4f85-a198-2555b5489db8", + "createdAt": "2026-02-27T01:17:26.905Z", + "updatedAt": "2026-02-27T01:17:26.905Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "613d9797-95db-4eaa-99b2-1814b529f26b", "universalIdentifier": "20202020-4e28-4e95-a9d7-6c00874f843c", "nameSingular": "workflowRun", "namePlural": "workflowRuns", @@ -15802,11 +15541,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "04ac0e46-8a22-4f85-b837-a6d7c2989f87", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "d3b34ccf-3a54-46cd-ad2f-d37479807295", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, @@ -15818,7 +15557,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "fieldsList": [ { "__typename": "Field", - "id": "28ccb1f2-1881-4273-8ac8-9a54e76e8abd", + "id": "f868c101-c8a8-436d-83fd-0f43f74a5635", "universalIdentifier": "20202020-f03a-4191-8a91-cdefabcdefab", "type": "UUID", "name": "id", @@ -15831,20 +15570,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "8f83fea9-82ba-47e2-900e-03ce8d7a442f", + "id": "e2c00b01-c747-4d61-a3fe-bda4e9894dab", "universalIdentifier": "20202020-f03b-4192-9b92-defabcdefabc", "type": "DATE_TIME", "name": "createdAt", @@ -15857,8 +15596,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -15866,13 +15605,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "35adff53-95db-4b55-a2bc-1e78a73ecf98", + "id": "bde2fe3d-e1a9-4cc5-97fc-e99bd869e88e", "universalIdentifier": "20202020-f03c-4193-8c93-efabcdefabcd", "type": "DATE_TIME", "name": "updatedAt", @@ -15885,8 +15624,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -15894,13 +15633,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a9754506-086a-42ad-a7de-ec4188826fde", + "id": "0d520872-af0e-4b1c-b5dc-cfc238cb3db1", "universalIdentifier": "20202020-f03d-4194-9d94-fabcdefabcde", "type": "DATE_TIME", "name": "deletedAt", @@ -15913,8 +15652,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -15922,13 +15661,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "04ac0e46-8a22-4f85-b837-a6d7c2989f87", + "id": "d3b34ccf-3a54-46cd-ad2f-d37479807295", "universalIdentifier": "20202020-b840-4253-aef9-4e5013694587", "type": "TEXT", "name": "name", @@ -15941,20 +15680,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "d9a5cbc5-064a-4846-87c3-251dd27b89f0", + "id": "01295ffa-a69e-4d95-9a59-3c98834a993e", "universalIdentifier": "20202020-f1e3-4de1-a461-b5c4fdbc861d", "type": "DATE_TIME", "name": "enqueuedAt", @@ -15967,20 +15706,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "0531f77c-6953-4a58-bce5-c8afcefe1f23", + "id": "f7cf620b-41f6-4737-873e-86ca8ff7592b", "universalIdentifier": "20202020-a234-4e2d-bd15-85bcea6bb183", "type": "DATE_TIME", "name": "startedAt", @@ -15993,20 +15732,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "52db01a4-a473-4050-8717-5c18922fa202", + "id": "4fe3f024-0004-4ce2-aa97-4c40bc6eabd4", "universalIdentifier": "20202020-e1c1-4b6b-bbbd-b2beaf2e159e", "type": "DATE_TIME", "name": "endedAt", @@ -16019,20 +15758,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "05f163ff-089a-42a7-97e3-4fb0e3deb671", + "id": "029a4058-0a5f-41fa-82ad-3fd8bb8e60ad", "universalIdentifier": "20202020-6b3e-4f9c-8c2b-2e5b8e6d6f3b", "type": "SELECT", "name": "status", @@ -16045,8 +15784,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "'NOT_STARTED'", "options": [ { @@ -16102,13 +15841,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6537b94a-d50f-486a-9443-3286fe6d030f", + "id": "0ee61bc5-c2e5-4226-92fb-c330b4adf872", "universalIdentifier": "20202020-6007-401a-8aa5-e6f38581a6f3", "type": "ACTOR", "name": "createdBy", @@ -16121,8 +15860,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -16132,13 +15871,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "d67b36ca-4548-42b3-9544-03c6b0e8da8d", + "id": "8578f2d8-f2c7-40da-9115-477d001ac132", "universalIdentifier": "730dc1c9-34f5-4c22-84a6-bcb55b7604e2", "type": "ACTOR", "name": "updatedBy", @@ -16151,8 +15890,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -16162,13 +15901,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "2a952c17-3830-4936-b316-5d258860a346", + "id": "75115d5d-8e62-438b-969c-d065e8b3cf04", "universalIdentifier": "20202020-611f-45f3-9cde-d64927e8ec57", "type": "RAW_JSON", "name": "state", @@ -16181,20 +15920,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "123aee6c-a31e-4cbb-9bef-3c50731631ef", + "id": "c2dea5a1-114f-42cb-acd8-2c0b18467608", "universalIdentifier": "20202020-189c-478a-b867-d72feaf5926a", "type": "RAW_JSON", "name": "context", @@ -16207,20 +15946,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a8f0c153-643f-48f5-b919-a471117fcfe1", + "id": "927dd1f5-16d3-4854-8558-c258c9028366", "universalIdentifier": "20202020-7be4-4db2-8ac6-3ff0d740843d", "type": "RAW_JSON", "name": "output", @@ -16233,20 +15972,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "5ff649a1-e7c2-41e0-8cdd-2f8285b5e363", + "id": "0a32a521-79ec-4fc8-96b8-5e60b73c420c", "universalIdentifier": "20202020-7802-4c40-ae89-1f506fe3365c", "type": "POSITION", "name": "position", @@ -16259,20 +15998,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "dfd75fa5-981b-4b13-b642-8c9660039c1c", + "id": "b19379a4-8b94-4543-9804-24c353470bde", "universalIdentifier": "20202020-0b91-4ded-b1ac-cbd5efa58cb9", "type": "TS_VECTOR", "name": "searchVector", @@ -16285,8 +16024,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -16295,13 +16034,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "c5b2856a-7a7b-4b3d-a71f-c2b579ce9756", + "id": "00961b91-1ccc-49ed-b237-95454988ed46", "universalIdentifier": "20202020-4baf-4604-b899-2f7fcfbbf90d", "type": "RELATION", "name": "favorites", @@ -16314,8 +16053,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -16323,30 +16062,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", + "id": "613d9797-95db-4eaa-99b2-1814b529f26b", "nameSingular": "workflowRun", "namePlural": "workflowRuns" }, "targetObjectMetadata": { "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "c5b2856a-7a7b-4b3d-a71f-c2b579ce9756", + "id": "00961b91-1ccc-49ed-b237-95454988ed46", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "06307fef-1bb9-414b-ba29-e66bce2c416e", + "id": "3237b607-74e1-4a0c-ab79-a4d765adc979", "name": "workflowRun" } }, @@ -16354,7 +16093,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "c62c418e-9273-4d97-8e78-372de9e3b33c", + "id": "e5b7e3f4-3638-4bf0-914c-8f94b280383d", "universalIdentifier": "20202020-af4d-4eb0-babc-eb960a45b356", "type": "RELATION", "name": "timelineActivities", @@ -16367,8 +16106,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -16376,30 +16115,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", + "id": "613d9797-95db-4eaa-99b2-1814b529f26b", "nameSingular": "workflowRun", "namePlural": "workflowRuns" }, "targetObjectMetadata": { "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", + "id": "64d19806-f11a-493e-af13-2059861c8139", "nameSingular": "timelineActivity", "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "c62c418e-9273-4d97-8e78-372de9e3b33c", + "id": "e5b7e3f4-3638-4bf0-914c-8f94b280383d", "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", "name": "target" } }, @@ -16407,7 +16146,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "459f0273-b38a-454e-b910-937e6ea1580e", + "id": "1554dabd-cb9c-469a-9f0c-9c04d8d026bf", "universalIdentifier": "20202020-8c57-4e7f-84f5-f373f68e1b82", "type": "RELATION", "name": "workflow", @@ -16420,8 +16159,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -16431,30 +16170,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", + "id": "613d9797-95db-4eaa-99b2-1814b529f26b", "nameSingular": "workflowRun", "namePlural": "workflowRuns" }, "targetObjectMetadata": { "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", "nameSingular": "workflow", "namePlural": "workflows" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "459f0273-b38a-454e-b910-937e6ea1580e", + "id": "1554dabd-cb9c-469a-9f0c-9c04d8d026bf", "name": "workflow" }, "targetFieldMetadata": { "__typename": "Field", - "id": "fced1683-e122-4618-9f14-fc4ac2e6ebb9", + "id": "19b372d2-98a4-4bb1-9ba7-6d326162ec1a", "name": "runs" } }, @@ -16462,7 +16201,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "86e20eb8-69f9-453b-946c-919f04163304", + "id": "be15f442-175d-405b-88e8-dda545946491", "universalIdentifier": "20202020-2f52-4ba8-8dc4-d0d6adb9578d", "type": "RELATION", "name": "workflowVersion", @@ -16475,8 +16214,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -16486,30 +16225,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", + "id": "613d9797-95db-4eaa-99b2-1814b529f26b", "nameSingular": "workflowRun", "namePlural": "workflowRuns" }, "targetObjectMetadata": { "__typename": "Object", - "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", + "id": "54bf871f-e183-471f-a66c-309507af74da", "nameSingular": "workflowVersion", "namePlural": "workflowVersions" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "86e20eb8-69f9-453b-946c-919f04163304", + "id": "be15f442-175d-405b-88e8-dda545946491", "name": "workflowVersion" }, "targetFieldMetadata": { "__typename": "Field", - "id": "ef9239be-aa42-4804-badd-154638418497", + "id": "4686750d-3e69-4f1d-a191-360e627e2f60", "name": "runs" } }, @@ -16519,9 +16258,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "7fca0df5-3d7c-45ea-b447-d444befca672", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "f074b144-be83-4986-8d89-2dd52f0a99e7", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_9fdeb410f15f569f2843698c5b3", "indexWhereClause": null, "indexType": "BTREE", @@ -16530,19 +16269,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "e00a360b-ba87-49e0-9976-70e22c7f775e", - "fieldMetadataId": "86e20eb8-69f9-453b-946c-919f04163304", - "createdAt": "2026-02-26T11:55:16.409Z", - "updatedAt": "2026-02-26T11:55:16.409Z", + "id": "290b6c4f-2acb-4e37-b718-f089218808e4", + "fieldMetadataId": "be15f442-175d-405b-88e8-dda545946491", + "createdAt": "2026-02-27T01:17:26.906Z", + "updatedAt": "2026-02-27T01:17:26.906Z", "order": 0 } ] }, { "__typename": "Index", - "id": "d392de10-f1d9-49ee-86f9-3ab923ce6adf", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "27c1a4e5-0eea-4bc0-863a-487e4e456066", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_eced9eb2a6cc8f9a5b49fe4b04e", "indexWhereClause": null, "indexType": "BTREE", @@ -16551,19 +16290,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "4f95fdaa-0419-4c12-9574-6c5c018addb4", - "fieldMetadataId": "459f0273-b38a-454e-b910-937e6ea1580e", - "createdAt": "2026-02-26T11:55:16.410Z", - "updatedAt": "2026-02-26T11:55:16.410Z", + "id": "f168c60a-a84d-467f-8bd9-a12966ae07ba", + "fieldMetadataId": "1554dabd-cb9c-469a-9f0c-9c04d8d026bf", + "createdAt": "2026-02-27T01:17:26.907Z", + "updatedAt": "2026-02-27T01:17:26.907Z", "order": 0 } ] }, { "__typename": "Index", - "id": "298e819c-fd39-4347-a08e-cd82604abd0a", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "8b663c12-4696-4a7e-8f59-fcc19483e28d", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_261d8661b94dbb98cc85cffab46", "indexWhereClause": null, "indexType": "GIN", @@ -16572,10 +16311,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "27141de6-87a2-4669-829a-f91d932fd741", - "fieldMetadataId": "dfd75fa5-981b-4b13-b642-8c9660039c1c", - "createdAt": "2026-02-26T11:55:16.410Z", - "updatedAt": "2026-02-26T11:55:16.410Z", + "id": "eff0d7e8-3af5-43c4-b676-ed8d2433258c", + "fieldMetadataId": "b19379a4-8b94-4543-9804-24c353470bde", + "createdAt": "2026-02-27T01:17:26.908Z", + "updatedAt": "2026-02-27T01:17:26.908Z", "order": 0 } ] @@ -16587,242 +16326,33 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "4a6d149e-0a0d-4345-b95f-81dcac36c54c", - "universalIdentifier": "20202020-8f1d-4eef-9f85-0d1965e27221", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents", + "id": "5f90b5d9-b823-4278-b3db-fc540f13936a", + "universalIdentifier": "20202020-3840-4b6d-9425-0c5188b05ca8", + "nameSingular": "dashboard", + "namePlural": "dashboards", "isCustom": false, "isRemote": false, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "06204ec3-7a79-477a-bf0e-6be2881ac09e", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "2cd07d9a-4167-4c91-9002-4f543a28f400", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": "D", "isLabelSyncedWithName": false, - "isSearchable": false, + "isSearchable": true, "duplicateCriteria": null, - "labelSingular": "Calendar event", - "labelPlural": "Calendar events", - "description": "Calendar events", - "icon": "IconCalendar", - "indexMetadataList": [], + "labelSingular": "Dashboard", + "labelPlural": "Dashboards", + "description": "A dashboard", + "icon": "IconLayoutDashboard", "fieldsList": [ { "__typename": "Field", - "id": "f4afc12e-b67e-49cb-960b-da86cd3f6143", - "universalIdentifier": "20202020-641a-4ffe-960d-c3c186d95b17", - "type": "TEXT", - "name": "location", - "label": "Location", - "description": "Location", - "icon": "IconMapPin", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "478dbb69-988b-4af6-a9ac-1347876a7d61", - "universalIdentifier": "20202020-335b-4e04-b470-43b84b64863c", - "type": "BOOLEAN", - "name": "isCanceled", - "label": "Is canceled", - "description": "Is canceled", - "icon": "IconCalendarCancel", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "45dd1288-c982-4afc-8f5b-dc1151e4a14c", - "universalIdentifier": "20202020-551c-402c-bb6d-dfe9efe86bcb", - "type": "BOOLEAN", - "name": "isFullDay", - "label": "Is Full Day", - "description": "Is Full Day", - "icon": "IconHours24", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "87c7a794-5a22-4fb4-ae41-ecd5fc4860af", - "universalIdentifier": "20202020-2c57-4c75-93c5-2ac950a6ed67", - "type": "DATE_TIME", - "name": "startsAt", - "label": "Start Date", - "description": "Start Date", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9efe8953-616e-4a8e-ba35-000cb771a9b3", - "universalIdentifier": "20202020-2554-4ee1-a617-17907f6bab21", - "type": "DATE_TIME", - "name": "endsAt", - "label": "End Date", - "description": "End Date", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b4d0e0fc-06d7-4b0c-a5c7-29ae11bbd70c", - "universalIdentifier": "20202020-9f03-4058-a898-346c62181599", - "type": "DATE_TIME", - "name": "externalCreatedAt", - "label": "Creation DateTime", - "description": "Creation DateTime", - "icon": "IconCalendarPlus", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1c683665-67d6-45a2-9865-fd8b148f6fbf", - "universalIdentifier": "20202020-b355-4c18-8825-ef42c8a5a755", - "type": "DATE_TIME", - "name": "externalUpdatedAt", - "label": "Update DateTime", - "description": "Update DateTime", - "icon": "IconCalendarCog", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "00f29e10-e91a-4623-afea-a0d17e76cf80", - "universalIdentifier": "20202020-52c4-4266-a98f-e90af0b4d271", - "type": "TEXT", - "name": "description", - "label": "Description", - "description": "Description", - "icon": "IconFileDescription", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "004eb1db-78b8-4db5-bc09-fb80884b56c8", - "universalIdentifier": "20202020-c04a-4051-8a51-9cadbe0f1e2d", + "id": "2bccf599-88d9-4c19-9a89-e27ee195b582", + "universalIdentifier": "20202020-da1a-41d1-8ad1-abcdefabcdef", "type": "UUID", "name": "id", "label": "Id", @@ -16834,21 +16364,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "7b848693-9912-4e9b-a4c1-abcf9f4bd434", - "universalIdentifier": "20202020-c04b-4052-9b52-adbecf1f2e3e", + "id": "b3ff6a15-5e15-4ba5-8864-235828df13e2", + "universalIdentifier": "20202020-da1b-41d2-9bd2-bcdefabcdefa", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -16860,8 +16390,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -16869,14 +16399,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a7acc624-72a1-43b8-ad0d-75726200eb2f", - "universalIdentifier": "20202020-c04c-4053-8c53-becf0f2f3e4f", + "id": "7b0a89ad-99b1-4f96-a411-0ca71e80784f", + "universalIdentifier": "20202020-da1c-41d3-8cd3-cdefabcdefab", "type": "DATE_TIME", "name": "updatedAt", "label": "Last update", @@ -16888,8 +16418,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -16897,14 +16427,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "0c9b73dd-0bbf-4014-8b89-94a20fd688d3", - "universalIdentifier": "20202020-c04d-4054-9d54-cd0f1f3f4e5f", + "id": "4be612f5-a764-48a4-b4f7-cf1bd083ec36", + "universalIdentifier": "20202020-da1d-41d4-9dd4-defabcdefabc", "type": "DATE_TIME", "name": "deletedAt", "label": "Deleted at", @@ -16916,8 +16446,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -16925,14 +16455,92 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b0524a0d-97ed-4175-b287-3877a263843a", - "universalIdentifier": "664a9500-2641-4caa-8d95-069807bb2eb4", + "id": "2cd07d9a-4167-4c91-9002-4f543a28f400", + "universalIdentifier": "20202020-20ee-4091-95dc-44b57eda3a89", + "type": "TEXT", + "name": "title", + "label": "Title", + "description": "Dashboard title", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "496d62a7-b769-4ae3-af02-80844fd33db2", + "universalIdentifier": "20202020-38af-409b-95f0-7f08aa5f420f", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Dashboard record Position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "696530b1-742a-484a-af65-d44c3c737fc1", + "universalIdentifier": "20202020-bb53-4648-aa36-1d9d54e6f7f2", + "type": "UUID", + "name": "pageLayoutId", + "label": "Page Layout ID", + "description": "Dashboard page layout", + "icon": "IconLayout", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "457e9c88-ff16-40eb-9c16-c1c5a6e3f828", + "universalIdentifier": "20202020-ff32-4fa1-b7ad-407cc6aa0734", "type": "ACTOR", "name": "createdBy", "label": "Created by", @@ -16944,8 +16552,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -16955,14 +16563,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "5a3abafe-ec56-40ce-9763-8f894273b647", - "universalIdentifier": "1081c196-d675-4801-b9e1-7d8637b48eab", + "id": "1f542356-d935-4296-ac4e-2d91148b022b", + "universalIdentifier": "53ee42e7-f157-42b5-b278-a5fa9b378307", "type": "ACTOR", "name": "updatedBy", "label": "Updated by", @@ -16974,8 +16582,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -16985,40 +16593,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "436af65b-47bf-4c51-be3f-1703f3f51f08", - "universalIdentifier": "e9488e9a-0abe-4500-8c1d-bfbd6b8cffad", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Calendar event record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fede275a-abb7-40f5-836d-8fa109d97aa7", - "universalIdentifier": "b9e7825c-d491-4414-b904-910c00b5b93b", + "id": "c346527a-f7b1-47b0-bc93-2e36c973bf37", + "universalIdentifier": "20202020-0bcc-47a4-8360-2e35a7133f7a", "type": "TS_VECTOR", "name": "searchVector", "label": "Search vector", @@ -17030,8 +16612,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -17040,118 +16622,5525 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "06204ec3-7a79-477a-bf0e-6be2881ac09e", - "universalIdentifier": "20202020-080e-49d1-b21d-9702a7e2525c", + "id": "b4645a7a-83d4-4a3e-8216-bc9b5b9c5e37", + "universalIdentifier": "20202020-bf6f-4220-8c55-2764f1175870", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Attachments linked to the dashboard", + "icon": "IconFileImport", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "5f90b5d9-b823-4278-b3db-fc540f13936a", + "nameSingular": "dashboard", + "namePlural": "dashboards" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b4645a7a-83d4-4a3e-8216-bc9b5b9c5e37", + "name": "attachments" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "865fda8f-8087-4a9d-995a-9c4e7f7a7502", + "universalIdentifier": "99c330c0-5b7d-4276-a764-aed84499dfb5", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Timeline activities linked to the dashboard", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "5f90b5d9-b823-4278-b3db-fc540f13936a", + "nameSingular": "dashboard", + "namePlural": "dashboards" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "865fda8f-8087-4a9d-995a-9c4e7f7a7502", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a65b5018-0202-4abd-8b4b-93f48cdf9c23", + "universalIdentifier": "20202020-f032-478f-88fa-6426ff6f1e4c", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the dashboard", + "icon": "IconHeart", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "5f90b5d9-b823-4278-b3db-fc540f13936a", + "nameSingular": "dashboard", + "namePlural": "dashboards" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "a65b5018-0202-4abd-8b4b-93f48cdf9c23", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "fd546307-50fb-46f2-be3c-0fc7fc158054", + "name": "dashboard" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "79458a22-07c9-4fee-8c77-610e73e87791", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_f3b76c5322b31cba175b2eccec8", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "3d69c955-8ce8-43e0-a1c8-00da41f79f86", + "fieldMetadataId": "c346527a-f7b1-47b0-bc93-2e36c973bf37", + "createdAt": "2026-02-27T01:17:26.875Z", + "updatedAt": "2026-02-27T01:17:26.875Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "54bf871f-e183-471f-a66c-309507af74da", + "universalIdentifier": "20202020-d65d-4ab9-9344-d77bfb376a3d", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "d4edcdea-25ae-48cc-8423-c7a456e92ebb", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Workflow Version", + "labelPlural": "Workflow Versions", + "description": "A workflow version", + "icon": "IconVersions", + "fieldsList": [ + { + "__typename": "Field", + "id": "ec26f1fe-df97-4e04-b297-5dd922607724", + "universalIdentifier": "20202020-f04a-41a1-8aa1-abcdefabcdef", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "37e36874-3721-49f7-b447-f93c75836b56", + "universalIdentifier": "20202020-f04b-41a2-9ba2-bcdefabcdefa", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8283c602-19de-4212-a860-67bac80041d5", + "universalIdentifier": "20202020-f04c-41a3-8ca3-cdefabcdefab", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a2f2df94-558e-48ea-a4fc-9ceb446fd884", + "universalIdentifier": "20202020-f04d-41a4-9da4-defabcdefabc", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "19ba7434-a452-4296-9945-c2df44a4a194", + "universalIdentifier": "34f592a7-5c13-4c8b-8473-7bef00848b4e", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "dc620ec8-591f-43f9-95a9-ccece08b6250", + "universalIdentifier": "4f8777e6-c5eb-40c6-bb4c-ed9dcf0d81e9", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d4edcdea-25ae-48cc-8423-c7a456e92ebb", + "universalIdentifier": "20202020-a12f-4cca-9937-a2e40cc65509", "type": "TEXT", - "name": "title", - "label": "Title", - "description": "Title", - "icon": "IconH1", + "name": "name", + "label": "Name", + "description": "The workflow version name", + "icon": "IconSettingsAutomation", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6d928ff0-4373-42e8-85be-0895462e74d1", - "universalIdentifier": "20202020-f24b-45f4-b6a3-d2f9fcb98714", + "id": "e305f3c2-1142-4b7e-942f-c0aa94559618", + "universalIdentifier": "20202020-4eae-43e7-86e0-212b41a30b48", + "type": "RAW_JSON", + "name": "trigger", + "label": "Version trigger", + "description": "Json object to provide trigger", + "icon": "IconSettingsAutomation", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b827e1e6-1026-4bd7-81fb-044749c60774", + "universalIdentifier": "20202020-5988-4a64-b94a-1f9b7b989039", + "type": "RAW_JSON", + "name": "steps", + "label": "Version steps", + "description": "Json object to provide steps", + "icon": "IconSettingsAutomation", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b5c76c44-5aea-418c-b9df-0d6575a3a4c7", + "universalIdentifier": "20202020-5a34-440e-8a25-39d8c3d1d4cf", + "type": "SELECT", + "name": "status", + "label": "Version status", + "description": "The workflow version status", + "icon": "IconStatusChange", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'DRAFT'", + "options": [ + { + "id": "20202020-e3fe-4308-bb57-931bb8098aa0", + "color": "yellow", + "label": "Draft", + "value": "DRAFT", + "position": 0 + }, + { + "id": "20202020-e9da-428f-8499-bce1b020660b", + "color": "green", + "label": "Active", + "value": "ACTIVE", + "position": 1 + }, + { + "id": "20202020-e48d-4159-980d-2cc1235fc918", + "color": "orange", + "label": "Deactivated", + "value": "DEACTIVATED", + "position": 2 + }, + { + "id": "20202020-5e5e-48fe-bcd6-7688ec280b30", + "color": "gray", + "label": "Archived", + "value": "ARCHIVED", + "position": 3 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c26061d1-e296-4368-b7fd-79e9a22c5826", + "universalIdentifier": "20202020-791d-4950-ab28-0e704767ae1c", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Workflow version position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f124fb43-4530-4a90-af89-c33ae4f70ca4", + "universalIdentifier": "20202020-3f17-44ef-b8c1-b282ae8469b2", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "dce31db6-aca2-407a-acf5-236d717d2800", + "universalIdentifier": "20202020-b8e0-4e57-928d-b51671cc71f2", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the workflow version", + "icon": "IconHeart", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "54bf871f-e183-471f-a66c-309507af74da", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "dce31db6-aca2-407a-acf5-236d717d2800", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "6e710e3a-4956-4fb4-bfa7-b0942e974847", + "name": "workflowVersion" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a0272e8a-eda0-4237-b564-5653d9492577", + "universalIdentifier": "20202020-fcb0-4695-b17e-3b43a421c633", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Timeline activities linked to the version", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "54bf871f-e183-471f-a66c-309507af74da", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "a0272e8a-eda0-4237-b564-5653d9492577", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b53ff967-d031-4948-8511-244de53d3e1c", + "universalIdentifier": "20202020-afa3-46c3-91b0-0631ca6aa1c8", + "type": "RELATION", + "name": "workflow", + "label": "Workflow", + "description": "WorkflowVersion workflow", + "icon": "IconSettingsAutomation", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "workflowId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "54bf871f-e183-471f-a66c-309507af74da", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", + "nameSingular": "workflow", + "namePlural": "workflows" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b53ff967-d031-4948-8511-244de53d3e1c", + "name": "workflow" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0a87b634-8df5-471e-a593-9722294e5367", + "name": "versions" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4686750d-3e69-4f1d-a191-360e627e2f60", + "universalIdentifier": "20202020-1d08-46df-901a-85045f18099a", + "type": "RELATION", + "name": "runs", + "label": "Runs", + "description": "Workflow runs linked to the version.", + "icon": "IconRun", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "54bf871f-e183-471f-a66c-309507af74da", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "613d9797-95db-4eaa-99b2-1814b529f26b", + "nameSingular": "workflowRun", + "namePlural": "workflowRuns" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "4686750d-3e69-4f1d-a191-360e627e2f60", + "name": "runs" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "be15f442-175d-405b-88e8-dda545946491", + "name": "workflowVersion" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "6e83287f-dcdd-4874-8c0c-85a9fa22a28d", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_6dbfc4d091e55b676e5f698c2c2", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "ce12f1a8-9acf-4495-8211-eac7b9d5e61f", + "fieldMetadataId": "b53ff967-d031-4948-8511-244de53d3e1c", + "createdAt": "2026-02-27T01:17:26.908Z", + "updatedAt": "2026-02-27T01:17:26.908Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "d7ee8691-5b69-4ad0-9b82-9a433d19d55d", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_51329bbcdab6618a75361670c26", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "c0c9e9d4-5d5c-4462-b99d-bd7674b2a064", + "fieldMetadataId": "f124fb43-4530-4a90-af89-c33ae4f70ca4", + "createdAt": "2026-02-27T01:17:26.909Z", + "updatedAt": "2026-02-27T01:17:26.909Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "545a3d39-02d9-4057-9ad6-61c294b401c4", + "universalIdentifier": "20202020-3319-4234-a34c-7f3b9d2e4d1f", + "nameSingular": "workflowAutomatedTrigger", + "namePlural": "workflowAutomatedTriggers", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "430b094e-b0f6-46a9-99a5-77303c4ace22", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Workflow Automated Trigger", + "labelPlural": "Workflow Automated Triggers", + "description": "A workflow automated trigger", + "icon": "IconSettingsAutomation", + "fieldsList": [ + { + "__typename": "Field", + "id": "430b094e-b0f6-46a9-99a5-77303c4ace22", + "universalIdentifier": "20202020-f01a-4171-8a71-abcdefabcdef", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "cf610268-b909-4b39-a802-5e870297ede0", + "universalIdentifier": "20202020-f01b-4172-9b72-bcdefabcdefa", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b3ca122e-c4eb-4bc9-be09-d2a5b3bfc4de", + "universalIdentifier": "20202020-f01c-4173-8c73-cdefabcdefab", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "ff3f85f8-308b-4571-9994-577073889f8e", + "universalIdentifier": "20202020-f01d-4174-9d74-defabcdefabc", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b957c7f8-3d6c-4d34-b43f-e4efdc593a1e", + "universalIdentifier": "5cea2f46-3779-4782-9fce-3062652e2dfd", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "ce0ff39d-04ea-4e63-bb49-c2cc24371087", + "universalIdentifier": "017d3587-98bd-43ad-b5a6-cb8125105641", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3c1cdd99-accf-4f57-9546-d16ac69eba57", + "universalIdentifier": "f4c5eb0a-8a86-49a2-a775-941eaad98fc9", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "WorkflowAutomatedTrigger record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c82fdf52-35c2-47ce-bbd1-1a7e97c8fb5d", + "universalIdentifier": "dae934ca-bfca-4101-8211-8eae6e2b5513", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e309d641-484d-4978-b86f-8db2ae3c3344", + "universalIdentifier": "20202020-3319-4234-a34c-3f92c1ab56e7", + "type": "SELECT", + "name": "type", + "label": "Automated Trigger Type", + "description": "The workflow automated trigger type", + "icon": "IconSettingsAutomation", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'DATABASE_EVENT'", + "options": [ + { + "id": "20202020-ccd5-4f45-9292-f6b2fe81b22c", + "color": "green", + "label": "Database Event", + "value": "DATABASE_EVENT", + "position": 0 + }, + { + "id": "20202020-07b8-4e8f-b218-997ac813c209", + "color": "blue", + "label": "Cron", + "value": "CRON", + "position": 1 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "21a1878f-5254-46e9-838d-1bff8e570f3d", + "universalIdentifier": "20202020-3319-4234-a34c-bac8f903de12", + "type": "RAW_JSON", + "name": "settings", + "label": "Settings", + "description": "The workflow automated trigger settings", + "icon": "IconSettings", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "6b553e0c-e43d-48e9-9809-de6a31296c0f", + "universalIdentifier": "20202020-3319-4234-a34c-8e1a4d2f7c03", + "type": "RELATION", + "name": "workflow", + "label": "Workflow", + "description": "WorkflowAutomatedTrigger workflow", + "icon": "IconSettingsAutomation", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "workflowId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "545a3d39-02d9-4057-9ad6-61c294b401c4", + "nameSingular": "workflowAutomatedTrigger", + "namePlural": "workflowAutomatedTriggers" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", + "nameSingular": "workflow", + "namePlural": "workflows" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "6b553e0c-e43d-48e9-9809-de6a31296c0f", + "name": "workflow" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "59483686-03bc-4b69-94ff-59eb4033ecb4", + "name": "automatedTriggers" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "08d7f107-7328-4a3d-871f-09b1a10c5780", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_397bfb7946782933c476b98d925", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "b17ad30a-0fd5-4cab-9c84-561f5e068714", + "fieldMetadataId": "6b553e0c-e43d-48e9-9809-de6a31296c0f", + "createdAt": "2026-02-27T01:17:26.906Z", + "updatedAt": "2026-02-27T01:17:26.906Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "53e8d9b5-abfd-4a32-b850-f9ec15c8501a", + "universalIdentifier": "20202020-a1c3-47a6-9732-27e5b1e8436d", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "3cb57cb6-fd57-4ed4-a063-d40d9b946577", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Calendar event participant", + "labelPlural": "Calendar event participants", + "description": "Calendar event participants", + "icon": "IconCalendar", + "fieldsList": [ + { + "__typename": "Field", + "id": "32773dec-a948-44a0-a8e0-48f18de26ac7", + "universalIdentifier": "20202020-c03a-4041-8a41-5e6f7a8b9cad", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "6a1641fc-ff98-4b45-b83c-347ab533056a", + "universalIdentifier": "20202020-c03b-4042-9b42-6f7a8b9cadbe", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "65b8c298-c108-4fa8-b3c6-331890da3788", + "universalIdentifier": "20202020-c03c-4043-8c43-7a8b9cadbecf", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a1942c6a-df8d-4aa8-b830-443f2caf7185", + "universalIdentifier": "20202020-c03d-4044-9d44-8b9cadbecd0f", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "1a1b48bb-5417-4187-83ac-904f2e998c75", + "universalIdentifier": "9e9ec14d-b889-448e-afe5-40e407be11d1", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "602e1d9d-c3c6-412d-b819-72253edd6e29", + "universalIdentifier": "a2c6efda-06bf-418e-808a-dac9fd64ab58", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9a68f8a9-1b90-42db-8307-5e5962edaaec", + "universalIdentifier": "fcfa672c-ce6d-4fc1-b978-db58a4cc14f4", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Calendar event participant record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "08a86ae6-20cf-4f51-804e-7066fa227149", + "universalIdentifier": "c9dccf32-64ea-433e-a9a7-09993343bae0", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"handle\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3cb57cb6-fd57-4ed4-a063-d40d9b946577", + "universalIdentifier": "20202020-8692-4580-8210-9e09cbd031a7", "type": "TEXT", - "name": "iCalUid", - "label": "iCal UID", - "description": "iCal UID", - "icon": "IconKey", + "name": "handle", + "label": "Handle", + "description": "Handle", + "icon": "IconMail", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "d1dbb564-00a2-446c-bee7-ded63ffacf53", - "universalIdentifier": "20202020-1c3f-4b5a-b526-5411a82179eb", + "id": "6c08d3c5-08bc-4559-a0b8-992c216479fa", + "universalIdentifier": "20202020-ee1e-4f9f-8ac1-5c0b2f69691e", "type": "TEXT", - "name": "conferenceSolution", - "label": "Conference Solution", - "description": "Conference Solution", - "icon": "IconScreenShare", + "name": "displayName", + "label": "Display Name", + "description": "Display Name", + "icon": "IconUser", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "4a2d1310-d536-4e92-8f43-e599313ba1c5", - "universalIdentifier": "20202020-35da-43ef-9ca0-e936e9dc237b", - "type": "LINKS", - "name": "conferenceLink", - "label": "Meet Link", - "description": "Meet Link", - "icon": "IconLink", + "id": "fc6e6682-e948-4a68-bbd8-527287ec78be", + "universalIdentifier": "20202020-66e7-4e00-9e06-d06c92650580", + "type": "BOOLEAN", + "name": "isOrganizer", + "label": "Is Organizer", + "description": "Is Organizer", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": false, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "77a1c6c4-6d83-40af-bafa-594f6e4e7717", + "universalIdentifier": "20202020-cec0-4be8-8fba-c366abc23147", + "type": "SELECT", + "name": "responseStatus", + "label": "Response Status", + "description": "Response Status", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'NEEDS_ACTION'", + "options": [ + { + "id": "20202020-71eb-4724-9947-8aca3bb51140", + "color": "orange", + "label": "Needs Action", + "value": "NEEDS_ACTION", + "position": 0 + }, + { + "id": "20202020-7a3c-45e8-8bbb-f909a4b821a4", + "color": "red", + "label": "Declined", + "value": "DECLINED", + "position": 1 + }, + { + "id": "20202020-aec0-4845-8ca5-a3c17f635329", + "color": "yellow", + "label": "Tentative", + "value": "TENTATIVE", + "position": 2 + }, + { + "id": "20202020-ffbe-4c58-a05b-b00f7fa86c74", + "color": "green", + "label": "Accepted", + "value": "ACCEPTED", + "position": 3 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "66d2c6fd-1562-4066-b612-355625981913", + "universalIdentifier": "20202020-fe3a-401c-b889-af4f4657a861", + "type": "RELATION", + "name": "calendarEvent", + "label": "Event ID", + "description": "Event ID", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "calendarEventId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "53e8d9b5-abfd-4a32-b850-f9ec15c8501a", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "7063c812-ee93-49ec-aae9-dfc1a3078ce6", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "66d2c6fd-1562-4066-b612-355625981913", + "name": "calendarEvent" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "d417b03a-2915-43c8-a8c4-21608eea7b11", + "name": "calendarEventParticipants" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "2ea47fa7-556f-48ab-b8d9-e695280dfa38", + "universalIdentifier": "20202020-5761-4842-8186-e1898ef93966", + "type": "RELATION", + "name": "person", + "label": "Person", + "description": "Person", + "icon": "IconUser", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "personId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "53e8d9b5-abfd-4a32-b850-f9ec15c8501a", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "2ea47fa7-556f-48ab-b8d9-e695280dfa38", + "name": "person" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1e4ecf31-4538-4979-b5c7-77a4f0977498", + "name": "calendarEventParticipants" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "5e53b2cc-3b3a-4b73-ae98-c60409a27def", + "universalIdentifier": "20202020-20e4-4591-93ed-aeb17a4dcbd2", + "type": "RELATION", + "name": "workspaceMember", + "label": "Workspace Member", + "description": "Workspace Member", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "workspaceMemberId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "53e8d9b5-abfd-4a32-b850-f9ec15c8501a", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "5e53b2cc-3b3a-4b73-ae98-c60409a27def", + "name": "workspaceMember" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "cec55fa9-705a-4a1e-a881-d1daa93a1e55", + "name": "calendarEventParticipants" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "933c5800-f0e8-4a2e-9433-d48fe0b567f7", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_40150517e4f1ab6154e426eafce", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "c30a17be-c473-4734-9252-bd236dc79e4a", + "fieldMetadataId": "66d2c6fd-1562-4066-b612-355625981913", + "createdAt": "2026-02-27T01:17:26.870Z", + "updatedAt": "2026-02-27T01:17:26.870Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "4417eb0d-d052-4122-afb2-2abd24b1d089", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_ba8418718688702d3113fde2fe1", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "8e154cc3-d314-4a8c-9c1d-ef20e3ed6ca4", + "fieldMetadataId": "2ea47fa7-556f-48ab-b8d9-e695280dfa38", + "createdAt": "2026-02-27T01:17:26.870Z", + "updatedAt": "2026-02-27T01:17:26.870Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "c3fffda2-85f3-455a-9240-1218f72ef6e9", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_70c8cfc3c0c8407789db32ad9cf", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "dd3ab573-fe32-4e88-91b6-b1d92180c04b", + "fieldMetadataId": "5e53b2cc-3b3a-4b73-ae98-c60409a27def", + "createdAt": "2026-02-27T01:17:26.871Z", + "updatedAt": "2026-02-27T01:17:26.871Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "universalIdentifier": "26d1d486-06dd-4135-bfb3-9315fa4ea557", + "nameSingular": "rocket", + "namePlural": "rockets", + "isCustom": true, + "isRemote": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:27.139Z", + "updatedAt": "2026-02-27T01:17:27.139Z", + "labelIdentifierFieldMetadataId": "5c5a439c-f4e4-458b-b0a4-d496a3b0e71a", + "imageIdentifierFieldMetadataId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": true, + "duplicateCriteria": null, + "labelSingular": "Rocket", + "labelPlural": "Rockets", + "description": "A rocket", + "icon": "IconRocket", + "fieldsList": [ + { + "__typename": "Field", + "id": "5c5a439c-f4e4-458b-b0a4-d496a3b0e71a", + "universalIdentifier": "7d5bc19a-9eac-493a-8caa-80d84c3a9e7f", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "Name", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.139Z", + "updatedAt": "2026-02-27T01:17:27.139Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "4c2926bd-62c6-4bf4-b924-d1c00bd8d4a6", - "universalIdentifier": "20202020-bdf8-4572-a2cc-ecbb6bcc3a02", + "id": "418f2ddc-7f83-4b70-b8a3-5a812efb84df", + "universalIdentifier": "e25b7afb-7264-4ac3-996b-c4efaa74467e", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": true, + "createdAt": "2026-02-27T01:17:27.139Z", + "updatedAt": "2026-02-27T01:17:27.139Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "804861ca-679b-41ff-97f1-86aefbdc47fe", + "universalIdentifier": "9c891ea4-1550-4ea1-a387-f479b2ecff01", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.139Z", + "updatedAt": "2026-02-27T01:17:27.139Z", + "defaultValue": "now", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "348fc208-0205-4b01-8d48-a1e2733bd4f2", + "universalIdentifier": "59c2727a-7c0a-4077-a9ea-76fc576db357", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.139Z", + "updatedAt": "2026-02-27T01:17:27.139Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0cbca974-530b-437a-8e7a-b5d5755e060f", + "universalIdentifier": "b2b5c53e-1cd4-4e9c-be45-b6105631d4cd", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Deletion date", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.139Z", + "updatedAt": "2026-02-27T01:17:27.139Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a7d4422a-989f-43c7-b1be-37ead1806bed", + "universalIdentifier": "0f6a0c74-f864-42f4-a7b5-549cc0424e63", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.139Z", + "updatedAt": "2026-02-27T01:17:27.139Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a3a30a4d-b0a3-4fe8-8994-9b26ad0ff30f", + "universalIdentifier": "7b6f1448-47cb-49b3-82f3-4be11bd02ca8", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Search vector", + "icon": "IconSearch", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.139Z", + "updatedAt": "2026-02-27T01:17:27.139Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "5760a2ed-5811-421b-b5b9-5b8f2450aa2d", + "universalIdentifier": "dd147bc1-b8f1-4a92-999e-ccbaecdb7d59", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.139Z", + "updatedAt": "2026-02-27T01:17:27.139Z", + "defaultValue": "now", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c3a364bb-a0d5-433d-937f-e291179b994a", + "universalIdentifier": "98b4afe5-4e8d-47dd-84d8-5bcd0da40dd8", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.139Z", + "updatedAt": "2026-02-27T01:17:27.139Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "2366a1fb-80e5-4ec3-89e0-a86d3ffc0f74", + "universalIdentifier": "62a03460-99da-4ac6-8799-efa8bb26152c", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Rockets tied to the Timeline Activity", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "2366a1fb-80e5-4ec3-89e0-a86d3ffc0f74", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c9a81cb8-d1a2-4091-8637-60b79c71813a", + "universalIdentifier": "89717c1a-bdb5-4b1d-a730-20055ad7aa3e", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Rockets tied to the Favorite", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "c9a81cb8-d1a2-4091-8637-60b79c71813a", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "f7538c1b-4e0c-4e88-9307-7a3b293cf08c", + "name": "rocket" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "1e3199b0-d19c-4e51-8f3e-fb1471febb98", + "universalIdentifier": "d195be80-b14a-4ee9-a431-d51b37eec120", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Rockets tied to the Attachment", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "1e3199b0-d19c-4e51-8f3e-fb1471febb98", + "name": "attachments" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "23d12b1b-64a2-4c69-9fed-f9cb33cb05a7", + "universalIdentifier": "f923f027-a3c9-43e3-a2e1-bb24ff61f61f", + "type": "RELATION", + "name": "noteTargets", + "label": "Note Targets", + "description": "Rockets tied to the Note Target", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "23d12b1b-64a2-4c69-9fed-f9cb33cb05a7", + "name": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "07ad123b-8f3b-49d4-9754-c4e6d8751300", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e1c6b2d8-889e-49a0-8343-1df45b593641", + "universalIdentifier": "aea2a1ad-5856-434b-a018-803dfd1be9b4", + "type": "RELATION", + "name": "taskTargets", + "label": "Task Targets", + "description": "Rockets tied to the Task Target", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "e1c6b2d8-889e-49a0-8343-1df45b593641", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "3fafd252-d79a-4fe7-8c16-730b6dd495d1", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "6570d066-45a4-43f4-a508-e33a672f11f4", + "universalIdentifier": "8586f94e-bccc-4386-99bc-5fd8f8055afb", + "type": "RELATION", + "name": "ownedPets", + "label": "Owned Pets", + "description": "Rockets Pet", + "icon": "IconRelationOneToMany", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.223Z", + "updatedAt": "2026-02-27T01:17:28.223Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "6570d066-45a4-43f4-a508-e33a672f11f4", + "name": "ownedPets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "8ea29616-1e89-4351-b5e1-ca7ad4f78014", + "name": "polymorphicOwner" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9625cbbd-d058-430c-b85a-5a7c1527183c", + "universalIdentifier": "413426ba-c584-4c66-9f42-5433b4195baf", + "type": "RELATION", + "name": "helpedPets", + "label": "Helped Pets", + "description": "Rockets Pet", + "icon": "IconRelationOneToMany", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.224Z", + "updatedAt": "2026-02-27T01:17:28.224Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "helpedPetsId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "9625cbbd-d058-430c-b85a-5a7c1527183c", + "name": "helpedPets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "df1f2bd4-22fe-4c38-b051-66608169f8bf", + "name": "polymorphicHelper" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "0f77648e-58eb-4eea-852f-cf624820f0dd", + "createdAt": "2026-02-27T01:17:27.140Z", + "updatedAt": "2026-02-27T01:17:27.140Z", + "name": "IDX_530792e4278e7696c4e3e3e55f8", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "0987abef-ca1c-45bc-9983-dd379c484b37", + "fieldMetadataId": "a3a30a4d-b0a3-4fe8-8994-9b26ad0ff30f", + "createdAt": "2026-02-27T01:17:27.210Z", + "updatedAt": "2026-02-27T01:17:27.210Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "720970ae-acad-4ea3-b638-bd2c7d204cee", + "createdAt": "2026-02-27T01:17:28.224Z", + "updatedAt": "2026-02-27T01:17:28.224Z", + "name": "IDX_5881fea129dd0594d8d0661c787", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": true, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "0f38072e-96c9-4dae-ba58-73e40676a743", + "fieldMetadataId": "9625cbbd-d058-430c-b85a-5a7c1527183c", + "createdAt": "2026-02-27T01:17:28.246Z", + "updatedAt": "2026-02-27T01:17:28.246Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "4f6c7ed3-fffc-475a-a4e6-8afd83f16f98", + "universalIdentifier": "20202020-a433-4456-aa2d-fd9cb26b774a", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "b0873529-caee-4878-be51-6d8e1611c371", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Message Participant", + "labelPlural": "Message Participants", + "description": "Message Participants", + "icon": "IconUserCircle", + "fieldsList": [ + { + "__typename": "Field", + "id": "5dd17a9b-0090-4d35-9634-10505399dbb2", + "universalIdentifier": "20202020-b04a-40e1-8ae1-1a2b3c4d5e6f", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "1d0a9916-cd3c-4e9c-a550-842ff6abd242", + "universalIdentifier": "20202020-b04b-40e2-9be2-2b3c4d5e6f7a", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "dd8ae535-11c1-4caf-adf6-0ec0deb02644", + "universalIdentifier": "20202020-b04c-40e3-8ce3-3c4d5e6f7a8b", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "12133787-3b3d-4c01-b3df-0cdf8a9edcb8", + "universalIdentifier": "20202020-b04d-40e4-9de4-4d5e6f7a8b9c", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "21420446-f656-41ad-96e0-9fd8ea94ee09", + "universalIdentifier": "e0e6aa04-6ad5-4d12-8799-6febf00452c1", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4d382c9d-789f-4ac6-b77b-df36aaebbbdf", + "universalIdentifier": "6c90fd49-22b8-4f91-b4eb-4b9af630e988", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a2d58c8a-76a0-4b81-914b-346278e655b4", + "universalIdentifier": "f49ca74e-dcdf-445d-a707-3c22869b4e6c", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Message Participant record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b66bf690-2d7b-4b07-b655-f5a4d439df6c", + "universalIdentifier": "80fec74f-cda7-46bd-ae37-8998bd4f992b", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"handle\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "fa31cc00-9d45-43a3-8c7c-4bc5a408f8de", + "universalIdentifier": "20202020-65d1-42f4-8729-c9ec1f52aecd", + "type": "SELECT", + "name": "role", + "label": "Role", + "description": "Role", + "icon": "IconAt", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'FROM'", + "options": [ + { + "id": "20202020-761b-4f02-bc28-795f9a67be48", + "color": "green", + "label": "From", + "value": "FROM", + "position": 0 + }, + { + "id": "20202020-86bc-4cf1-a887-c992c1a0f97f", + "color": "blue", + "label": "To", + "value": "TO", + "position": 1 + }, + { + "id": "20202020-fc2b-431f-805c-650ab60c4f88", + "color": "orange", + "label": "Cc", + "value": "CC", + "position": 2 + }, + { + "id": "20202020-fc9c-436e-842a-7e3a9b92766f", + "color": "red", + "label": "Bcc", + "value": "BCC", + "position": 3 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b0873529-caee-4878-be51-6d8e1611c371", + "universalIdentifier": "20202020-2456-464e-b422-b965a4db4a0b", + "type": "TEXT", + "name": "handle", + "label": "Handle", + "description": "Handle", + "icon": "IconAt", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a88b78dd-49aa-4315-a72b-1df3de94abae", + "universalIdentifier": "20202020-36dd-4a4f-ac02-228425be9fac", + "type": "TEXT", + "name": "displayName", + "label": "Display Name", + "description": "Display Name", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "5786ed66-82e8-45b5-a99e-eb89ec2d74dc", + "universalIdentifier": "20202020-985b-429a-9db9-9e55f4898a2a", + "type": "RELATION", + "name": "message", + "label": "Message", + "description": "Message", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "messageId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "4f6c7ed3-fffc-475a-a4e6-8afd83f16f98", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "ac31da17-9686-436d-80e4-5278dcd00e81", + "nameSingular": "message", + "namePlural": "messages" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "5786ed66-82e8-45b5-a99e-eb89ec2d74dc", + "name": "message" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "4ffdf98f-6607-4fd0-a646-1c4ca6a1e77a", + "name": "messageParticipants" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d74c4e2a-279c-46bb-9729-b61c18342461", + "universalIdentifier": "20202020-249d-4e0f-82cd-1b9df5cd3da2", + "type": "RELATION", + "name": "person", + "label": "Person", + "description": "Person", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "personId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "4f6c7ed3-fffc-475a-a4e6-8afd83f16f98", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "d74c4e2a-279c-46bb-9729-b61c18342461", + "name": "person" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "9b9e146a-5f80-42ef-9603-f254e8a30ff9", + "name": "messageParticipants" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d5c64f59-1e63-4b50-96dc-38bba2fe401f", + "universalIdentifier": "20202020-77a7-4845-99ed-1bcbb478be6f", + "type": "RELATION", + "name": "workspaceMember", + "label": "Workspace Member", + "description": "Workspace member", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "workspaceMemberId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "4f6c7ed3-fffc-475a-a4e6-8afd83f16f98", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "d5c64f59-1e63-4b50-96dc-38bba2fe401f", + "name": "workspaceMember" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "659660f4-0f1f-47ed-aa44-b672a4d212f3", + "name": "messageParticipants" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "c84edc97-40bf-43f0-95d1-75794476302c", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_19ad12ae96a5d4357ff3a15ba2b", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "18b3d5ac-bce4-4c4c-b73b-f61804ef3e27", + "fieldMetadataId": "5786ed66-82e8-45b5-a99e-eb89ec2d74dc", + "createdAt": "2026-02-27T01:17:26.887Z", + "updatedAt": "2026-02-27T01:17:26.887Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "4f5fa8a9-4047-4cc3-9f37-257679f9419a", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_47a5ea9e149973d6ef980bdc4f1", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "91fb6c7e-0c8a-4b40-ac6e-63f150b2b892", + "fieldMetadataId": "d74c4e2a-279c-46bb-9729-b61c18342461", + "createdAt": "2026-02-27T01:17:26.887Z", + "updatedAt": "2026-02-27T01:17:26.887Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "1f060b3e-9d49-4b73-ba95-ff2a1f8c936f", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_7a56509bca48a709378017a9135", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "67da04b5-829e-42b9-ac61-664a1ed721f7", + "fieldMetadataId": "d5c64f59-1e63-4b50-96dc-38bba2fe401f", + "createdAt": "2026-02-27T01:17:26.888Z", + "updatedAt": "2026-02-27T01:17:26.888Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "4ace5c8d-0e35-443c-8499-729a92fb36d9", + "universalIdentifier": "20202020-a1b0-40b0-8ab0-5b6c7d8e9f0a", + "nameSingular": "messageChannelMessageAssociationMessageFolder", + "namePlural": "messageChannelMessageAssociationMessageFolders", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "5f2da69d-ac59-4ab4-8c73-3279cea23a3e", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Message Channel Message Association Message Folder", + "labelPlural": "Message Channel Message Association Message Folders", + "description": "Join table linking message channel message associations to message folders", + "icon": "IconFolder", + "fieldsList": [ + { + "__typename": "Field", + "id": "5f2da69d-ac59-4ab4-8c73-3279cea23a3e", + "universalIdentifier": "20202020-a1b2-40b1-8ab1-6b7c8d9e0f1a", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "748a8ef1-9093-46be-8476-e63045530bde", + "universalIdentifier": "20202020-a1b3-40b2-9bb2-7c8d9e0f1a2b", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "752e48ca-4669-4617-b7e0-14221d04e5ee", + "universalIdentifier": "20202020-a1b4-40b3-8cb3-8d9e0f1a2b3c", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "38632b6b-a92f-4087-b283-57f7ced2b0cc", + "universalIdentifier": "20202020-a1b5-40b4-9db4-9e0f1a2b3c4d", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "43a86116-4cb3-48e4-9fb4-340d3c99e910", + "universalIdentifier": "f882a070-3393-4197-8140-b5858c6f7284", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "910a43cc-944b-4ad4-83ea-0a3220d034b8", + "universalIdentifier": "107d13dc-a8ff-493c-8d04-72688c68f8c1", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c2c6c548-a6dc-45e3-b9e9-16721c892f95", + "universalIdentifier": "76fcf020-482a-4d6c-b7b1-ccd6410299fc", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Message channel message association message folder record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "933bf074-b2c4-4cf9-8f76-0b73f272edf9", + "universalIdentifier": "38633a97-0e88-44de-9903-b8c9e0f59a36", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', NULL)", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "19a8ea36-fc54-4d69-af15-54295271cd98", + "universalIdentifier": "7411cfa3-4fd9-4b90-a636-940015fd7243", + "type": "RELATION", + "name": "messageChannelMessageAssociation", + "label": "Message Channel Message Association", + "description": "Message Channel Message Association", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "messageChannelMessageAssociationId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "4ace5c8d-0e35-443c-8499-729a92fb36d9", + "nameSingular": "messageChannelMessageAssociationMessageFolder", + "namePlural": "messageChannelMessageAssociationMessageFolders" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "65e845b0-73aa-4348-99ad-f4d6db898e8f", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "19a8ea36-fc54-4d69-af15-54295271cd98", + "name": "messageChannelMessageAssociation" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "02112f8c-2dde-4be4-8ea9-944f10212be8", + "name": "messageFolders" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b13ccf07-18f4-4cd9-ae01-1fd303849dd8", + "universalIdentifier": "b3369d31-3856-4a7a-b007-ee353918127c", + "type": "RELATION", + "name": "messageFolder", + "label": "Message Folder", + "description": "Message Folder", + "icon": "IconFolder", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "messageFolderId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "4ace5c8d-0e35-443c-8499-729a92fb36d9", + "nameSingular": "messageChannelMessageAssociationMessageFolder", + "namePlural": "messageChannelMessageAssociationMessageFolders" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "356be4c3-b095-4533-94ce-b314cb0653ad", + "nameSingular": "messageFolder", + "namePlural": "messageFolders" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b13ccf07-18f4-4cd9-ae01-1fd303849dd8", + "name": "messageFolder" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "96706178-152e-4ae7-b04f-ee3b78a81ff6", + "name": "messageChannelMessageAssociationMessageFolders" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "5c330a59-82ec-4414-84ea-31e303dabbe2", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_daf00d51b50634730fd77f16bb6", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "2a4fa421-cf9a-452b-b761-5efdf3165d5b", + "fieldMetadataId": "19a8ea36-fc54-4d69-af15-54295271cd98", + "createdAt": "2026-02-27T01:17:26.884Z", + "updatedAt": "2026-02-27T01:17:26.884Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "69170ce0-8aa7-4944-9627-d112c8311a20", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_1db95a87400f7679efc43a15e68", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "69c6068a-85c6-4ad7-aa29-9c2008aa5293", + "fieldMetadataId": "b13ccf07-18f4-4cd9-ae01-1fd303849dd8", + "createdAt": "2026-02-27T01:17:26.885Z", + "updatedAt": "2026-02-27T01:17:26.885Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "4210cc05-a992-4b64-8c67-ca3fcf2d2e40", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_55c9aaf7039b09cec455a872dde", + "indexWhereClause": "\"deletedAt\" IS NULL", + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "9c17cbd0-9287-4ea7-a980-8a533516b69f", + "fieldMetadataId": "19a8ea36-fc54-4d69-af15-54295271cd98", + "createdAt": "2026-02-27T01:17:26.885Z", + "updatedAt": "2026-02-27T01:17:26.885Z", + "order": 0 + }, + { + "__typename": "IndexField", + "id": "7c684b1e-6a81-4a79-9d5f-b235ddb4a189", + "fieldMetadataId": "b13ccf07-18f4-4cd9-ae01-1fd303849dd8", + "createdAt": "2026-02-27T01:17:26.885Z", + "updatedAt": "2026-02-27T01:17:26.885Z", + "order": 1 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "356be4c3-b095-4533-94ce-b314cb0653ad", + "universalIdentifier": "20202020-4955-4fd9-8e59-2dbd373f2a46", + "nameSingular": "messageFolder", + "namePlural": "messageFolders", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "03b5a472-8d81-4f91-97d4-2baee853cf77", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Message Folder", + "labelPlural": "Message Folders", + "description": "Message Folders", + "icon": "IconFolder", + "fieldsList": [ + { + "__typename": "Field", + "id": "03b5a472-8d81-4f91-97d4-2baee853cf77", + "universalIdentifier": "20202020-b03a-40d1-8ad1-dcedfefaabbc", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "94a2a54b-52a6-4242-9b39-906b62240d6e", + "universalIdentifier": "20202020-b03b-40d2-9bd2-edfefaabbccd", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "daca8ebb-e17a-4bef-a7a7-9bfec9bccbb8", + "universalIdentifier": "20202020-b03c-40d3-8cd3-fefaabbccdde", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4e66b1d3-53c2-4286-a3bb-f0555f9ccab2", + "universalIdentifier": "20202020-b03d-40d4-9dd4-faabbccddeef", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "bddf96c0-9b5d-4912-96ce-c0d4a0e58d8f", + "universalIdentifier": "bfe19f84-b640-4ce3-b771-4e7bf18bad14", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "2c7a7b0f-b524-4548-9734-6191c3060841", + "universalIdentifier": "7ec7eea8-8715-4656-a602-3cb4256aaca1", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a7443a1e-539f-4f68-b9b3-fba913bd0055", + "universalIdentifier": "5317d4f4-12c5-469d-8e47-0f3b2ffc95b4", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Message Folder record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "94b5ebf2-a69b-4a44-9069-02155b2a57ee", + "universalIdentifier": "5f2d3937-bafd-4d71-b4cb-b34037efd2e1", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "2797a12e-e1f1-4188-8524-14b61eef6289", + "universalIdentifier": "20202020-7cf8-40bc-a681-b80b771449b7", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "Folder name", + "icon": "IconFolder", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "341e5016-9cd9-4e1f-953e-217444e12062", + "universalIdentifier": "20202020-98cd-49ed-8dfc-cb5796400e64", + "type": "TEXT", + "name": "syncCursor", + "label": "Sync Cursor", + "description": "Sync Cursor", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "1d4ba352-416e-4b77-b0c5-3c72d6cb4ac5", + "universalIdentifier": "20202020-2af5-4a25-b2de-3c9386da941b", + "type": "BOOLEAN", + "name": "isSentFolder", + "label": "Is Sent Folder", + "description": "Is Sent Folder", + "icon": "IconCheck", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": false, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "73e79786-e058-406b-9826-9c8258fd01da", + "universalIdentifier": "20202020-764f-4e09-8f95-cd46b6bfe3c4", + "type": "BOOLEAN", + "name": "isSynced", + "label": "Is Synced", + "description": "Is Synced", + "icon": "IconCheck", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": false, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8c76f6c4-2d1e-4566-8279-1b03f11680ec", + "universalIdentifier": "20202020-e45d-49de-a4aa-587bbf9601f3", + "type": "TEXT", + "name": "parentFolderId", + "label": "Parent Folder ID", + "description": "Parent Folder ID", + "icon": "IconFolder", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "45113404-de88-4885-b74d-a5e5ba887773", + "universalIdentifier": "20202020-f3a8-4d2b-9c7e-1b5f9a8e4c6d", + "type": "TEXT", + "name": "externalId", + "label": "External ID", + "description": "External ID", + "icon": "IconHash", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d17c60d5-e999-4b52-9020-b42194994f02", + "universalIdentifier": "20202020-4f97-4c79-9517-16387fe237f7", + "type": "SELECT", + "name": "pendingSyncAction", + "label": "Pending Sync Action", + "description": "Pending action for folder sync", + "icon": "IconReload", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'NONE'", + "options": [ + { + "id": "20202020-dc59-4dd3-92fe-f41c6491a588", + "color": "red", + "label": "Folder deletion", + "value": "FOLDER_DELETION", + "position": 0 + }, + { + "id": "20202020-aa29-41d3-872b-142174fe6595", + "color": "blue", + "label": "None", + "value": "NONE", + "position": 1 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "263eb09c-9779-4104-b341-ecd41a8d4b35", + "universalIdentifier": "20202020-c9f8-43db-a3e7-7f2e8b5d9c1a", + "type": "RELATION", + "name": "messageChannel", + "label": "Message Channel", + "description": "Message Channel", + "icon": "IconMessage", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "messageChannelId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "356be4c3-b095-4533-94ce-b314cb0653ad", + "nameSingular": "messageFolder", + "namePlural": "messageFolders" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "94688fdc-6133-4125-b3bf-51b6caad382f", + "nameSingular": "messageChannel", + "namePlural": "messageChannels" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "263eb09c-9779-4104-b341-ecd41a8d4b35", + "name": "messageChannel" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "dd48687d-fdb2-4120-920f-d4caeb08e3b3", + "name": "messageFolders" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "96706178-152e-4ae7-b04f-ee3b78a81ff6", + "universalIdentifier": "cce5ce1e-31d0-42e6-83cd-90059244a484", + "type": "RELATION", + "name": "messageChannelMessageAssociationMessageFolders", + "label": "Message Association Folders", + "description": "Message Association Folders (supports multiple folders/labels)", + "icon": "IconFolders", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "356be4c3-b095-4533-94ce-b314cb0653ad", + "nameSingular": "messageFolder", + "namePlural": "messageFolders" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "4ace5c8d-0e35-443c-8499-729a92fb36d9", + "nameSingular": "messageChannelMessageAssociationMessageFolder", + "namePlural": "messageChannelMessageAssociationMessageFolders" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "96706178-152e-4ae7-b04f-ee3b78a81ff6", + "name": "messageChannelMessageAssociationMessageFolders" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "b13ccf07-18f4-4cd9-ae01-1fd303849dd8", + "name": "messageFolder" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "3f3f0212-c446-497f-9464-6e1c3770267b", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_a1bbe482462d9f016582d99d4e6", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "606ddb9c-1585-4f6c-9648-ebf64ce93cd8", + "fieldMetadataId": "263eb09c-9779-4104-b341-ecd41a8d4b35", + "createdAt": "2026-02-27T01:17:26.886Z", + "updatedAt": "2026-02-27T01:17:26.886Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "universalIdentifier": "fc9e5481-c367-4ae6-ab40-2716a9729ced", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories", + "isCustom": true, + "isRemote": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "labelIdentifierFieldMetadataId": "116e5496-8644-4de2-ba2e-6c8b9352fae6", + "imageIdentifierFieldMetadataId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": true, + "duplicateCriteria": null, + "labelSingular": "Employment History", + "labelPlural": "Employment Histories", + "description": "", + "icon": "IconBriefcase", + "fieldsList": [ + { + "__typename": "Field", + "id": "116e5496-8644-4de2-ba2e-6c8b9352fae6", + "universalIdentifier": "ae0484ec-eb74-4bf0-af59-aad96089d606", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": true, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "beae987b-7ddb-49d4-968f-4dfef6a39083", + "universalIdentifier": "5c28cd0d-644a-47c9-9a58-c86c247c0568", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": "now", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "edb25594-ea31-4a99-b526-80c1ae0edd6e", + "universalIdentifier": "dcf0f02b-5232-4683-a76f-4f8815448121", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a19081b9-3658-4f4b-af3f-b8df7ae3a073", + "universalIdentifier": "4c57d379-e103-408e-bc3d-634a5adce735", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Deletion date", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "73809330-42b5-4790-81ec-fac18a3acec9", + "universalIdentifier": "0f5d8b46-84f2-4ba8-adaf-427d280394f7", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "63be169f-afcb-4b37-89fc-4ca6542367c0", + "universalIdentifier": "3c368e74-86cd-45c4-be8f-c79fc06f69df", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Search vector", + "icon": "IconSearch", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', NULL)", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "34042c3e-b91e-4496-8dd3-fb7800fd8108", + "universalIdentifier": "4e8c0433-dadb-4580-bcf0-f66b852ca59c", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": "now", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "250eabc1-d6f3-462f-b3a7-3a1ea7fcfeec", + "universalIdentifier": "23324d5f-52cb-4a3a-aace-fadb0e6c861b", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d11c027b-bcdc-49bc-ab6b-87c7e35b8755", + "universalIdentifier": "43447360-50c3-4d2b-add4-1340dad2a9f1", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "EmploymentHistories tied to the Timeline Activity", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "d11c027b-bcdc-49bc-ab6b-87c7e35b8755", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d8f02374-471c-48db-a8c7-85a86a0f7c53", + "universalIdentifier": "2ce25801-4cbe-4ab0-b2a9-aa118ac7f7d4", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "EmploymentHistories tied to the Favorite", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "d8f02374-471c-48db-a8c7-85a86a0f7c53", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "feb9dc3e-a86a-4f2b-985b-2ce9b2c2713d", + "name": "employmentHistory" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "06883dd7-75c6-4538-8d0f-1f30f6be4d9c", + "universalIdentifier": "e5fd55dc-6254-43ff-ba3b-e7665215e5e2", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "EmploymentHistories tied to the Attachment", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "06883dd7-75c6-4538-8d0f-1f30f6be4d9c", + "name": "attachments" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "ed6f71a0-2b17-4fd9-af77-dbfb5184ee8f", + "universalIdentifier": "a6ae0325-23d9-4988-8866-53e6289354ba", + "type": "RELATION", + "name": "noteTargets", + "label": "Note Targets", + "description": "EmploymentHistories tied to the Note Target", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "ed6f71a0-2b17-4fd9-af77-dbfb5184ee8f", + "name": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "07ad123b-8f3b-49d4-9754-c4e6d8751300", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "5d3c4923-b4f0-4959-bce0-48e6be052104", + "universalIdentifier": "1f4fe3c0-213e-4fc7-a693-869cd9e8286e", + "type": "RELATION", + "name": "taskTargets", + "label": "Task Targets", + "description": "EmploymentHistories tied to the Task Target", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "5d3c4923-b4f0-4959-bce0-48e6be052104", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "3fafd252-d79a-4fe7-8c16-730b6dd495d1", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9146ab09-84d2-46e0-b68c-f4947bc6f60d", + "universalIdentifier": "b2b6bc9a-4d54-4a14-a6c2-9f9d3d5cc556", + "type": "RELATION", + "name": "person", + "label": "Person", + "description": "EmploymentHistories Person", + "icon": "IconUser", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.405Z", + "updatedAt": "2026-02-27T01:17:28.405Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "personId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "9146ab09-84d2-46e0-b68c-f4947bc6f60d", + "name": "person" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0d3ec59b-3ed9-4e25-9882-e58f0d7be540", + "name": "previousCompanies" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "af82354c-fc09-49e1-8a5c-dbf8bff020d7", + "universalIdentifier": "98238069-6b3e-4877-a415-5690f1286f6c", + "type": "RELATION", + "name": "company", + "label": "Company", + "description": "EmploymentHistories Company", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.476Z", + "updatedAt": "2026-02-27T01:17:28.476Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "companyId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "af82354c-fc09-49e1-8a5c-dbf8bff020d7", + "name": "company" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "da8ebad7-75c4-492f-a062-cd7df9ee586d", + "name": "previousEmployees" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "0308cd73-a864-417b-914a-de0edf615939", + "createdAt": "2026-02-27T01:17:27.840Z", + "updatedAt": "2026-02-27T01:17:27.840Z", + "name": "IDX_41ec5c0beb67017cf45244d9fa0", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "d0924a3b-1d0a-4e6e-a0f7-3fe01174c3ad", + "fieldMetadataId": "63be169f-afcb-4b37-89fc-4ca6542367c0", + "createdAt": "2026-02-27T01:17:27.866Z", + "updatedAt": "2026-02-27T01:17:27.866Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "d1979806-7799-42eb-bfdc-a9e0974758cc", + "createdAt": "2026-02-27T01:17:28.405Z", + "updatedAt": "2026-02-27T01:17:28.405Z", + "name": "IDX_cbb4f48ac0e7d2d33d4c412394f", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": true, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "62036dc1-edc0-4d3d-a06a-39ce2247acd7", + "fieldMetadataId": "9146ab09-84d2-46e0-b68c-f4947bc6f60d", + "createdAt": "2026-02-27T01:17:28.414Z", + "updatedAt": "2026-02-27T01:17:28.414Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "00caf47f-93f6-4721-be94-33b7c71d5ac2", + "createdAt": "2026-02-27T01:17:28.476Z", + "updatedAt": "2026-02-27T01:17:28.476Z", + "name": "IDX_9304b6d3edd8cfcae63547a9169", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": true, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "aacbc7ce-6de9-45d0-bb1b-12910597951a", + "fieldMetadataId": "af82354c-fc09-49e1-8a5c-dbf8bff020d7", + "createdAt": "2026-02-27T01:17:28.483Z", + "updatedAt": "2026-02-27T01:17:28.483Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "28d82d16-3079-4669-a560-cc3e7eb0cdcb", + "universalIdentifier": "20202020-e8f2-40e1-a39c-c0e0039c5034", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "4333c0b0-76f7-42ec-b797-84b406194c90", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Calendar Channel", + "labelPlural": "Calendar Channels", + "description": "Calendar Channels", + "icon": "IconCalendar", + "fieldsList": [ + { + "__typename": "Field", + "id": "4e1a3435-41e2-4823-ace7-1fab831e9f12", + "universalIdentifier": "20202020-c02a-4031-8a31-1a2f3b4c5d6e", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "01bad36a-82ee-416d-9a42-a5c24d9c7d7e", + "universalIdentifier": "20202020-c02b-4032-9b32-2b3f4c5d6e7f", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0e13137b-cadb-4d32-92ca-89baa8c2eda6", + "universalIdentifier": "20202020-c02c-4033-8c33-3c4f5d6e7f8a", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "48d10f2f-059d-47eb-8c84-c923ef5932c4", + "universalIdentifier": "20202020-c02d-4034-9d34-4d5f6e7f8a9b", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "74d34eec-df71-4609-bfa3-df4fe362987b", + "universalIdentifier": "664db1a0-76f4-4429-8452-f8e250ab7545", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3b52b774-721f-4eb9-a02f-66df0edd7623", + "universalIdentifier": "6a397eab-3700-4b08-9eb9-d16b61876193", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "949476b0-784b-4e9b-8717-1b098f814c8e", + "universalIdentifier": "566609c9-1c8b-4899-91bb-0af140a89004", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Calendar channel record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "dab98d3e-882b-4f19-b88c-fda3816f69d7", + "universalIdentifier": "bc9a982c-c314-49d6-818a-2661ce7e918f", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"handle\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4333c0b0-76f7-42ec-b797-84b406194c90", + "universalIdentifier": "20202020-1d08-420a-9aa7-22e0f298232d", + "type": "TEXT", + "name": "handle", + "label": "Handle", + "description": "Handle", + "icon": "IconAt", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d9f9b9bf-8df9-40c3-a663-f56e9efc45eb", + "universalIdentifier": "20202020-1b07-4796-9f01-d626bab7ca4d", + "type": "SELECT", + "name": "visibility", + "label": "Visibility", + "description": "Visibility", + "icon": "IconEyeglass", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'SHARE_EVERYTHING'", + "options": [ + { + "id": "20202020-82a0-4859-b356-f5a1d6e3e53d", + "color": "green", + "label": "Metadata", + "value": "METADATA", + "position": 0 + }, + { + "id": "20202020-e5ec-4df5-ba3f-66ca2a79c283", + "color": "orange", + "label": "Share Everything", + "value": "SHARE_EVERYTHING", + "position": 1 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e3f99b7b-d601-4d12-973b-30e50e50a7ac", + "universalIdentifier": "20202020-50fb-404b-ba28-369911a3793a", + "type": "BOOLEAN", + "name": "isContactAutoCreationEnabled", + "label": "Is Contact Auto Creation Enabled", + "description": "Is Contact Auto Creation Enabled", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": true, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "76441f30-7833-4d8c-a1dc-3faf2ab49407", + "universalIdentifier": "20202020-b55d-447d-b4df-226319058775", + "type": "SELECT", + "name": "contactAutoCreationPolicy", + "label": "Contact auto creation policy", + "description": "Automatically create records for people you participated with in an event.", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'AS_PARTICIPANT_AND_ORGANIZER'", + "options": [ + { + "id": "20202020-47c1-4af1-a8a6-540edeafc55e", + "color": "green", + "label": "As Participant and Organizer", + "value": "AS_PARTICIPANT_AND_ORGANIZER", + "position": 0 + }, + { + "id": "20202020-b3cc-4248-b0d1-c8d45c2418b3", + "color": "orange", + "label": "As Participant", + "value": "AS_PARTICIPANT", + "position": 1 + }, + { + "id": "20202020-84ef-4061-9c22-db596e237ddc", + "color": "blue", + "label": "As Organizer", + "value": "AS_ORGANIZER", + "position": 2 + }, + { + "id": "20202020-f170-491f-9597-0e5817e46c17", + "color": "red", + "label": "None", + "value": "NONE", + "position": 3 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d59ecbc4-2a75-4c9d-8f25-a14e77036cf9", + "universalIdentifier": "20202020-fe19-4818-8854-21f7b1b43395", + "type": "BOOLEAN", + "name": "isSyncEnabled", + "label": "Is Sync Enabled", + "description": "Is Sync Enabled", + "icon": "IconRefresh", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": true, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "fc85b0ff-5362-4304-85dd-68d795a1b17e", + "universalIdentifier": "20202020-bac2-4852-a5cb-7a7898992b70", + "type": "TEXT", + "name": "syncCursor", + "label": "Sync Cursor", + "description": "Sync Cursor. Used for syncing events from the calendar provider", + "icon": "IconReload", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4541c6b0-7bfa-4447-a66a-6caec3a5c4b6", + "universalIdentifier": "20202020-7116-41da-8b4b-035975c4eb6a", + "type": "SELECT", + "name": "syncStatus", + "label": "Sync status", + "description": "Sync status", + "icon": "IconStatusChange", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": [ + { + "id": "20202020-ebdc-4fc8-a5c1-4bc6a90fdc3c", + "color": "yellow", + "label": "Ongoing", + "value": "ONGOING", + "position": 1 + }, + { + "id": "20202020-7126-4c26-9940-f5807ed87266", + "color": "blue", + "label": "Not Synced", + "value": "NOT_SYNCED", + "position": 2 + }, + { + "id": "20202020-0302-4201-bf84-aaa26b7ca94e", + "color": "green", + "label": "Active", + "value": "ACTIVE", + "position": 3 + }, + { + "id": "20202020-6dbb-449d-96b0-092189010f42", + "color": "red", + "label": "Failed Insufficient Permissions", + "value": "FAILED_INSUFFICIENT_PERMISSIONS", + "position": 4 + }, + { + "id": "20202020-935c-4333-a614-f49ee2ec6aa7", + "color": "red", + "label": "Failed Unknown", + "value": "FAILED_UNKNOWN", + "position": 5 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e35dc6f4-1efb-4a57-b6e7-e911a5beb5f0", + "universalIdentifier": "20202020-6246-42e6-b5cd-003bd921782c", + "type": "SELECT", + "name": "syncStage", + "label": "Sync stage", + "description": "Sync stage", + "icon": "IconStatusChange", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "'PENDING_CONFIGURATION'", + "options": [ + { + "id": "20202020-60c1-40a3-90ae-61d9ee1083c1", + "color": "blue", + "label": "Calendar event list fetch pending", + "value": "CALENDAR_EVENT_LIST_FETCH_PENDING", + "position": 0 + }, + { + "id": "20202020-8652-444a-b72e-d4b7112179ca", + "color": "green", + "label": "Calendar event list fetch scheduled", + "value": "CALENDAR_EVENT_LIST_FETCH_SCHEDULED", + "position": 1 + }, + { + "id": "20202020-e87c-4cfe-aefc-635ad34ef223", + "color": "orange", + "label": "Calendar event list fetch ongoing", + "value": "CALENDAR_EVENT_LIST_FETCH_ONGOING", + "position": 2 + }, + { + "id": "20202020-876f-449d-9f09-de5c369ff95f", + "color": "blue", + "label": "Calendar events import pending", + "value": "CALENDAR_EVENTS_IMPORT_PENDING", + "position": 3 + }, + { + "id": "20202020-3d2a-4acd-a0ed-197343b3bf60", + "color": "green", + "label": "Calendar events import scheduled", + "value": "CALENDAR_EVENTS_IMPORT_SCHEDULED", + "position": 4 + }, + { + "id": "20202020-e762-4152-bb20-29fdd49e1dff", + "color": "orange", + "label": "Calendar events import ongoing", + "value": "CALENDAR_EVENTS_IMPORT_ONGOING", + "position": 5 + }, + { + "id": "20202020-487c-464f-8caa-c6393b82b17c", + "color": "red", + "label": "Failed", + "value": "FAILED", + "position": 6 + }, + { + "id": "20202020-ba03-4221-b186-402662b68493", + "color": "gray", + "label": "Pending configuration", + "value": "PENDING_CONFIGURATION", + "position": 9 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "de6fbae6-93e5-4985-9f3e-898738388c16", + "universalIdentifier": "20202020-a934-46f1-a8e7-9568b1e3a53e", + "type": "DATE_TIME", + "name": "syncStageStartedAt", + "label": "Sync stage started at", + "description": "Sync stage started at", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3c412dd2-149e-4777-bd28-e8dc9bf3dd73", + "universalIdentifier": "20202020-2ff5-4f70-953a-3d0d36357576", + "type": "DATE_TIME", + "name": "syncedAt", + "label": "Last sync date", + "description": "Last sync date", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "44112f33-6404-4b1d-b6ed-5a0ff8df38a9", + "universalIdentifier": "20202020-525c-4b76-b9bd-0dd57fd11d61", + "type": "NUMBER", + "name": "throttleFailureCount", + "label": "Throttle Failure Count", + "description": "Throttle Failure Count", + "icon": "IconX", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "56bcb165-d95e-4e90-bd73-f4ce3f3cad45", + "universalIdentifier": "20202020-afb0-4a9f-979f-2d5087d71d09", "type": "RELATION", "name": "calendarChannelEventAssociations", "label": "Calendar Channel Event Associations", @@ -17163,8 +22152,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -17172,43 +22161,43 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "4a6d149e-0a0d-4345-b95f-81dcac36c54c", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" + "id": "28d82d16-3079-4669-a560-cc3e7eb0cdcb", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels" }, "targetObjectMetadata": { "__typename": "Object", - "id": "93e2f848-7d84-47aa-85cb-fb1a7bcce3da", + "id": "aa5c2ea8-3c4e-49c4-857d-ccc02378f49c", "nameSingular": "calendarChannelEventAssociation", "namePlural": "calendarChannelEventAssociations" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "4c2926bd-62c6-4bf4-b924-d1c00bd8d4a6", + "id": "56bcb165-d95e-4e90-bd73-f4ce3f3cad45", "name": "calendarChannelEventAssociations" }, "targetFieldMetadata": { "__typename": "Field", - "id": "1de0a895-7219-4cdc-af9d-630935841c31", - "name": "calendarEvent" + "id": "fa14a5c8-0205-48ac-bb6b-3e1dd93e3502", + "name": "calendarChannel" } }, "morphRelations": null }, { "__typename": "Field", - "id": "3bda0746-dea0-4ad3-a2ca-efec19fb262c", - "universalIdentifier": "20202020-e07e-4ccb-88f5-6f3d00458eec", + "id": "2d5fa76f-3b75-4f23-83fa-39db5ed38f57", + "universalIdentifier": "20202020-95b1-4f44-82dc-61b042ae2414", "type": "RELATION", - "name": "calendarEventParticipants", - "label": "Event Participants", - "description": "Event Participants", + "name": "connectedAccount", + "label": "Connected Account", + "description": "Connected Account", "icon": "IconUserCircle", "isCustom": false, "isActive": true, @@ -17216,44 +22205,69 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "relationType": "ONE_TO_MANY" + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "connectedAccountId" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", - "type": "ONE_TO_MANY", + "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "4a6d149e-0a0d-4345-b95f-81dcac36c54c", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" + "id": "28d82d16-3079-4669-a560-cc3e7eb0cdcb", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels" }, "targetObjectMetadata": { "__typename": "Object", - "id": "2428f5af-7438-44b1-94b4-42161fb1a02f", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" + "id": "7470a75c-8b34-4fba-8258-f33a6e645e1c", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "3bda0746-dea0-4ad3-a2ca-efec19fb262c", - "name": "calendarEventParticipants" + "id": "2d5fa76f-3b75-4f23-83fa-39db5ed38f57", + "name": "connectedAccount" }, "targetFieldMetadata": { "__typename": "Field", - "id": "44a1a8c2-6859-42d1-8f5c-b7d91cf677dc", - "name": "calendarEvent" + "id": "583f6285-3cb1-4358-be64-339984436045", + "name": "calendarChannels" } }, "morphRelations": null } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "45f9405c-2b2f-4c6c-bd39-4181a01c7cbc", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_7b40c7f03dd1f998ba765ad0730", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "b84b4ce5-65ab-4bcd-a0da-c4b462576ae9", + "fieldMetadataId": "2d5fa76f-3b75-4f23-83fa-39db5ed38f57", + "createdAt": "2026-02-27T01:17:26.869Z", + "updatedAt": "2026-02-27T01:17:26.869Z", + "order": 0 + } + ] + } ] } }, @@ -17261,7 +22275,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "universalIdentifier": "20202020-bd3d-4c60-8dca-571c71d4447a", "nameSingular": "attachment", "namePlural": "attachments", @@ -17270,11 +22284,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "43586ef1-65ac-443b-bb0f-491767306261", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "3146ccd8-8508-4f76-9d28-279c97aeb628", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, @@ -17286,7 +22300,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "fieldsList": [ { "__typename": "Field", - "id": "c210da33-b608-4dd9-980b-731faa470861", + "id": "0de12783-8e13-4b97-be6d-669e2e3aaf8a", "universalIdentifier": "20202020-a01a-4001-8a01-1d5f8e3c7b2a", "type": "UUID", "name": "id", @@ -17299,20 +22313,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "761b2ac4-a445-4b23-ad5c-b588b8e4bcd4", + "id": "b1645104-f89a-478a-a5ef-52effab514e8", "universalIdentifier": "20202020-a01b-4002-9b02-2e6f9f4d8c3b", "type": "DATE_TIME", "name": "createdAt", @@ -17325,8 +22339,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -17334,13 +22348,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b94f5486-c594-4482-8b37-25543f5fbf0c", + "id": "14c1f532-ef9a-4e62-8147-943d39564579", "universalIdentifier": "20202020-a01c-4003-8c03-3f7fa05d9d4c", "type": "DATE_TIME", "name": "updatedAt", @@ -17353,8 +22367,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -17362,13 +22376,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6ab2f749-d756-4dd0-9ade-eb7b8b89f9c1", + "id": "4df427f9-624b-41f8-836b-1d123a902846", "universalIdentifier": "20202020-a01d-4004-9d04-4f8fb16eae5d", "type": "DATE_TIME", "name": "deletedAt", @@ -17381,8 +22395,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -17390,13 +22404,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "43586ef1-65ac-443b-bb0f-491767306261", + "id": "3146ccd8-8508-4f76-9d28-279c97aeb628", "universalIdentifier": "20202020-87a5-48f8-bbf7-ade388825a57", "type": "TEXT", "name": "name", @@ -17409,20 +22423,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "f8b6d800-1fa3-4746-a3de-dff83097debb", + "id": "d379d9d0-732d-468c-9614-c698e4c9d9ed", "universalIdentifier": "20202020-15db-460e-8166-c7b5d87ad4be", "type": "FILES", "name": "file", @@ -17435,8 +22449,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -17444,13 +22458,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "88cdf701-2b96-4464-a6d5-05c04b97580a", + "id": "80b40aa3-b679-4c6e-9746-f53ba239f5f0", "universalIdentifier": "20202020-0d19-453d-8e8d-fbcda8ca3747", "type": "TEXT", "name": "fullPath", @@ -17463,20 +22477,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "9e80b5a9-deb0-49f0-8107-5fcbe38fa0e7", + "id": "62749ed5-a32d-4af2-a64b-a2f49c92e02f", "universalIdentifier": "20202020-8c3f-4d9e-9a1b-2e5f7a8c9d0e", "type": "SELECT", "name": "fileCategory", @@ -17489,8 +22503,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "'OTHER'", "options": [ { @@ -17553,13 +22567,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "9db6fee7-f92a-4806-9e98-689636ed075f", + "id": "903d61fc-bf09-4ccf-846e-8b700855b36c", "universalIdentifier": "395be3bd-a5c9-463d-aafe-9bc3bbec3f15", "type": "ACTOR", "name": "createdBy", @@ -17572,8 +22586,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -17583,13 +22597,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e9092ccb-4cff-4196-9c55-b8598df052a4", + "id": "650315fd-6c52-48d7-9918-9bd4df071c16", "universalIdentifier": "376239d1-3e65-4cb6-b5d8-e0917d43cc93", "type": "ACTOR", "name": "updatedBy", @@ -17602,8 +22616,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -17613,13 +22627,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "c742c820-67cd-4b3f-ab64-1a702f877184", + "id": "ce727998-024e-42e8-aede-6530e41735f5", "universalIdentifier": "cef8f62c-cd46-4444-8cbb-17d463b7464a", "type": "POSITION", "name": "position", @@ -17632,20 +22646,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "5be14eb3-6778-400c-b2fe-c8c5a9cab319", + "id": "07cdb86f-0178-481a-a715-22dd6d9f5c4e", "universalIdentifier": "e7b42835-cb2e-4456-8558-9225362aa52d", "type": "TS_VECTOR", "name": "searchVector", @@ -17658,8 +22672,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -17668,14 +22682,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", - "universalIdentifier": "20202020-7374-499d-bea3-9354890755b5", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", + "universalIdentifier": "20202020-0158-4aa2-965c-5cdafe21ffa2", "type": "MORPH_RELATION", "name": "target", "label": "Target", @@ -17687,18 +22701,18 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { "onDelete": "CASCADE", "relationType": "MANY_TO_ONE", - "joinColumnName": "targetOpportunityId" + "joinColumnName": "targetPersonId" }, "isLabelSyncedWithName": false, "morphId": "20202020-f634-435d-ab8d-e1168b375c69", - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": [ { @@ -17706,102 +22720,24 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "targetObjectMetadata": { "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b2eeb129-4ee4-4f57-bd3e-0e5515e20b41", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5b593834-d73b-4f0c-b8d9-958bcf788340", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5f4b74fb-fe95-465c-afa6-b6aa08671c20", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", - "nameSingular": "note", - "namePlural": "notes" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "82ac5d8e-0d68-4791-b89d-1aa578a050ca", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "cfe77965-fe0b-4da4-9d71-fb5a47466153", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", "nameSingular": "person", "namePlural": "people" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "88e8c0a3-483d-4202-a34e-97e2e4c62a5f", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", "name": "target" }, "targetFieldMetadata": { "__typename": "Field", - "id": "1e69bade-1c54-4017-8b51-6fda70d984fa", + "id": "1848414f-be0a-4243-8c17-bcebdf5da652", "name": "attachments" } }, @@ -17810,24 +22746,76 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "targetObjectMetadata": { "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", + "id": "919364e3-e0b3-4ea3-9e9b-07001572881c", + "nameSingular": "task", + "namePlural": "tasks" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "cdb8a8eb-4a4f-462c-892b-5109d6631522", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "53fa1449-f637-49e0-9086-90c438cbe752", + "name": "attachments" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "1691dfbb-f84a-4fe8-acd4-a7f35e7673a7", + "nameSingular": "note", + "namePlural": "notes" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "5a615dbd-871f-438b-8a9e-fe19cbfa1c90", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "8e749ca3-a91a-4270-bb74-59b69804ba72", + "name": "attachments" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", "nameSingular": "company", "namePlural": "companies" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "a905696d-1918-4f5a-92b3-78bc15a97508", + "id": "a50a16b0-6b64-4336-97b9-8d5053d18a7c", "name": "target" }, "targetFieldMetadata": { "__typename": "Field", - "id": "db5b7178-2e82-4104-b473-344078ecfcc0", + "id": "ce4aaec1-0195-484f-9971-6d9d980ec179", "name": "attachments" } }, @@ -17836,24 +22824,50 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "targetObjectMetadata": { "__typename": "Object", - "id": "11054c51-6e7a-44a1-9d40-03ce04f21fbe", + "id": "b722860a-2b24-427f-bfe5-2d2450d3b8c9", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "67b197ec-91a2-42fa-bcf8-13625918a293", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "c44505bc-6201-4bb4-80a3-18e49dfc3bc3", + "name": "attachments" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "5f90b5d9-b823-4278-b3db-fc540f13936a", "nameSingular": "dashboard", "namePlural": "dashboards" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "f80a63e5-4190-4d50-b07b-41895b354955", + "id": "31da9583-3cf0-4112-af04-6b93eedd19ac", "name": "target" }, "targetFieldMetadata": { "__typename": "Field", - "id": "ce579a1d-9538-4be9-97bf-cb4572e99aee", + "id": "b4645a7a-83d4-4a3e-8216-bc9b5b9c5e37", "name": "attachments" } }, @@ -17862,24 +22876,24 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "targetObjectMetadata": { "__typename": "Object", - "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", + "id": "d738b5e9-3366-4d9e-bfd9-bc2324028f33", "nameSingular": "workflow", "namePlural": "workflows" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "b7a82cbc-f4e6-4afd-969e-da9c9a1011af", + "id": "44570496-0a8f-4615-8a68-97c7fa44219d", "name": "target" }, "targetFieldMetadata": { "__typename": "Field", - "id": "9ff8a194-bd02-47c9-b46f-306b3a5d2053", + "id": "4f258bc3-7033-4c42-86d4-0af28f7521f6", "name": "attachments" } }, @@ -17888,24 +22902,24 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "targetObjectMetadata": { "__typename": "Object", - "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", + "id": "532838bd-be8c-40e7-8344-c1ae38c28361", "nameSingular": "rocket", "namePlural": "rockets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "c9e8079b-76ac-4576-9109-54df05a38b29", + "id": "e19c1ada-1473-4642-88b3-202b74a21816", "name": "target" }, "targetFieldMetadata": { "__typename": "Field", - "id": "f03d771a-5521-411d-8233-6d87dc508f62", + "id": "1e3199b0-d19c-4e51-8f3e-fb1471febb98", "name": "attachments" } }, @@ -17914,24 +22928,24 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "targetObjectMetadata": { "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", "nameSingular": "pet", "namePlural": "pets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "7615ffc7-9c34-4b64-9220-846519dcd9d0", + "id": "e072918e-8642-4087-9a12-0a1ff9d02646", "name": "target" }, "targetFieldMetadata": { "__typename": "Field", - "id": "13f890e1-27c0-44aa-9e3a-de52f828a38b", + "id": "cc148bdf-b070-4bdf-9ae0-21005ce6ff77", "name": "attachments" } }, @@ -17940,24 +22954,24 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "targetObjectMetadata": { "__typename": "Object", - "id": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", "nameSingular": "surveyResult", "namePlural": "surveyResults" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "14c51790-8baa-46e3-ae44-4f7573430db0", + "id": "26d8f64e-d30a-4f4a-8c4b-64c860c9a71d", "name": "target" }, "targetFieldMetadata": { "__typename": "Field", - "id": "c8a2e68a-a834-4f10-be12-a079daebd391", + "id": "eaa82229-6523-48f0-8159-ce9cfa4fb88e", "name": "attachments" } }, @@ -17966,24 +22980,24 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "targetObjectMetadata": { "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", + "id": "324b82f8-4b90-445a-bdc1-87ed7f30ac80", "nameSingular": "employmentHistory", "namePlural": "employmentHistories" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "4b2b35cd-48a1-48ad-97c3-f86602046b4d", + "id": "47876613-8477-4707-adce-0894b43bdef4", "name": "target" }, "targetFieldMetadata": { "__typename": "Field", - "id": "b3802d73-c2a0-4296-b804-1d71752b392c", + "id": "06883dd7-75c6-4538-8d0f-1f30f6be4d9c", "name": "attachments" } }, @@ -17992,24 +23006,24 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "targetObjectMetadata": { "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", "nameSingular": "petCareAgreement", "namePlural": "petCareAgreements" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "955e2b4e-6633-4d1a-a4ed-5908933e984c", + "id": "5167069c-b4d5-4a0c-8e2f-7ed184204255", "name": "target" }, "targetFieldMetadata": { "__typename": "Field", - "id": "461f0845-c185-45d8-bc8e-9fea081790ec", + "id": "71da3160-935c-4fe2-b931-bc519f56344f", "name": "attachments" } } @@ -18019,9 +23033,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "9536a724-8a94-4f30-8b58-3203a7224ab0", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "fdbb3888-1081-46bb-885f-9ca0da498aef", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_3491dc65669342b9bfb1637f5e0", "indexWhereClause": null, "indexType": "BTREE", @@ -18030,19 +23044,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "658d8984-dde4-493f-ac06-3091086f1b41", - "fieldMetadataId": "5b593834-d73b-4f0c-b8d9-958bcf788340", - "createdAt": "2026-02-26T11:55:16.294Z", - "updatedAt": "2026-02-26T11:55:16.294Z", + "id": "c19da3da-c690-4898-a479-3234d8286376", + "fieldMetadataId": "cdb8a8eb-4a4f-462c-892b-5109d6631522", + "createdAt": "2026-02-27T01:17:26.860Z", + "updatedAt": "2026-02-27T01:17:26.860Z", "order": 0 } ] }, { "__typename": "Index", - "id": "630e7c01-8f61-4750-aa41-530562f0b2a8", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "829380d9-b49c-4674-ad01-92849857c7b9", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_699ff395576ff0f73cc87464166", "indexWhereClause": null, "indexType": "BTREE", @@ -18051,19 +23065,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "911bd301-1d65-4629-98a5-9e580a990ac6", - "fieldMetadataId": "82ac5d8e-0d68-4791-b89d-1aa578a050ca", - "createdAt": "2026-02-26T11:55:16.298Z", - "updatedAt": "2026-02-26T11:55:16.298Z", + "id": "a4491a86-b772-4dc3-875a-9fd7f74b678b", + "fieldMetadataId": "5a615dbd-871f-438b-8a9e-fe19cbfa1c90", + "createdAt": "2026-02-27T01:17:26.862Z", + "updatedAt": "2026-02-27T01:17:26.862Z", "order": 0 } ] }, { "__typename": "Index", - "id": "99053ebe-c9dc-4743-957e-7fa4a1e74673", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "b41d69ff-6340-43a0-835a-336336c363f0", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_04d8ad72536bbeb4430998211f8", "indexWhereClause": null, "indexType": "BTREE", @@ -18072,19 +23086,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "62debc38-50df-45d8-86aa-d4d9e2e2b033", - "fieldMetadataId": "88e8c0a3-483d-4202-a34e-97e2e4c62a5f", - "createdAt": "2026-02-26T11:55:16.300Z", - "updatedAt": "2026-02-26T11:55:16.300Z", + "id": "8008a592-bb29-4627-acc0-fcec42859813", + "fieldMetadataId": "22a7e21a-80bd-4615-bee3-ae53074ad40b", + "createdAt": "2026-02-27T01:17:26.863Z", + "updatedAt": "2026-02-27T01:17:26.863Z", "order": 0 } ] }, { "__typename": "Index", - "id": "84ecc56c-9175-461e-8856-b367a516c32f", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "95db6616-e368-4241-981b-3d613f97eb5d", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_21649fe7fe250834d1dd37125b1", "indexWhereClause": null, "indexType": "BTREE", @@ -18093,19 +23107,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "343426be-1aa4-4c79-b502-f086e67e8c4b", - "fieldMetadataId": "a905696d-1918-4f5a-92b3-78bc15a97508", - "createdAt": "2026-02-26T11:55:16.302Z", - "updatedAt": "2026-02-26T11:55:16.302Z", + "id": "65ee9e7b-be8e-4140-ae4f-6420f342f829", + "fieldMetadataId": "a50a16b0-6b64-4336-97b9-8d5053d18a7c", + "createdAt": "2026-02-27T01:17:26.864Z", + "updatedAt": "2026-02-27T01:17:26.864Z", "order": 0 } ] }, { "__typename": "Index", - "id": "6544f50f-48ce-4217-b397-64b8711fe78c", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "f8ef0a88-1762-438b-92d1-baabfbcc191c", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_fde993c7020a17c3282edf5c9b8", "indexWhereClause": null, "indexType": "BTREE", @@ -18114,19 +23128,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "0c30c86a-3de0-42b5-aa54-4e45ff2e4e59", - "fieldMetadataId": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", - "createdAt": "2026-02-26T11:55:16.304Z", - "updatedAt": "2026-02-26T11:55:16.304Z", + "id": "95373cf9-1802-4092-8d19-8c4a95870ad0", + "fieldMetadataId": "67b197ec-91a2-42fa-bcf8-13625918a293", + "createdAt": "2026-02-27T01:17:26.865Z", + "updatedAt": "2026-02-27T01:17:26.865Z", "order": 0 } ] }, { "__typename": "Index", - "id": "092125f8-db63-4343-8633-38a9a9cdf42e", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "02d7e614-c5eb-4d31-af1e-d8a5bc7d91f6", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_4c7e63468918a5d5233ccb65de7", "indexWhereClause": null, "indexType": "BTREE", @@ -18135,19 +23149,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "6121c790-1385-4204-95a5-8ef612c4d033", - "fieldMetadataId": "f80a63e5-4190-4d50-b07b-41895b354955", - "createdAt": "2026-02-26T11:55:16.306Z", - "updatedAt": "2026-02-26T11:55:16.306Z", + "id": "58687293-be37-40f0-8dec-6cf61f2f83a5", + "fieldMetadataId": "31da9583-3cf0-4112-af04-6b93eedd19ac", + "createdAt": "2026-02-27T01:17:26.865Z", + "updatedAt": "2026-02-27T01:17:26.865Z", "order": 0 } ] }, { "__typename": "Index", - "id": "55e1a6a8-29df-4cc6-8a96-1ccd06b2009f", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "4a61a2e1-ab6b-47d9-821f-d5d94980dac3", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_30f5fd16a4aa058d1a6c4b8ac10", "indexWhereClause": null, "indexType": "BTREE", @@ -18156,10 +23170,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "06cedbaa-b959-4054-ae42-63a121d78b5c", - "fieldMetadataId": "b7a82cbc-f4e6-4afd-969e-da9c9a1011af", - "createdAt": "2026-02-26T11:55:16.308Z", - "updatedAt": "2026-02-26T11:55:16.308Z", + "id": "1aaf29b9-77ab-4376-ba94-40a5c4dfeade", + "fieldMetadataId": "44570496-0a8f-4615-8a68-97c7fa44219d", + "createdAt": "2026-02-27T01:17:26.866Z", + "updatedAt": "2026-02-27T01:17:26.866Z", "order": 0 } ] @@ -18171,944 +23185,34 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "universalIdentifier": "20202020-9549-49dd-b2b2-883999db8938", - "nameSingular": "opportunity", - "namePlural": "opportunities", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "ac177afd-0bd8-4cf0-ad73-699fd65a862f", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": "O", - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Opportunity", - "labelPlural": "Opportunities", - "description": "An opportunity", - "icon": "IconTargetArrow", - "fieldsList": [ - { - "__typename": "Field", - "id": "a0695946-c7aa-4c7e-92c5-653ce468b61b", - "universalIdentifier": "20202020-d01a-4131-8a31-f123456789ab", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "87dbe108-5a39-4b9b-9d70-9cd00f8b2111", - "universalIdentifier": "20202020-d01b-4132-9b32-123456789abc", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a5f20df4-ce04-4bd9-8253-860bd1d5b267", - "universalIdentifier": "20202020-d01c-4133-8c33-23456789abcd", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1cf413d2-df11-4708-995a-9ceba98ad290", - "universalIdentifier": "20202020-d01d-4134-9d34-3456789abcde", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ac177afd-0bd8-4cf0-ad73-699fd65a862f", - "universalIdentifier": "20202020-8609-4f65-a2d9-44009eb422b5", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "The opportunity name", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "25db91fe-e92d-4c4a-b07b-5f965d3b7872", - "universalIdentifier": "20202020-583e-4642-8533-db761d5fa82f", - "type": "CURRENCY", - "name": "amount", - "label": "Amount", - "description": "Opportunity amount", - "icon": "IconCurrencyDollar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "926e1334-7ff1-428e-8b50-7c6fefd2afef", - "universalIdentifier": "20202020-527e-44d6-b1ac-c4158d307b97", - "type": "DATE_TIME", - "name": "closeDate", - "label": "Close date", - "description": "Opportunity close date", - "icon": "IconCalendarEvent", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "87439722-bae2-462c-80ab-7dd344ca5184", - "universalIdentifier": "20202020-6f76-477d-8551-28cd65b2b4b9", - "type": "SELECT", - "name": "stage", - "label": "Stage", - "description": "Opportunity stage", - "icon": "IconProgressCheck", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'NEW'", - "options": [ - { - "id": "20202020-8e01-4afd-9c39-d2063097587a", - "color": "red", - "label": "New", - "value": "NEW", - "position": 0 - }, - { - "id": "20202020-e685-4671-ac32-26d304dacb6e", - "color": "purple", - "label": "Screening", - "value": "SCREENING", - "position": 1 - }, - { - "id": "20202020-dde9-4acc-b5ca-f6531a8ecb4a", - "color": "sky", - "label": "Meeting", - "value": "MEETING", - "position": 2 - }, - { - "id": "20202020-696e-4f6b-91bc-f413e9b2f654", - "color": "turquoise", - "label": "Proposal", - "value": "PROPOSAL", - "position": 3 - }, - { - "id": "20202020-0bb5-4a6f-a8b2-774bbad21104", - "color": "yellow", - "label": "Customer", - "value": "CUSTOMER", - "position": 4 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e15bf013-71c9-4da3-8135-006bb9ab0581", - "universalIdentifier": "20202020-806d-493a-bbc6-6313e62958e2", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Opportunity record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "cd76d95c-8d54-4454-90ac-3a686bbc2ec5", - "universalIdentifier": "20202020-a63e-4a62-8e63-42a51828f831", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "03f21db7-6fc7-480e-bf4e-0fa7737b9307", - "universalIdentifier": "3c8a6095-3f64-4e81-a59e-66c2bd181e11", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e6bdbf51-34ed-469c-8bb6-f39499826a31", - "universalIdentifier": "428a0da5-4b2e-4ce3-b695-89a8b384e6e3", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b2eeb129-4ee4-4f57-bd3e-0e5515e20b41", - "universalIdentifier": "20202020-87c7-4118-83d6-2f4031005209", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "Attachments linked to the opportunity", - "icon": "IconFileImport", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b2eeb129-4ee4-4f57-bd3e-0e5515e20b41", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8043e437-ce0f-426e-9ad4-aae427bf2f78", - "universalIdentifier": "20202020-cbac-457e-b565-adece5fc815f", - "type": "RELATION", - "name": "company", - "label": "Company", - "description": "Opportunity company", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "companyId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "8043e437-ce0f-426e-9ad4-aae427bf2f78", - "name": "company" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "04c28495-803a-4ec2-b02b-dee514d78dc6", - "name": "opportunities" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "350a3c5f-7db2-4b1c-8d6a-873aa70fd7b2", - "universalIdentifier": "20202020-a1c2-4500-aaae-83ba8a0e827a", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Favorites linked to the opportunity", - "icon": "IconHeart", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "350a3c5f-7db2-4b1c-8d6a-873aa70fd7b2", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "817a93f7-3d8c-47cb-b5ca-e9b90b5ed7bf", - "name": "opportunity" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fdaa5686-513d-4ef7-a6af-7eea99ebb549", - "universalIdentifier": "20202020-dd3f-42d5-a382-db58aabf43d3", - "type": "RELATION", - "name": "noteTargets", - "label": "Notes", - "description": "Notes tied to the opportunity", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "fdaa5686-513d-4ef7-a6af-7eea99ebb549", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a91b3619-01d0-4972-9f63-4da7660b3b6a", - "universalIdentifier": "20202020-8dfb-42fc-92b6-01afb759ed16", - "type": "RELATION", - "name": "pointOfContact", - "label": "Point of Contact", - "description": "Opportunity point of contact", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "pointOfContactId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a91b3619-01d0-4972-9f63-4da7660b3b6a", - "name": "pointOfContact" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5a011725-9570-4fc5-9ada-d550d708dc27", - "name": "pointOfContactForOpportunities" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "416ff507-5645-4dbb-a71b-e834477dce27", - "universalIdentifier": "20202020-59c0-4179-a208-4a255f04a5be", - "type": "RELATION", - "name": "taskTargets", - "label": "Tasks", - "description": "Tasks tied to the opportunity", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "416ff507-5645-4dbb-a71b-e834477dce27", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5625119a-15c2-48f5-b5fa-f8548bce2d8f", - "universalIdentifier": "20202020-30e2-421f-96c7-19c69d1cf631", - "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "Timeline Activities linked to the opportunity.", - "icon": "IconTimelineEvent", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5625119a-15c2-48f5-b5fa-f8548bce2d8f", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3cc624b4-d2c3-4a72-b964-cee9c535846a", - "universalIdentifier": "20202020-be7e-4d1e-8e19-3d5c7c4b9f2a", - "type": "RELATION", - "name": "owner", - "label": "Owner", - "description": "Opportunity owner", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "ownerId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3cc624b4-d2c3-4a72-b964-cee9c535846a", - "name": "owner" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b3775628-8775-4338-84f4-0612fc30efd3", - "name": "ownedOpportunities" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "7de22685-ddb9-4f97-bc2a-c15380b06542", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_c0ac950d77b75527f654b7f6a06", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "faa5aa43-2652-4e03-9d31-71431033fb8c", - "fieldMetadataId": "a91b3619-01d0-4972-9f63-4da7660b3b6a", - "createdAt": "2026-02-26T11:55:16.390Z", - "updatedAt": "2026-02-26T11:55:16.390Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "64e0d1ea-57e9-4cdd-a8e8-46837a6557df", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_4b9feee3298c853326bf6ff8e42", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "a13af014-6134-453f-8912-f663087f6ae1", - "fieldMetadataId": "8043e437-ce0f-426e-9ad4-aae427bf2f78", - "createdAt": "2026-02-26T11:55:16.391Z", - "updatedAt": "2026-02-26T11:55:16.391Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "6b375114-4780-458d-8d13-4e0235db723a", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_ae112c10e060420923011767b14", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "302bab52-77a2-4927-8b92-7c7759f1af37", - "fieldMetadataId": "87439722-bae2-462c-80ab-7dd344ca5184", - "createdAt": "2026-02-26T11:55:16.392Z", - "updatedAt": "2026-02-26T11:55:16.392Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "39443e8b-83eb-446d-938d-e0bf138f8e31", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_9f96d65260c4676faac27cb6bf3", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "ad44fb49-2051-4f81-b9c3-f1bb059f468e", - "fieldMetadataId": "e6bdbf51-34ed-469c-8bb6-f39499826a31", - "createdAt": "2026-02-26T11:55:16.393Z", - "updatedAt": "2026-02-26T11:55:16.393Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "38b956fd-1178-4a0c-a919-2a0b5c2874b0", - "universalIdentifier": "20202020-ad1e-4127-bccb-d83ae04d2ccb", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations", + "id": "26f62a07-444a-44b2-abf6-70037ab95e25", + "universalIdentifier": "20202020-849a-4c3e-84f5-a25a7d802271", + "nameSingular": "messageThread", + "namePlural": "messageThreads", "isCustom": false, "isRemote": false, "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "c9a0ff7a-0bdf-4c7e-af6c-af7292d92332", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "00ec7597-41f6-4514-99e2-518a49bb23a3", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, "duplicateCriteria": null, - "labelSingular": "Message Channel Message Association", - "labelPlural": "Message Channel Message Associations", - "description": "Message Synced with a Message Channel", + "labelSingular": "Message Thread", + "labelPlural": "Message Threads", + "description": "Message Thread", "icon": "IconMessage", + "indexMetadataList": [], "fieldsList": [ { "__typename": "Field", - "id": "c9a0ff7a-0bdf-4c7e-af6c-af7292d92332", - "universalIdentifier": "20202020-b01a-40b1-8ab1-5a6b7c8d9eaf", + "id": "00ec7597-41f6-4514-99e2-518a49bb23a3", + "universalIdentifier": "20202020-b05a-40f1-8af1-5e6f7a8b9cad", "type": "UUID", "name": "id", "label": "Id", @@ -19120,21 +23224,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "70beb5cb-fe58-46b0-84d8-a7aff03aa93e", - "universalIdentifier": "20202020-b01b-40b2-9bb2-6b7c8d9eafba", + "id": "cbe35973-5189-49d4-9f9c-62e14b4ba532", + "universalIdentifier": "20202020-b05b-40f2-9bf2-6f7a8b9cadbe", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -19146,8 +23250,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -19155,14 +23259,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "153426b1-29c8-46df-b3ed-106e13c51c3d", - "universalIdentifier": "20202020-b01c-40b3-8cb3-7c8d9eafbacb", + "id": "4dd23a91-5960-4991-998f-22993a4b81e5", + "universalIdentifier": "20202020-b05c-40f3-8cf3-7a8b9cadbecf", "type": "DATE_TIME", "name": "updatedAt", "label": "Last update", @@ -19174,8 +23278,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -19183,14 +23287,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "35a6d778-94ca-4fdf-a9f7-df610243d5d3", - "universalIdentifier": "20202020-b01d-40b4-9db4-8d9eafbacbdc", + "id": "2159eff1-c159-4b0f-8cf3-4fc656d84a4d", + "universalIdentifier": "20202020-b05d-40f4-9df4-8b9cadbecfda", "type": "DATE_TIME", "name": "deletedAt", "label": "Deleted at", @@ -19202,8 +23306,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -19211,14 +23315,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "be9fc3d6-d96f-4865-b209-29f6f87c27d3", - "universalIdentifier": "ce7dc96f-dd33-4bce-9505-cbd381440cec", + "id": "cb48e68f-2b91-421b-8fb1-c9dce06ee2f6", + "universalIdentifier": "b50ce369-9905-46d9-b95b-5e4034d252aa", "type": "ACTOR", "name": "createdBy", "label": "Created by", @@ -19230,8 +23334,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -19241,14 +23345,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e97207ef-1652-4555-80d8-137a1630d5a7", - "universalIdentifier": "334d2ad6-4bc4-4b51-9c92-8ad57652475e", + "id": "0e879c0d-cadd-4ae4-bb57-cbb45cb6e430", + "universalIdentifier": "20fbafd0-0a16-4785-b5a6-f1ef45ef304c", "type": "ACTOR", "name": "updatedBy", "label": "Updated by", @@ -19260,8 +23364,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -19271,18 +23375,18 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a64cf3ac-674f-4d93-8059-dbc03733abb8", - "universalIdentifier": "45d1e083-90d6-4507-b68a-454a9dc3a540", + "id": "6bc9dd07-0ba1-454c-bf48-23b0d95b31f0", + "universalIdentifier": "7490a440-7a62-466e-ba93-75a2f2edfb1e", "type": "POSITION", "name": "position", "label": "Position", - "description": "Message channel message association record position", + "description": "Message Thread record position", "icon": "IconHierarchy2", "isCustom": false, "isActive": true, @@ -19290,21 +23394,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6c926dc6-0ffe-4475-9239-492dfeb1603b", - "universalIdentifier": "edddd409-d9f0-4b93-8e3f-37faef6a3387", + "id": "174205b0-bbb6-458b-acb4-6fcc2986fa75", + "universalIdentifier": "c63e091f-6528-4657-ad2a-b0a158f9e483", "type": "TS_VECTOR", "name": "searchVector", "label": "Search vector", @@ -19316,404 +23420,123 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"messageExternalId\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fa72959e-26bb-470b-b525-2fbccb8ffd86", - "universalIdentifier": "20202020-37d6-438f-b6fd-6503596c8f34", - "type": "TEXT", - "name": "messageExternalId", - "label": "Message External Id", - "description": "Message id from the messaging provider", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "f31016ec-da17-4237-ac0e-3022c2790bff", - "universalIdentifier": "20202020-35fb-421e-afa0-0b8e8f7f9018", - "type": "TEXT", - "name": "messageThreadExternalId", - "label": "Thread External Id", - "description": "Thread id from the messaging provider", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d0c03dcd-1426-4576-8dc4-a443a868aa21", - "universalIdentifier": "75c9b0f7-9e76-44d4-a2f9-47051e61eec7", - "type": "SELECT", - "name": "direction", - "label": "Direction", - "description": "Message Direction", - "icon": "IconDirection", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'INCOMING'", - "options": [ - { - "id": "20202020-3075-4e35-b6a1-27db444a4668", - "color": "green", - "label": "Incoming", - "value": "INCOMING", - "position": 0 - }, - { - "id": "20202020-a15f-4512-9202-391a3c0bbed3", - "color": "blue", - "label": "Outgoing", - "value": "OUTGOING", - "position": 1 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a4b9b0ff-ac52-497b-9e92-308177fb65c9", - "universalIdentifier": "20202020-da5d-4ac5-8743-342ab0a0336b", + "id": "ff159b75-37ac-4745-8b55-6d72f84c992a", + "universalIdentifier": "20202020-3115-404f-aade-e1154b28e35a", "type": "RELATION", - "name": "message", - "label": "Message Id", - "description": "Message Id", - "icon": "IconHash", + "name": "messages", + "label": "Messages", + "description": "Messages from the thread.", + "icon": "IconMessage", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageId" + "relationType": "ONE_TO_MANY" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", - "type": "MANY_TO_ONE", + "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "38b956fd-1178-4a0c-a919-2a0b5c2874b0", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" + "id": "26f62a07-444a-44b2-abf6-70037ab95e25", + "nameSingular": "messageThread", + "namePlural": "messageThreads" }, "targetObjectMetadata": { "__typename": "Object", - "id": "575b32e0-0a09-4c20-bb75-70e1ca21eaf7", + "id": "ac31da17-9686-436d-80e4-5278dcd00e81", "nameSingular": "message", "namePlural": "messages" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "a4b9b0ff-ac52-497b-9e92-308177fb65c9", - "name": "message" + "id": "ff159b75-37ac-4745-8b55-6d72f84c992a", + "name": "messages" }, "targetFieldMetadata": { "__typename": "Field", - "id": "73fec415-ebc9-44bc-b69d-277e29f34310", - "name": "messageChannelMessageAssociations" + "id": "b177c805-4ff4-4c09-8c28-1c9ed81a09f6", + "name": "messageThread" } }, "morphRelations": null }, { "__typename": "Field", - "id": "60a333f6-d610-4a5e-83d9-917ee4085319", - "universalIdentifier": "20202020-b658-408f-bd46-3bd2d15d7e52", + "id": "926f50f3-c3f3-4439-99f6-21d987e90a96", + "universalIdentifier": "20202020-314e-40a4-906d-a5d5d6c285f6", "type": "RELATION", - "name": "messageChannel", - "label": "Message Channel Id", - "description": "Message Channel Id", - "icon": "IconHash", + "name": "messageChannelMessageAssociations", + "label": "Message Channel Association", + "description": "Messages from the channel.", + "icon": "IconMessage", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageChannelId" + "relationType": "ONE_TO_MANY" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", - "type": "MANY_TO_ONE", + "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "38b956fd-1178-4a0c-a919-2a0b5c2874b0", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "cabe467a-d234-4809-976a-3bce37083b71", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "60a333f6-d610-4a5e-83d9-917ee4085319", - "name": "messageChannel" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "31f376d8-2942-4dae-808f-a040c9a45228", - "name": "messageChannelMessageAssociations" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a34cd771-f576-4e64-8ed3-7931ef15f751", - "universalIdentifier": "20202020-fac8-42a8-94dd-44dbc920ae16", - "type": "RELATION", - "name": "messageThread", - "label": "Message Thread Id", - "description": "Message Thread Id", - "icon": "IconHash", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageThreadId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "38b956fd-1178-4a0c-a919-2a0b5c2874b0", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "9c8a2086-6cd6-4936-96f9-62685c589a6b", + "id": "26f62a07-444a-44b2-abf6-70037ab95e25", "nameSingular": "messageThread", "namePlural": "messageThreads" }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "65e845b0-73aa-4348-99ad-f4d6db898e8f", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, "sourceFieldMetadata": { "__typename": "Field", - "id": "a34cd771-f576-4e64-8ed3-7931ef15f751", - "name": "messageThread" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d7ee3740-6894-4ded-9b68-2d888c0c0ee4", + "id": "926f50f3-c3f3-4439-99f6-21d987e90a96", "name": "messageChannelMessageAssociations" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2f778d49-3f7c-4f38-86b8-084d8762e6a4", - "universalIdentifier": "9bfc9da7-ae2d-44fd-9563-ede90c5d6222", - "type": "RELATION", - "name": "messageFolders", - "label": "Message Folders", - "description": "Message Folders (supports multiple folders/labels)", - "icon": "IconFolders", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "38b956fd-1178-4a0c-a919-2a0b5c2874b0", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "32004991-757c-4fb7-81e4-b58e933fe2c8", - "nameSingular": "messageChannelMessageAssociationMessageFolder", - "namePlural": "messageChannelMessageAssociationMessageFolders" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "2f778d49-3f7c-4f38-86b8-084d8762e6a4", - "name": "messageFolders" }, "targetFieldMetadata": { "__typename": "Field", - "id": "83ae88a2-da10-4a4c-82c1-40751c37cc73", - "name": "messageChannelMessageAssociation" + "id": "77a13f56-bcad-494a-bb98-8dac321d6e8f", + "name": "messageThread" } }, "morphRelations": null } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "c0a49d8c-b5b2-44d1-8946-5a730a65736b", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_2e85541b739066142845bdef99a", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "dfe48d1d-d3e1-4c8f-8bc3-b001fd293c01", - "fieldMetadataId": "60a333f6-d610-4a5e-83d9-917ee4085319", - "createdAt": "2026-02-26T11:55:16.364Z", - "updatedAt": "2026-02-26T11:55:16.364Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "5bd708ba-727a-4b40-8255-b395be88e178", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_3f4c0095cf17b62868bec089fab", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "19f95061-2af5-4999-b0ed-791df66a5f7f", - "fieldMetadataId": "a4b9b0ff-ac52-497b-9e92-308177fb65c9", - "createdAt": "2026-02-26T11:55:16.371Z", - "updatedAt": "2026-02-26T11:55:16.371Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "49fdfd78-4845-4b97-9d74-71e413b21c87", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_da56d8b595a778d404eae01f29b", - "indexWhereClause": "\"deletedAt\" IS NULL", - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "01f3d176-ad80-451b-96e7-0284497fc1ab", - "fieldMetadataId": "60a333f6-d610-4a5e-83d9-917ee4085319", - "createdAt": "2026-02-26T11:55:16.373Z", - "updatedAt": "2026-02-26T11:55:16.373Z", - "order": 0 - }, - { - "__typename": "IndexField", - "id": "89ed4b1e-a3e4-4ac2-82e5-55d701599d12", - "fieldMetadataId": "a4b9b0ff-ac52-497b-9e92-308177fb65c9", - "createdAt": "2026-02-26T11:55:16.373Z", - "updatedAt": "2026-02-26T11:55:16.373Z", - "order": 1 - } - ] - } ] } }, @@ -19721,4666 +23544,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "37158008-6977-486c-95b3-a58365a98a2f", - "universalIdentifier": "20202020-977e-46b2-890b-c3002ddfd5c5", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "45015ee7-810a-4737-b001-219d9878658f", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Connected Account", - "labelPlural": "Connected Accounts", - "description": "A connected account", - "icon": "IconAt", - "fieldsList": [ - { - "__typename": "Field", - "id": "2b487bfc-8c6e-45d9-8c93-01fce42bbcec", - "universalIdentifier": "20202020-c06a-4071-8a71-5c6d7e8f9aab", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "35046b08-847f-4c93-90bc-518e6f94e80d", - "universalIdentifier": "20202020-c06b-4072-9b72-6d7e8f9aabbc", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3cd7a37e-1f4e-4aa3-8da5-e4bb4bb5ce1a", - "universalIdentifier": "20202020-c06c-4073-8c73-7e8f9aabbccd", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "af29bf8e-3b24-48bf-bd95-996456a0fe42", - "universalIdentifier": "20202020-c06d-4074-9d74-8f9aabbccdde", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "54c9aaf1-adf2-44fe-92a6-169bbcff88e5", - "universalIdentifier": "e09c2463-9ca6-4004-97ce-6039e3161a5d", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b51a993c-10c5-413f-901a-b1100f541baa", - "universalIdentifier": "0a84c0e1-f9fc-47d5-8ac9-58538e50a9f9", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "20aa676a-65f6-47fb-9905-4c64d6e8ab11", - "universalIdentifier": "66b7bc3e-c99e-42b6-82e6-6f43142c0f2f", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Connected account record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "eab66266-d95e-405e-a57f-5b40ba0eb63d", - "universalIdentifier": "140767fe-0aa4-4573-a0bd-67cb657c9452", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"handle\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "45015ee7-810a-4737-b001-219d9878658f", - "universalIdentifier": "20202020-c804-4a50-bb05-b3a9e24f1dec", - "type": "TEXT", - "name": "handle", - "label": "handle", - "description": "The account handle (email, username, phone number, etc.)", - "icon": "IconMail", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "82229d66-4d77-4f79-b018-676a915b5016", - "universalIdentifier": "20202020-ebb0-4516-befc-a9e95935efd5", - "type": "TEXT", - "name": "provider", - "label": "provider", - "description": "The account provider", - "icon": "IconSettings", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'google'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0fbcde12-fe69-4c45-94ff-7a90bdea1c7d", - "universalIdentifier": "20202020-707b-4a0a-8753-2ad42efe1e29", - "type": "TEXT", - "name": "accessToken", - "label": "Access Token", - "description": "Messaging provider access token", - "icon": "IconKey", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "594f6494-1b54-4704-b408-5d8447021d56", - "universalIdentifier": "20202020-532d-48bd-80a5-c4be6e7f6e49", - "type": "TEXT", - "name": "refreshToken", - "label": "Refresh Token", - "description": "Messaging provider refresh token", - "icon": "IconKey", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "70c444a0-59c4-4a74-a26b-beb244f4b06d", - "universalIdentifier": "20202020-115c-4a87-b50f-ac4367a971b9", - "type": "TEXT", - "name": "lastSyncHistoryId", - "label": "Last sync history ID", - "description": "Last sync history ID", - "icon": "IconHistory", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0f693468-98d2-4f30-8cd3-2924c15b803b", - "universalIdentifier": "20202020-d268-4c6b-baff-400d402b430a", - "type": "DATE_TIME", - "name": "authFailedAt", - "label": "Auth failed at", - "description": "Auth failed at", - "icon": "IconX", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e25b0b77-9d60-45e1-ad77-f35ac189fc86", - "universalIdentifier": "20202020-aa5e-4e85-903b-fdf90a941941", - "type": "DATE_TIME", - "name": "lastCredentialsRefreshedAt", - "label": "Last credentials refreshed at", - "description": "Last credentials refreshed at", - "icon": "IconHistory", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "db2b5d27-59cf-4af8-9412-1d9c7e332a1d", - "universalIdentifier": "20202020-8a3d-46be-814f-6228af16c47b", - "type": "TEXT", - "name": "handleAliases", - "label": "Handle Aliases", - "description": "Handle Aliases", - "icon": "IconMail", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "cb1bf453-69b6-406e-8139-4fbcf137c11e", - "universalIdentifier": "20202020-8a3d-46be-814f-6228af16c47c", - "type": "ARRAY", - "name": "scopes", - "label": "Scopes", - "description": "Scopes", - "icon": "IconSettings", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fdbe96a4-0cd3-4da4-b18d-e48631fbc44c", - "universalIdentifier": "20202020-a1b2-46be-814f-6228af16c481", - "type": "RAW_JSON", - "name": "connectionParameters", - "label": "Custom Connection Parameters", - "description": "JSON object containing custom connection parameters", - "icon": "IconSettings", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bb124e59-eedc-426b-b846-5be2a92db138", - "universalIdentifier": "20202020-af4a-47bb-99ec-51911c1d3977", - "type": "RELATION", - "name": "calendarChannels", - "label": "Calendar Channels", - "description": "Calendar Channels", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "37158008-6977-486c-95b3-a58365a98a2f", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "de02d560-0a2d-44b3-b8ba-4b471f9551bb", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "bb124e59-eedc-426b-b846-5be2a92db138", - "name": "calendarChannels" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d1e26c42-511b-4052-af18-def236892aca", - "name": "connectedAccount" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c40ba3fc-eaf4-404c-8acd-8d391af1961c", - "universalIdentifier": "20202020-3517-4896-afac-b1d0aa362af6", - "type": "RELATION", - "name": "accountOwner", - "label": "Account Owner", - "description": "Account Owner", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "accountOwnerId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "37158008-6977-486c-95b3-a58365a98a2f", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c40ba3fc-eaf4-404c-8acd-8d391af1961c", - "name": "accountOwner" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "98fd3d82-2c97-41dd-90f8-61836ee90223", - "name": "connectedAccounts" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c653cf40-a63b-4f93-a93e-2cc4e60238ec", - "universalIdentifier": "20202020-24f7-4362-8468-042204d1e445", - "type": "RELATION", - "name": "messageChannels", - "label": "Message Channels", - "description": "Message Channels", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "37158008-6977-486c-95b3-a58365a98a2f", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "cabe467a-d234-4809-976a-3bce37083b71", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c653cf40-a63b-4f93-a93e-2cc4e60238ec", - "name": "messageChannels" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "9bf0fb8a-dd4f-4f14-bf48-dec2c8e5a880", - "name": "connectedAccount" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "fcae6009-d56e-462e-ae99-4d5f6ef50c82", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_3c8bbe54bd34f40dfe2d05ac964", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "053d9f5c-03c2-4717-88b3-4c66a0592119", - "fieldMetadataId": "c40ba3fc-eaf4-404c-8acd-8d391af1961c", - "createdAt": "2026-02-26T11:55:16.329Z", - "updatedAt": "2026-02-26T11:55:16.329Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "32004991-757c-4fb7-81e4-b58e933fe2c8", - "universalIdentifier": "20202020-a1b0-40b0-8ab0-5b6c7d8e9f0a", - "nameSingular": "messageChannelMessageAssociationMessageFolder", - "namePlural": "messageChannelMessageAssociationMessageFolders", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "c45415f4-ed52-4d9a-b989-4d0db86e375a", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Message Channel Message Association Message Folder", - "labelPlural": "Message Channel Message Association Message Folders", - "description": "Join table linking message channel message associations to message folders", - "icon": "IconFolder", - "fieldsList": [ - { - "__typename": "Field", - "id": "c45415f4-ed52-4d9a-b989-4d0db86e375a", - "universalIdentifier": "20202020-a1b2-40b1-8ab1-6b7c8d9e0f1a", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e0490260-6959-4319-b5c5-2d21b6f1e23c", - "universalIdentifier": "20202020-a1b3-40b2-9bb2-7c8d9e0f1a2b", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a910583c-dc70-4e53-8782-1753b039fbe3", - "universalIdentifier": "20202020-a1b4-40b3-8cb3-8d9e0f1a2b3c", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "983f0566-229b-4c28-9fe1-2ca55a1245dc", - "universalIdentifier": "20202020-a1b5-40b4-9db4-9e0f1a2b3c4d", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "afc6867e-690d-4ef7-8efe-36abb306760c", - "universalIdentifier": "f882a070-3393-4197-8140-b5858c6f7284", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "94653ded-cb18-445a-b76e-5c4201f2cfe0", - "universalIdentifier": "107d13dc-a8ff-493c-8d04-72688c68f8c1", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c4391725-1779-4ee3-bde9-effc9db1fc8c", - "universalIdentifier": "76fcf020-482a-4d6c-b7b1-ccd6410299fc", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Message channel message association message folder record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c7e8b782-8dbd-470b-b3a3-dd6c476ce1e1", - "universalIdentifier": "38633a97-0e88-44de-9903-b8c9e0f59a36", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', NULL)", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "83ae88a2-da10-4a4c-82c1-40751c37cc73", - "universalIdentifier": "7411cfa3-4fd9-4b90-a636-940015fd7243", - "type": "RELATION", - "name": "messageChannelMessageAssociation", - "label": "Message Channel Message Association", - "description": "Message Channel Message Association", - "icon": "IconMessage", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageChannelMessageAssociationId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "32004991-757c-4fb7-81e4-b58e933fe2c8", - "nameSingular": "messageChannelMessageAssociationMessageFolder", - "namePlural": "messageChannelMessageAssociationMessageFolders" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "38b956fd-1178-4a0c-a919-2a0b5c2874b0", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "83ae88a2-da10-4a4c-82c1-40751c37cc73", - "name": "messageChannelMessageAssociation" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "2f778d49-3f7c-4f38-86b8-084d8762e6a4", - "name": "messageFolders" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "59fafe4a-e243-4683-8e3c-34262c6244a2", - "universalIdentifier": "b3369d31-3856-4a7a-b007-ee353918127c", - "type": "RELATION", - "name": "messageFolder", - "label": "Message Folder", - "description": "Message Folder", - "icon": "IconFolder", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageFolderId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "32004991-757c-4fb7-81e4-b58e933fe2c8", - "nameSingular": "messageChannelMessageAssociationMessageFolder", - "namePlural": "messageChannelMessageAssociationMessageFolders" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5cde5eae-bc35-4966-86c1-477a74a657ff", - "nameSingular": "messageFolder", - "namePlural": "messageFolders" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "59fafe4a-e243-4683-8e3c-34262c6244a2", - "name": "messageFolder" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ea147889-8c57-447b-af3c-e34eacbe5edf", - "name": "messageChannelMessageAssociationMessageFolders" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "8fa36de4-07af-48b8-b570-50a7bbb0bbc0", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_daf00d51b50634730fd77f16bb6", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "660fb98c-12c8-4542-9be6-ea1c7b0714ee", - "fieldMetadataId": "83ae88a2-da10-4a4c-82c1-40751c37cc73", - "createdAt": "2026-02-26T11:55:16.381Z", - "updatedAt": "2026-02-26T11:55:16.381Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "895a85c0-c6c8-4d09-9ef2-4cb982bc4f17", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_1db95a87400f7679efc43a15e68", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "b40be195-495a-45f7-9d7b-bb8b77e882cc", - "fieldMetadataId": "59fafe4a-e243-4683-8e3c-34262c6244a2", - "createdAt": "2026-02-26T11:55:16.382Z", - "updatedAt": "2026-02-26T11:55:16.382Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "784bc608-bf56-4c5b-8d2c-00dca2263ef6", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_55c9aaf7039b09cec455a872dde", - "indexWhereClause": "\"deletedAt\" IS NULL", - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "a5c2eda7-91fe-4516-a60d-0335c74f887d", - "fieldMetadataId": "83ae88a2-da10-4a4c-82c1-40751c37cc73", - "createdAt": "2026-02-26T11:55:16.382Z", - "updatedAt": "2026-02-26T11:55:16.382Z", - "order": 0 - }, - { - "__typename": "IndexField", - "id": "dccdd9ca-f79f-48c2-993b-f4660a59563e", - "fieldMetadataId": "59fafe4a-e243-4683-8e3c-34262c6244a2", - "createdAt": "2026-02-26T11:55:16.382Z", - "updatedAt": "2026-02-26T11:55:16.382Z", - "order": 1 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "2c6ab7e0-3265-4481-b28e-f081503c798f", - "universalIdentifier": "20202020-0408-4f38-b8a8-4d5e3e26e24d", - "nameSingular": "blocklist", - "namePlural": "blocklists", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "4b624191-3b4f-4e27-91a9-1f5ad05ee8bf", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Blocklist", - "labelPlural": "Blocklists", - "description": "Blocklist", - "icon": "IconForbid2", - "fieldsList": [ - { - "__typename": "Field", - "id": "c09a7309-6016-4cf6-8e49-10787d9d6608", - "universalIdentifier": "20202020-b01a-4011-8b11-5a9fc27fbf6e", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d1615d10-74b6-43f5-9519-0dd7d501563f", - "universalIdentifier": "20202020-b01b-4012-9c12-6bafd38fcf7f", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "cd2d8ce0-af91-4e87-8fe3-e34c6845b889", - "universalIdentifier": "20202020-b01c-4013-8d13-7cbfe49fdf8f", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1b430bca-6217-4017-ba3a-1367e2e199b4", - "universalIdentifier": "20202020-b01d-4014-9e14-8dcff5affef9", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c20e86f6-ed4b-4676-97ab-696cbb7ddb33", - "universalIdentifier": "b80db15d-8dc2-4f47-a072-15030941a9d1", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e18a7d50-b316-441f-80a4-796a9c6bdf95", - "universalIdentifier": "11aaa404-f04b-421d-a451-c453bf77cc78", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "82455f67-424d-4e66-a73a-ac7e72ab4cd8", - "universalIdentifier": "72a27e60-3542-46dc-90db-684d79bd7f11", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Blocklist record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ad1891e7-c067-4b8b-9ed3-887a6146e821", - "universalIdentifier": "5fa758da-30b4-412e-8a4f-975f2848ce60", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"handle\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4b624191-3b4f-4e27-91a9-1f5ad05ee8bf", - "universalIdentifier": "20202020-eef3-44ed-aa32-4641d7fd4a3e", - "type": "TEXT", - "name": "handle", - "label": "Handle", - "description": "Handle", - "icon": "IconAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "26340dcc-ccdd-48a9-8d91-a318b3c1bf63", - "universalIdentifier": "20202020-548d-4084-a947-fa20a39f7c06", - "type": "RELATION", - "name": "workspaceMember", - "label": "WorkspaceMember", - "description": "WorkspaceMember", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workspaceMemberId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "2c6ab7e0-3265-4481-b28e-f081503c798f", - "nameSingular": "blocklist", - "namePlural": "blocklists" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "26340dcc-ccdd-48a9-8d91-a318b3c1bf63", - "name": "workspaceMember" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "89bb2abc-a288-4327-9bca-49fa37b2d7ae", - "name": "blocklist" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "642ba4cb-6ee4-4a54-a4d5-7ae4948d712f", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_9e247b4ab168100e4aa8fb6a853", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "81ebb94b-ea91-4357-8e5e-01c823c9f8b3", - "fieldMetadataId": "26340dcc-ccdd-48a9-8d91-a318b3c1bf63", - "createdAt": "2026-02-26T11:55:16.309Z", - "updatedAt": "2026-02-26T11:55:16.309Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "2428f5af-7438-44b1-94b4-42161fb1a02f", - "universalIdentifier": "20202020-a1c3-47a6-9732-27e5b1e8436d", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "bd3f70ee-d4b9-4194-a67e-8e4e114ed2e4", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Calendar event participant", - "labelPlural": "Calendar event participants", - "description": "Calendar event participants", - "icon": "IconCalendar", - "fieldsList": [ - { - "__typename": "Field", - "id": "3e502ad8-d2fa-4e8d-909c-43871b9b2c78", - "universalIdentifier": "20202020-c03a-4041-8a41-5e6f7a8b9cad", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b6ddfcad-cf32-41e0-aea6-536d482aba00", - "universalIdentifier": "20202020-c03b-4042-9b42-6f7a8b9cadbe", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f7456e82-f9ca-426a-af0e-e5b9cd269aa3", - "universalIdentifier": "20202020-c03c-4043-8c43-7a8b9cadbecf", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "94812812-4a0e-4d9e-8c6e-4151a4a76c50", - "universalIdentifier": "20202020-c03d-4044-9d44-8b9cadbecd0f", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6269e70a-aeec-440a-a368-d4695d9bed2f", - "universalIdentifier": "9e9ec14d-b889-448e-afe5-40e407be11d1", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5cc73e38-7f80-4a98-8cc0-5f09fecb5abc", - "universalIdentifier": "a2c6efda-06bf-418e-808a-dac9fd64ab58", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2a60296f-2f0e-438a-b336-c8b6fbea46d9", - "universalIdentifier": "fcfa672c-ce6d-4fc1-b978-db58a4cc14f4", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Calendar event participant record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "67ae9968-0712-4e5a-9f80-d00433a89a74", - "universalIdentifier": "c9dccf32-64ea-433e-a9a7-09993343bae0", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"handle\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bd3f70ee-d4b9-4194-a67e-8e4e114ed2e4", - "universalIdentifier": "20202020-8692-4580-8210-9e09cbd031a7", - "type": "TEXT", - "name": "handle", - "label": "Handle", - "description": "Handle", - "icon": "IconMail", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4d1b8fc1-7b55-4c14-b450-0117a25b0c87", - "universalIdentifier": "20202020-ee1e-4f9f-8ac1-5c0b2f69691e", - "type": "TEXT", - "name": "displayName", - "label": "Display Name", - "description": "Display Name", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ddd61e63-0fa3-40e5-ac20-c575758c60fd", - "universalIdentifier": "20202020-66e7-4e00-9e06-d06c92650580", - "type": "BOOLEAN", - "name": "isOrganizer", - "label": "Is Organizer", - "description": "Is Organizer", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "af61113f-a288-49ca-b043-aa5e4d095494", - "universalIdentifier": "20202020-cec0-4be8-8fba-c366abc23147", - "type": "SELECT", - "name": "responseStatus", - "label": "Response Status", - "description": "Response Status", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'NEEDS_ACTION'", - "options": [ - { - "id": "20202020-71eb-4724-9947-8aca3bb51140", - "color": "orange", - "label": "Needs Action", - "value": "NEEDS_ACTION", - "position": 0 - }, - { - "id": "20202020-7a3c-45e8-8bbb-f909a4b821a4", - "color": "red", - "label": "Declined", - "value": "DECLINED", - "position": 1 - }, - { - "id": "20202020-aec0-4845-8ca5-a3c17f635329", - "color": "yellow", - "label": "Tentative", - "value": "TENTATIVE", - "position": 2 - }, - { - "id": "20202020-ffbe-4c58-a05b-b00f7fa86c74", - "color": "green", - "label": "Accepted", - "value": "ACCEPTED", - "position": 3 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "44a1a8c2-6859-42d1-8f5c-b7d91cf677dc", - "universalIdentifier": "20202020-fe3a-401c-b889-af4f4657a861", - "type": "RELATION", - "name": "calendarEvent", - "label": "Event ID", - "description": "Event ID", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "calendarEventId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "2428f5af-7438-44b1-94b4-42161fb1a02f", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4a6d149e-0a0d-4345-b95f-81dcac36c54c", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "44a1a8c2-6859-42d1-8f5c-b7d91cf677dc", - "name": "calendarEvent" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3bda0746-dea0-4ad3-a2ca-efec19fb262c", - "name": "calendarEventParticipants" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ea0d4282-28c2-4b61-9016-d24e6b29885c", - "universalIdentifier": "20202020-5761-4842-8186-e1898ef93966", - "type": "RELATION", - "name": "person", - "label": "Person", - "description": "Person", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "2428f5af-7438-44b1-94b4-42161fb1a02f", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ea0d4282-28c2-4b61-9016-d24e6b29885c", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b12a728e-de21-4487-9d5b-a8ba54b44d27", - "name": "calendarEventParticipants" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ece5c9b0-2d71-4ffc-a30c-70ea41706950", - "universalIdentifier": "20202020-20e4-4591-93ed-aeb17a4dcbd2", - "type": "RELATION", - "name": "workspaceMember", - "label": "Workspace Member", - "description": "Workspace Member", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workspaceMemberId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "2428f5af-7438-44b1-94b4-42161fb1a02f", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ece5c9b0-2d71-4ffc-a30c-70ea41706950", - "name": "workspaceMember" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "755220e6-69e3-4f0b-84b2-564e7af0bcdb", - "name": "calendarEventParticipants" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "5e969994-fedd-4cf8-9b99-71ba7ef53d35", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_40150517e4f1ab6154e426eafce", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "55f98bad-07a6-4c5e-96dc-509d579baafb", - "fieldMetadataId": "44a1a8c2-6859-42d1-8f5c-b7d91cf677dc", - "createdAt": "2026-02-26T11:55:16.317Z", - "updatedAt": "2026-02-26T11:55:16.317Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "38012199-8e1e-4884-b1cc-de4e38007adc", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_ba8418718688702d3113fde2fe1", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "0a0e0f6d-13a7-4428-9998-d1bb79d8c65b", - "fieldMetadataId": "ea0d4282-28c2-4b61-9016-d24e6b29885c", - "createdAt": "2026-02-26T11:55:16.319Z", - "updatedAt": "2026-02-26T11:55:16.319Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "e06caf6f-aa29-461e-a726-e2cca297dc92", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_70c8cfc3c0c8407789db32ad9cf", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "c9b9cb31-4bb4-41b7-929d-e7988a29b31d", - "fieldMetadataId": "ece5c9b0-2d71-4ffc-a30c-70ea41706950", - "createdAt": "2026-02-26T11:55:16.321Z", - "updatedAt": "2026-02-26T11:55:16.321Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "universalIdentifier": "96722f9e-c20b-488b-9cf0-4668b838eb9e", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements", - "isCustom": true, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:17.573Z", - "updatedAt": "2026-02-26T11:55:17.573Z", - "labelIdentifierFieldMetadataId": "fcbc63f8-9141-40aa-a3ff-dbff917d4e77", - "imageIdentifierFieldMetadataId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Pet Care Agreement", - "labelPlural": "Pet Care Agreements", - "description": "", - "icon": "IconPaw", - "fieldsList": [ - { - "__typename": "Field", - "id": "fcbc63f8-9141-40aa-a3ff-dbff917d4e77", - "universalIdentifier": "8fae9e23-0744-44a9-9340-8272eb613e5c", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": true, - "createdAt": "2026-02-26T11:55:17.573Z", - "updatedAt": "2026-02-26T11:55:17.573Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bb8b0575-7af5-402c-9f5f-f87e856f0036", - "universalIdentifier": "578f29fe-714c-48e9-8933-d23c08792ebd", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.573Z", - "updatedAt": "2026-02-26T11:55:17.573Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "db039cdc-9cbd-4a28-8361-80b2f7759b1c", - "universalIdentifier": "ec242b9c-6ecb-4d5e-8cc5-0d70d1ea4db0", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.573Z", - "updatedAt": "2026-02-26T11:55:17.573Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5ee4a712-caf6-45e6-96b4-c004c4e5f005", - "universalIdentifier": "1223677a-6856-4ba8-978c-ab34e68aeed8", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Deletion date", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.573Z", - "updatedAt": "2026-02-26T11:55:17.573Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8d3ac735-69b8-42fa-8f48-79e55ca20b83", - "universalIdentifier": "72649fc1-8a37-46d0-8ebb-66b8837c1d1d", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.573Z", - "updatedAt": "2026-02-26T11:55:17.573Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2f134a13-7407-49ed-8f81-473541d2ae38", - "universalIdentifier": "0e230499-b2ec-4db4-8bc0-203fe0fcc3b0", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Search vector", - "icon": "IconSearch", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.573Z", - "updatedAt": "2026-02-26T11:55:17.573Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', NULL)", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f24f6440-c4d1-4ade-b492-a5d9401b67f3", - "universalIdentifier": "6098f2d3-71d8-4ae3-8d3f-1d45d8086853", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.573Z", - "updatedAt": "2026-02-26T11:55:17.573Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "080cc4bc-2754-4786-abc7-aa5695587fd6", - "universalIdentifier": "b484675b-9f8f-4a33-a9fb-179359bc05ee", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.573Z", - "updatedAt": "2026-02-26T11:55:17.573Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1a9c65bb-c1d8-4f7a-b9fe-75e2e214ff72", - "universalIdentifier": "8c1389ac-4122-466c-80ce-c22b979e686e", - "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "PetCareAgreements tied to the Timeline Activity", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.574Z", - "updatedAt": "2026-02-26T11:55:17.574Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1a9c65bb-c1d8-4f7a-b9fe-75e2e214ff72", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "581a210e-ae07-4c8f-9e75-21abe6548bbf", - "universalIdentifier": "e4f4044c-da4e-48cf-aa68-d74df36cf513", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "PetCareAgreements tied to the Favorite", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.574Z", - "updatedAt": "2026-02-26T11:55:17.574Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "581a210e-ae07-4c8f-9e75-21abe6548bbf", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "7031369f-3903-4bb7-b630-8f6ec11730cc", - "name": "petCareAgreement" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "461f0845-c185-45d8-bc8e-9fea081790ec", - "universalIdentifier": "5b3a1ff4-107d-4dfe-8f2c-f6ceb64690e2", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "PetCareAgreements tied to the Attachment", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.574Z", - "updatedAt": "2026-02-26T11:55:17.574Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "461f0845-c185-45d8-bc8e-9fea081790ec", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "daf84d3f-d080-433e-9380-dcd37a65490c", - "universalIdentifier": "74ac5a03-2592-48ac-a3fb-d370f55e3c33", - "type": "RELATION", - "name": "noteTargets", - "label": "Note Targets", - "description": "PetCareAgreements tied to the Note Target", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.574Z", - "updatedAt": "2026-02-26T11:55:17.574Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "daf84d3f-d080-433e-9380-dcd37a65490c", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "72a5b8f7-3893-4dea-b922-a6d29bd5418d", - "universalIdentifier": "07a6d19b-0988-4c18-b068-38bb43c82445", - "type": "RELATION", - "name": "taskTargets", - "label": "Task Targets", - "description": "PetCareAgreements tied to the Task Target", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.574Z", - "updatedAt": "2026-02-26T11:55:17.574Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "72a5b8f7-3893-4dea-b922-a6d29bd5418d", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5d68600f-9214-42e3-a00b-fb783342e720", - "universalIdentifier": "6c1c1523-cf50-4f97-af4f-3b594cfec3b8", - "type": "RELATION", - "name": "pet", - "label": "Pet", - "description": "PetCareAgreements Pet", - "icon": "IconCat", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:18.354Z", - "updatedAt": "2026-02-26T11:55:18.354Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "petId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5d68600f-9214-42e3-a00b-fb783342e720", - "name": "pet" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "21a0d7ff-f393-4c07-abce-371fc5f6c9a9", - "name": "caretakers" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "78472eb5-fa38-41c7-b417-02bf919ca5d2", - "universalIdentifier": "b63fcd26-bba3-4b57-aba7-36e4b413a688", - "type": "MORPH_RELATION", - "name": "caretaker", - "label": "Caretaker", - "description": "PetCareAgreements tied to the Person", - "icon": "IconUser", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:18.042Z", - "updatedAt": "2026-02-26T11:55:18.042Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "caretakerPersonId" - }, - "isLabelSyncedWithName": false, - "morphId": "8ae0a474-4331-425a-8c13-b330e21a06e1", - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": [ - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "78472eb5-fa38-41c7-b417-02bf919ca5d2", - "name": "caretaker" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4666d83e-aaa2-40c0-975a-acd8bfbdf8a2", - "name": "caredForPets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "941a555a-2fee-45e3-9c69-db66de94b68e", - "name": "caretaker" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "9ad2572c-0171-43f3-8f99-bdc72ee4e24f", - "name": "caredForPets" - } - } - ] - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "2fe9b1ac-a276-4fe2-ac07-01762143a116", - "createdAt": "2026-02-26T11:55:17.574Z", - "updatedAt": "2026-02-26T11:55:17.574Z", - "name": "IDX_287bd4bcd6070ae3cb538c71ea7", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "5349a0f0-115e-4124-a112-4ed0fb28f4fd", - "fieldMetadataId": "2f134a13-7407-49ed-8f81-473541d2ae38", - "createdAt": "2026-02-26T11:55:17.600Z", - "updatedAt": "2026-02-26T11:55:17.600Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "67987f4d-1fc8-48e2-aada-f3db91c1fdd3", - "createdAt": "2026-02-26T11:55:18.042Z", - "updatedAt": "2026-02-26T11:55:18.042Z", - "name": "IDX_dff2b88f7bfc1706a851949e1d6", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "103c6a1e-3733-475c-a5fe-d445023c6db1", - "fieldMetadataId": "78472eb5-fa38-41c7-b417-02bf919ca5d2", - "createdAt": "2026-02-26T11:55:18.054Z", - "updatedAt": "2026-02-26T11:55:18.054Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "ed675cee-2e92-439c-b5aa-c8c325c9fabf", - "createdAt": "2026-02-26T11:55:18.042Z", - "updatedAt": "2026-02-26T11:55:18.042Z", - "name": "IDX_be3fc65c60e132f5401b21b065e", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "22dc65ac-9922-4690-b7b9-a53d29928fa9", - "fieldMetadataId": "941a555a-2fee-45e3-9c69-db66de94b68e", - "createdAt": "2026-02-26T11:55:18.055Z", - "updatedAt": "2026-02-26T11:55:18.055Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "15bfdf43-9bcc-48e5-86a7-b0394eaa2b5b", - "createdAt": "2026-02-26T11:55:18.354Z", - "updatedAt": "2026-02-26T11:55:18.354Z", - "name": "IDX_16a70d520ac126ba5cdb2553922", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "3c548801-0afa-41fd-b301-6bcd2edb1674", - "fieldMetadataId": "5d68600f-9214-42e3-a00b-fb783342e720", - "createdAt": "2026-02-26T11:55:18.365Z", - "updatedAt": "2026-02-26T11:55:18.365Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "11054c51-6e7a-44a1-9d40-03ce04f21fbe", - "universalIdentifier": "20202020-3840-4b6d-9425-0c5188b05ca8", - "nameSingular": "dashboard", - "namePlural": "dashboards", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "8b6c213a-4298-4e69-b910-d8f8e22dea29", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": "D", - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Dashboard", - "labelPlural": "Dashboards", - "description": "A dashboard", - "icon": "IconLayoutDashboard", - "fieldsList": [ - { - "__typename": "Field", - "id": "9ce78ae9-1482-4e0d-88da-29334078c447", - "universalIdentifier": "20202020-da1a-41d1-8ad1-abcdefabcdef", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3c5afe19-4f49-4833-9970-c3d6d21d77fd", - "universalIdentifier": "20202020-da1b-41d2-9bd2-bcdefabcdefa", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "216138fc-2f86-4a87-ae1c-73aa0869dc07", - "universalIdentifier": "20202020-da1c-41d3-8cd3-cdefabcdefab", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "69041496-e910-4605-9301-05adb489c3e8", - "universalIdentifier": "20202020-da1d-41d4-9dd4-defabcdefabc", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8b6c213a-4298-4e69-b910-d8f8e22dea29", - "universalIdentifier": "20202020-20ee-4091-95dc-44b57eda3a89", - "type": "TEXT", - "name": "title", - "label": "Title", - "description": "Dashboard title", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7dd9e8eb-dbc8-4e9f-9132-404f2b730b4c", - "universalIdentifier": "20202020-38af-409b-95f0-7f08aa5f420f", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Dashboard record Position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b40c46c5-7aa8-4fb7-aa3a-57fa8c37c5ae", - "universalIdentifier": "20202020-bb53-4648-aa36-1d9d54e6f7f2", - "type": "UUID", - "name": "pageLayoutId", - "label": "Page Layout ID", - "description": "Dashboard page layout", - "icon": "IconLayout", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2c02dba2-4fd5-4b8b-b5e3-36c5886e9735", - "universalIdentifier": "20202020-ff32-4fa1-b7ad-407cc6aa0734", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e9eb1a3b-8175-4d65-a4e3-9af7dba7c682", - "universalIdentifier": "53ee42e7-f157-42b5-b278-a5fa9b378307", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "26d86e89-59e5-4e5a-bfed-9c5e13ca80c5", - "universalIdentifier": "20202020-0bcc-47a4-8360-2e35a7133f7a", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"title\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ce579a1d-9538-4be9-97bf-cb4572e99aee", - "universalIdentifier": "20202020-bf6f-4220-8c55-2764f1175870", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "Attachments linked to the dashboard", - "icon": "IconFileImport", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "11054c51-6e7a-44a1-9d40-03ce04f21fbe", - "nameSingular": "dashboard", - "namePlural": "dashboards" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ce579a1d-9538-4be9-97bf-cb4572e99aee", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "066dd742-455c-49ae-a944-9da010635203", - "universalIdentifier": "99c330c0-5b7d-4276-a764-aed84499dfb5", - "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "Timeline activities linked to the dashboard", - "icon": "IconTimelineEvent", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "11054c51-6e7a-44a1-9d40-03ce04f21fbe", - "nameSingular": "dashboard", - "namePlural": "dashboards" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "066dd742-455c-49ae-a944-9da010635203", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "102ee85a-e3f1-4e5f-ba7d-fbf0676b2609", - "universalIdentifier": "20202020-f032-478f-88fa-6426ff6f1e4c", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Favorites linked to the dashboard", - "icon": "IconHeart", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "11054c51-6e7a-44a1-9d40-03ce04f21fbe", - "nameSingular": "dashboard", - "namePlural": "dashboards" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "102ee85a-e3f1-4e5f-ba7d-fbf0676b2609", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "70be7142-93b4-4771-8f25-7df6de222149", - "name": "dashboard" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "b8567dba-ef77-4bc2-85aa-2aeb9ad42932", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_f3b76c5322b31cba175b2eccec8", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "d9674896-5398-4628-a5a0-129da98b6173", - "fieldMetadataId": "26d86e89-59e5-4e5a-bfed-9c5e13ca80c5", - "createdAt": "2026-02-26T11:55:16.330Z", - "updatedAt": "2026-02-26T11:55:16.330Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "universalIdentifier": "20202020-e674-48e5-a542-72570eee7213", - "nameSingular": "person", - "namePlural": "people", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "96964eb5-95d0-4bf0-937b-956c1e2bd859", - "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "shortcut": "P", - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": [ - [ - "nameFirstName", - "nameLastName" - ], - [ - "linkedinLinkPrimaryLinkUrl" - ], - [ - "emailsPrimaryEmail" - ] - ], - "labelSingular": "Person", - "labelPlural": "People", - "description": "A person", - "icon": "IconUser", - "fieldsList": [ - { - "__typename": "Field", - "id": "1bcf2745-4fbc-431d-8cb1-4cc2845dd96a", - "universalIdentifier": "20202020-e01a-4141-8a41-456789abcdef", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "af3cd483-c753-4ac9-b4b7-5f62bdf5e116", - "universalIdentifier": "20202020-e01b-4142-9b42-56789abcdefa", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "366ee053-4814-46f7-9f3c-4b81d09e10ab", - "universalIdentifier": "20202020-e01c-4143-8c43-6789abcdefab", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a866150b-c381-4ea2-b2f0-599ebb210619", - "universalIdentifier": "20202020-e01d-4144-9d44-789abcdefabc", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "96964eb5-95d0-4bf0-937b-956c1e2bd859", - "universalIdentifier": "20202020-3875-44d5-8c33-a6239011cab8", - "type": "FULL_NAME", - "name": "name", - "label": "Name", - "description": "Contact's name", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8ef575c1-fd4b-4199-9d07-d31a0a44beb0", - "universalIdentifier": "20202020-3c51-43fa-8b6e-af39e29368ab", - "type": "EMAILS", - "name": "emails", - "label": "Emails", - "description": "Contact's Emails", - "icon": "IconMail", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": true, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "maxNumberOfValues": 1 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e7b3e578-ee96-4e67-813e-72dac36b514e", - "universalIdentifier": "20202020-f1af-48f7-893b-2007a73dd508", - "type": "LINKS", - "name": "linkedinLink", - "label": "Linkedin", - "description": "Contact's Linkedin account", - "icon": "IconBrandLinkedin", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "eb9fa158-281f-4dfb-8e10-cf73e0e782bb", - "universalIdentifier": "20202020-8fc2-487c-b84a-55a99b145cfd", - "type": "LINKS", - "name": "xLink", - "label": "X", - "description": "Contact's X/Twitter account", - "icon": "IconBrandX", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "df06ef9f-1ece-4bd3-b1ac-534e61eab9a7", - "universalIdentifier": "20202020-b0d0-415a-bef9-640a26dacd9b", - "type": "TEXT", - "name": "jobTitle", - "label": "Job Title", - "description": "Contact's job title", - "icon": "IconBriefcase", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5c242605-542f-451f-a984-2c9c4e12a5e5", - "universalIdentifier": "20202020-0638-448e-8825-439134618022", - "type": "PHONES", - "name": "phones", - "label": "Phones", - "description": "Contact's phone numbers", - "icon": "IconPhone", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "maxNumberOfValues": 1 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "73a452c7-e9eb-414e-988f-b174b0a39d0f", - "universalIdentifier": "20202020-5243-4ffb-afc5-2c675da41346", - "type": "TEXT", - "name": "city", - "label": "City", - "description": "Contact's city", - "icon": "IconMap", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "56f9250f-439c-4348-9330-014e5fe241c0", - "universalIdentifier": "20202020-b8a6-40df-961c-373dc5d2ec21", - "type": "TEXT", - "name": "avatarUrl", - "label": "Avatar", - "description": "Contact's avatar", - "icon": "IconFileUpload", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7ad1fb3d-e9da-4578-a410-9075e59b9ed8", - "universalIdentifier": "20202020-a7c9-4e3d-8f1b-2d5a6b7c8e9f", - "type": "FILES", - "name": "avatarFile", - "label": "Avatar File", - "description": "Contact's avatar file", - "icon": "IconFileUpload", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "maxNumberOfValues": 1 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "10b7a441-edf4-49d8-a435-6428359c88ad", - "universalIdentifier": "20202020-fcd5-4231-aff5-fff583eaa0b1", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Person record Position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ed512773-989d-4fba-ae8d-843b72530463", - "universalIdentifier": "20202020-f6ab-4d98-af24-a3d5b664148a", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0dce8542-b372-4fcb-8160-9894d0b0162a", - "universalIdentifier": "e9e0dd35-184c-4742-84da-afadf45ce59a", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "eab9f8f1-21c8-4484-86ed-eff24f53a670", - "universalIdentifier": "57d1d7ad-fa10-44fc-82f3-ad0959ec2534", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"nameFirstName\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"nameLastName\"), '') || ' ' || \n COALESCE(public.unaccent_immutable(\"emailsPrimaryEmail\"), '') || ' ' ||\n COALESCE(public.unaccent_immutable(SPLIT_PART(\"emailsPrimaryEmail\", '@', 2)), '') || ' ' || COALESCE(public.unaccent_immutable(TRANSLATE(\"emailsAdditionalEmails\"::text, '[]\",', ' ')), '') || ' ' || COALESCE(public.unaccent_immutable(TRANSLATE(REPLACE(\"emailsAdditionalEmails\"::text, '@', ' '), '[]\",', ' ')), '') || ' ' || COALESCE(\"phonesPrimaryPhoneNumber\", '') || ' ' || COALESCE(\"phonesPrimaryPhoneCallingCode\", '') || ' ' || COALESCE(\"phonesPrimaryPhoneCallingCode\" || \"phonesPrimaryPhoneNumber\", '') || ' ' || COALESCE(REPLACE(\"phonesPrimaryPhoneCallingCode\", '+', '') || \"phonesPrimaryPhoneNumber\", '') || ' ' || COALESCE('0' || \"phonesPrimaryPhoneNumber\", '') || ' ' || COALESCE(TRANSLATE(regexp_replace(\"phonesAdditionalPhones\"::text, '\"(number|countryCode|callingCode)\"\\s*:\\s*', '', 'g'), '[]{}\",:', ' '), '') || ' ' || COALESCE(public.unaccent_immutable(\"jobTitle\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1e69bade-1c54-4017-8b51-6fda70d984fa", - "universalIdentifier": "20202020-cd97-451f-87fa-bcb789bdbf3a", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "Attachments linked to the contact.", - "icon": "IconFileImport", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1e69bade-1c54-4017-8b51-6fda70d984fa", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b12a728e-de21-4487-9d5b-a8ba54b44d27", - "universalIdentifier": "20202020-52ee-45e9-a702-b64b3753e3a9", - "type": "RELATION", - "name": "calendarEventParticipants", - "label": "Calendar Event Participants", - "description": "Calendar Event Participants", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "2428f5af-7438-44b1-94b4-42161fb1a02f", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b12a728e-de21-4487-9d5b-a8ba54b44d27", - "name": "calendarEventParticipants" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ea0d4282-28c2-4b61-9016-d24e6b29885c", - "name": "person" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8cc08b2f-7b0b-459d-b32f-883960e8f2d3", - "universalIdentifier": "20202020-e2f3-448e-b34c-2d625f0025fd", - "type": "RELATION", - "name": "company", - "label": "Company", - "description": "Contact's company", - "icon": "IconBuildingSkyscraper", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "companyId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "8cc08b2f-7b0b-459d-b32f-883960e8f2d3", - "name": "company" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b343e89c-5f48-4769-be0f-b15552b06488", - "name": "people" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "38b54144-53ed-474b-adb2-d5ad43c65398", - "universalIdentifier": "20202020-4073-4117-9cf1-203bcdc91cbd", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Favorites linked to the contact", - "icon": "IconHeart", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "38b54144-53ed-474b-adb2-d5ad43c65398", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a035a64c-ff08-4415-b60b-e6427e12fad4", - "name": "person" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9cee645e-9ac4-41b7-8f53-722e3be6a4e2", - "universalIdentifier": "20202020-498e-4c61-8158-fa04f0638334", - "type": "RELATION", - "name": "messageParticipants", - "label": "Message Participants", - "description": "Message Participants", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "823cfbad-68a1-4475-aa2f-7d0588506b6e", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "9cee645e-9ac4-41b7-8f53-722e3be6a4e2", - "name": "messageParticipants" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "c5dd8967-a6bb-4404-af3b-1c8089668eb6", - "name": "person" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a6f00e6f-c047-4916-8539-8c272dca1913", - "universalIdentifier": "20202020-c8fc-4258-8250-15905d3fcfec", - "type": "RELATION", - "name": "noteTargets", - "label": "Notes", - "description": "Notes tied to the contact", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a6f00e6f-c047-4916-8539-8c272dca1913", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5a011725-9570-4fc5-9ada-d550d708dc27", - "universalIdentifier": "20202020-911b-4a7d-b67b-918aa9a5b33a", - "type": "RELATION", - "name": "pointOfContactForOpportunities", - "label": "Opportunities", - "description": "List of opportunities for which that person is the point of contact", - "icon": "IconTargetArrow", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5a011725-9570-4fc5-9ada-d550d708dc27", - "name": "pointOfContactForOpportunities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a91b3619-01d0-4972-9f63-4da7660b3b6a", - "name": "pointOfContact" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bf2f0bec-a793-4a2b-97ea-7928f07255e7", - "universalIdentifier": "20202020-584b-4d3e-88b6-53ab1fa03c3a", - "type": "RELATION", - "name": "taskTargets", - "label": "Tasks", - "description": "Tasks tied to the contact", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "bf2f0bec-a793-4a2b-97ea-7928f07255e7", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "41ed4d07-34ee-4334-8003-51e906e00249", - "universalIdentifier": "20202020-a43e-4873-9c23-e522de906ce5", - "type": "RELATION", - "name": "timelineActivities", - "label": "Events", - "description": "Events linked to the person", - "icon": "IconTimelineEvent", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "41ed4d07-34ee-4334-8003-51e906e00249", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "77f94ee6-1f44-490d-b619-7d3514b456f0", - "universalIdentifier": "3a0fbcd0-41fc-4266-971f-704adaa4e181", - "type": "TEXT", - "name": "intro", - "label": "Intro", - "description": "Contact's Intro", - "icon": "IconNote", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.818Z", - "updatedAt": "2026-02-26T11:55:17.818Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "827c0fcc-6b39-48ef-89bb-88413c844aa2", - "universalIdentifier": "e6062706-935d-4349-a813-ad9d5593a56b", - "type": "PHONES", - "name": "whatsapp", - "label": "Whatsapp", - "description": "Contact's Whatsapp Number", - "icon": "IconBrandWhatsapp", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.818Z", - "updatedAt": "2026-02-26T11:55:17.818Z", - "defaultValue": { - "additionalPhones": null, - "primaryPhoneNumber": "''", - "primaryPhoneCallingCode": "'+33'", - "primaryPhoneCountryCode": "'FR'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1b19630d-6932-4fe2-994e-478ac70d179d", - "universalIdentifier": "06d5ebe9-48b9-42b9-9ad5-092a2608e627", - "type": "MULTI_SELECT", - "name": "workPreference", - "label": "Work Preference", - "description": "Person's Work Preference", - "icon": "IconHome", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.818Z", - "updatedAt": "2026-02-26T11:55:17.818Z", - "defaultValue": null, - "options": [ - { - "id": "c44a1444-594e-4cd0-8d8e-cc76c5fd50f6", - "color": "green", - "label": "On-Site", - "value": "ON_SITE", - "position": 0 - }, - { - "id": "2c8fc7c8-ab35-4be9-abb8-2d65989a8c76", - "color": "turquoise", - "label": "Hybrid", - "value": "HYBRID", - "position": 1 - }, - { - "id": "19152c6a-9b18-4867-960c-c597197968ed", - "color": "sky", - "label": "Remote Work", - "value": "REMOTE_WORK", - "position": 2 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d197c6be-1641-4321-b2b7-30e71fbde099", - "universalIdentifier": "22427fa8-bc43-4a4f-a92a-f73166ead29f", - "type": "RATING", - "name": "performanceRating", - "label": "Performance Rating", - "description": "Person's Performance Rating", - "icon": "IconStars", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:17.818Z", - "updatedAt": "2026-02-26T11:55:17.818Z", - "defaultValue": null, - "options": [ - { - "id": "f4156ecb-9e90-4725-9c66-404053cd4756", - "label": "1", - "value": "RATING_1", - "position": 0 - }, - { - "id": "60baa121-834b-4ec5-bf94-13d585014aaf", - "label": "2", - "value": "RATING_2", - "position": 1 - }, - { - "id": "4bec18be-c3dd-4c1b-863f-facc2d0e1c9f", - "label": "3", - "value": "RATING_3", - "position": 2 - }, - { - "id": "f82c26b1-2b6d-49a9-aebf-c564f643b135", - "label": "4", - "value": "RATING_4", - "position": 3 - }, - { - "id": "93921f42-ccf7-486d-9c21-8cf5a62b8044", - "label": "5", - "value": "RATING_5", - "position": 4 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "87865f66-7bad-4f9c-a49f-7e58ffcf0974", - "universalIdentifier": "904c0584-c3a2-457a-a009-a110613763af", - "type": "RELATION", - "name": "previousCompanies", - "label": "Previous Companies", - "description": "People tied to the Employment History", - "icon": "IconBuildingSkyscraper", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:18.171Z", - "updatedAt": "2026-02-26T11:55:18.491Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY", - "junctionTargetFieldId": "0836a83a-2c48-49ed-bbee-be155dce5fc5" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "87865f66-7bad-4f9c-a49f-7e58ffcf0974", - "name": "previousCompanies" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0c8f580e-aa4e-4bb2-a168-589e8b7654f1", - "name": "person" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4666d83e-aaa2-40c0-975a-acd8bfbdf8a2", - "universalIdentifier": "7d94c52f-3c52-4308-84df-36f7d17cc9cf", - "type": "RELATION", - "name": "caredForPets", - "label": "Cared For Pets", - "description": "People Pet Care Agreement", - "icon": "IconPaw", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:18.042Z", - "updatedAt": "2026-02-26T11:55:18.827Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY", - "junctionTargetFieldId": "5d68600f-9214-42e3-a00b-fb783342e720" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4666d83e-aaa2-40c0-975a-acd8bfbdf8a2", - "name": "caredForPets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "78472eb5-fa38-41c7-b417-02bf919ca5d2", - "name": "caretaker" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "77ecf6f9-b78c-44f3-a434-211c6a35d746", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_ae09ff97967369e0644bacc0fce", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "1f17734d-a200-4cb5-8c40-abbab11c3cee", - "fieldMetadataId": "8cc08b2f-7b0b-459d-b32f-883960e8f2d3", - "createdAt": "2026-02-26T11:55:16.394Z", - "updatedAt": "2026-02-26T11:55:16.394Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "d1ed26a2-cbcc-4783-be3b-a48b20916de1", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_UNIQUE_87914cd3ce963115f8cb943e2ac", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": true, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "b5ebfbdb-9f57-40da-9dd8-5ac16aecc60a", - "fieldMetadataId": "8ef575c1-fd4b-4199-9d07-d31a0a44beb0", - "createdAt": "2026-02-26T11:55:16.394Z", - "updatedAt": "2026-02-26T11:55:16.394Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "5be2dc85-3fb4-4ac5-b2d9-f2f54412bc5c", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_bbd7aec1976fc684a0a5e4816c9", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "cce89335-4077-4786-86f7-3c89844ca5c2", - "fieldMetadataId": "eab9f8f1-21c8-4484-86ed-eff24f53a670", - "createdAt": "2026-02-26T11:55:16.396Z", - "updatedAt": "2026-02-26T11:55:16.396Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", + "id": "1691dfbb-f84a-4fe8-acd4-a7f35e7673a7", "universalIdentifier": "20202020-0b00-45cd-b6f6-6cd806fc6804", "nameSingular": "note", "namePlural": "notes", @@ -24389,11 +23553,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": false, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "814a6dce-c013-493b-b580-5ce44393c6cc", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "f0ce714d-d63d-46d3-a112-e7ef30b52703", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "shortcut": "N", "isLabelSyncedWithName": false, "isSearchable": true, @@ -24405,7 +23569,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "fieldsList": [ { "__typename": "Field", - "id": "4ed96821-396e-4618-9804-cd9cd2d6bbe6", + "id": "bda1f555-92e7-44b1-a37b-2bed095d24d1", "universalIdentifier": "20202020-c01a-4111-8a11-dfabcddeef12", "type": "UUID", "name": "id", @@ -24418,20 +23582,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "36dc6280-51db-4758-93eb-46a0237a0c0b", + "id": "d8c58aba-09e6-4c9e-bda1-6d885465c8ec", "universalIdentifier": "20202020-c01b-4112-9b12-fabcddefe123", "type": "DATE_TIME", "name": "createdAt", @@ -24444,8 +23608,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -24453,13 +23617,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "c2bdda24-c086-4fdf-980c-6eca0d4ff442", + "id": "64a040d5-30c5-410c-97e1-445958989de7", "universalIdentifier": "20202020-c01c-4113-8c13-abcddeef1234", "type": "DATE_TIME", "name": "updatedAt", @@ -24472,8 +23636,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": "now", "options": null, "settings": { @@ -24481,13 +23645,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a323340c-6bbe-4b3d-8803-7b44f2b68517", + "id": "15f09753-c784-4e38-b9ed-8bef62dbb072", "universalIdentifier": "20202020-c01d-4114-9d14-bcddeef12345", "type": "DATE_TIME", "name": "deletedAt", @@ -24500,8 +23664,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -24509,13 +23673,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6f503492-a484-401b-bdd1-7d8db0876708", + "id": "fbf10939-e387-4e8e-ba62-8a4119f23883", "universalIdentifier": "20202020-368d-4dc2-943f-ed8a49c7fdfb", "type": "POSITION", "name": "position", @@ -24528,20 +23692,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "814a6dce-c013-493b-b580-5ce44393c6cc", + "id": "f0ce714d-d63d-46d3-a112-e7ef30b52703", "universalIdentifier": "20202020-faeb-4c76-8ba6-ccbb0b4a965f", "type": "TEXT", "name": "title", @@ -24554,20 +23718,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "4287a605-dddd-4e57-a20c-7d536d7d29f2", + "id": "71961f86-5386-4cc9-b23a-39fc5c1c7c5e", "universalIdentifier": "20202020-a7bb-4d94-be51-8f25181502c8", "type": "RICH_TEXT_V2", "name": "bodyV2", @@ -24580,20 +23744,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6a255d21-ae58-41c9-a4f3-8e62973cc6cb", + "id": "fc818f5d-a41d-4213-8919-00aa67a76cff", "universalIdentifier": "20202020-0d79-4e21-ab77-5a394eff97be", "type": "ACTOR", "name": "createdBy", @@ -24606,8 +23770,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -24617,13 +23781,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "2dfd35c1-3e82-4941-9491-c8fafee295ec", + "id": "76b9f531-6e16-4a18-818a-d163b37a6f60", "universalIdentifier": "9b446e89-2484-4044-a3b5-420f6b578c0c", "type": "ACTOR", "name": "updatedBy", @@ -24636,8 +23800,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -24647,13 +23811,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "c3ced184-b5f9-4acb-a403-68c1818d0b21", + "id": "60d58bbf-dfc1-4a97-be58-84666f82e39b", "universalIdentifier": "20202020-7ea8-44d4-9d4c-51dd2a757950", "type": "TS_VECTOR", "name": "searchVector", @@ -24666,8 +23830,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -24676,13 +23840,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "cfe77965-fe0b-4da4-9d71-fb5a47466153", + "id": "8e749ca3-a91a-4270-bb74-59b69804ba72", "universalIdentifier": "20202020-4986-4c92-bf19-39934b149b16", "type": "RELATION", "name": "attachments", @@ -24695,8 +23859,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -24704,30 +23868,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", + "id": "1691dfbb-f84a-4fe8-acd4-a7f35e7673a7", "nameSingular": "note", "namePlural": "notes" }, "targetObjectMetadata": { "__typename": "Object", - "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", "nameSingular": "attachment", "namePlural": "attachments" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "cfe77965-fe0b-4da4-9d71-fb5a47466153", + "id": "8e749ca3-a91a-4270-bb74-59b69804ba72", "name": "attachments" }, "targetFieldMetadata": { "__typename": "Field", - "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", "name": "target" } }, @@ -24735,7 +23899,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "972ed175-3bb8-44c8-8a15-6110a752c232", + "id": "c6158691-1136-49a3-8304-af8bf92cf441", "universalIdentifier": "20202020-4d1d-41ac-b13b-621631298d67", "type": "RELATION", "name": "favorites", @@ -24748,8 +23912,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -24757,30 +23921,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", + "id": "1691dfbb-f84a-4fe8-acd4-a7f35e7673a7", "nameSingular": "note", "namePlural": "notes" }, "targetObjectMetadata": { "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "972ed175-3bb8-44c8-8a15-6110a752c232", + "id": "c6158691-1136-49a3-8304-af8bf92cf441", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "27ea9991-d5bb-44e1-bf1a-ecc6ca0528cb", + "id": "385f67b2-ae55-4b0c-95b8-8936b26019cb", "name": "note" } }, @@ -24788,7 +23952,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "8c70b651-06ce-46fb-9acd-8a09eb0759ca", + "id": "1acbbea8-76dd-4a1e-9d2e-fdbebc1efe1f", "universalIdentifier": "20202020-1f25-43fe-8b00-af212fdde823", "type": "RELATION", "name": "noteTargets", @@ -24801,8 +23965,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -24810,30 +23974,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", + "id": "1691dfbb-f84a-4fe8-acd4-a7f35e7673a7", "nameSingular": "note", "namePlural": "notes" }, "targetObjectMetadata": { "__typename": "Object", - "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", "nameSingular": "noteTarget", "namePlural": "noteTargets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "8c70b651-06ce-46fb-9acd-8a09eb0759ca", + "id": "1acbbea8-76dd-4a1e-9d2e-fdbebc1efe1f", "name": "noteTargets" }, "targetFieldMetadata": { "__typename": "Field", - "id": "c031446f-95b4-4948-9b32-f8be9ea35590", + "id": "9c7ac0eb-cbb9-4043-bc79-a6350611d037", "name": "note" } }, @@ -24841,7 +24005,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "a780900c-a955-4f4f-8fdc-4d43b161199e", + "id": "7f344d16-80cb-4f45-a8f0-8bec30a1c446", "universalIdentifier": "20202020-7030-42f8-929c-1a57b25d6bce", "type": "RELATION", "name": "timelineActivities", @@ -24854,8 +24018,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { @@ -24863,30 +24027,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", + "id": "1691dfbb-f84a-4fe8-acd4-a7f35e7673a7", "nameSingular": "note", "namePlural": "notes" }, "targetObjectMetadata": { "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", + "id": "64d19806-f11a-493e-af13-2059861c8139", "nameSingular": "timelineActivity", "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "a780900c-a955-4f4f-8fdc-4d43b161199e", + "id": "7f344d16-80cb-4f45-a8f0-8bec30a1c446", "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", "name": "target" } }, @@ -24896,9 +24060,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "f11cf427-7ccb-49ef-86e3-3c3b27d82291", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "id": "7df4723d-a73a-4026-8b12-2c4259111425", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "name": "IDX_f20de8d7fc74a405e4083051275", "indexWhereClause": null, "indexType": "GIN", @@ -24907,10 +24071,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "7995b17e-efdd-4c89-a7f4-47999af71955", - "fieldMetadataId": "c3ced184-b5f9-4acb-a403-68c1818d0b21", - "createdAt": "2026-02-26T11:55:16.386Z", - "updatedAt": "2026-02-26T11:55:16.386Z", + "id": "07a65879-7b3b-400e-b89d-5ce2290e7172", + "fieldMetadataId": "60d58bbf-dfc1-4a97-be58-84666f82e39b", + "createdAt": "2026-02-27T01:17:26.888Z", + "updatedAt": "2026-02-27T01:17:26.888Z", "order": 0 } ] @@ -24922,33 +24086,59 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "universalIdentifier": "20202020-3319-4234-a34c-82d5c0e881a6", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isCustom": false, + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "universalIdentifier": "b3949cf1-167c-41bf-848c-f7e7721e6f23", + "nameSingular": "surveyResult", + "namePlural": "surveyResults", + "isCustom": true, "isRemote": false, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "labelIdentifierFieldMetadataId": "e3fd0788-0af3-417b-a101-a813bd3b1f77", + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "labelIdentifierFieldMetadataId": "3dddc5e7-6368-456b-9a4f-92d339d1d908", "imageIdentifierFieldMetadataId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": true, "duplicateCriteria": null, - "labelSingular": "Workspace Member", - "labelPlural": "Workspace Members", - "description": "A workspace member", - "icon": "IconUserCircle", + "labelSingular": "Survey result", + "labelPlural": "Survey results", + "description": "", + "icon": "IconRulerMeasure", "fieldsList": [ { "__typename": "Field", - "id": "f6afcc93-632d-4267-a5bf-e8e8c85997c4", - "universalIdentifier": "20202020-fb1a-41b1-8ab1-efabcdefabcd", + "id": "3dddc5e7-6368-456b-9a4f-92d339d1d908", + "universalIdentifier": "b1ffd1e5-c63f-4985-9450-c2f8228b882e", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "Name", + "icon": "IconAbc", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4ddd6301-c422-4af5-922e-cdccfc8310a5", + "universalIdentifier": "e96d10ef-0750-487a-abdd-fe8a2c8ecb3b", "type": "UUID", "name": "id", "label": "Id", @@ -24959,22 +24149,22 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isSystem": true, "isUIReadOnly": true, "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "isUnique": true, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "529949ae-7d40-4506-ab3c-9f0f5098ae38", - "universalIdentifier": "20202020-fb1b-41b2-9bb2-fabcdefabcde", + "id": "4fa22829-910f-4477-ac53-b84d23aea7a4", + "universalIdentifier": "8615185f-ef1d-4d7c-8343-d2a99749e69b", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -24986,509 +24176,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", "defaultValue": "now", "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c4375264-f8b9-4a91-8d1d-024b1cf51402", - "universalIdentifier": "20202020-fb1c-41b3-8cb3-abcdefabcdef", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b1a381fa-e54e-47a4-af80-3466bfed861a", - "universalIdentifier": "20202020-fb1d-41b4-9db4-bcdefabcdefa", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6e4c4f20-b929-4050-9b94-9a390c0ea077", - "universalIdentifier": "20202020-1810-4591-a93c-d0df97dca843", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Workspace member position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 0, - "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e3fd0788-0af3-417b-a101-a813bd3b1f77", - "universalIdentifier": "20202020-e914-43a6-9c26-3603c59065f4", - "type": "FULL_NAME", - "name": "name", - "label": "Name", - "description": "Workspace member name", - "icon": "IconCircleUser", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9f1b1da9-08d9-4a33-a22d-12436d73c7cb", - "universalIdentifier": "20202020-66bc-47f2-adac-f2ef7c598b63", - "type": "TEXT", - "name": "colorScheme", - "label": "Color Scheme", - "description": "Preferred color scheme", - "icon": "IconColorSwatch", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'System'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2391fc63-b243-4f94-97dc-b7d6e15364fc", - "universalIdentifier": "20202020-402e-4695-b169-794fa015afbe", - "type": "TEXT", - "name": "locale", - "label": "Language", - "description": "Preferred language", - "icon": "IconLanguage", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'en'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "50137ce3-a767-4251-80b3-b806f487b9d9", - "universalIdentifier": "20202020-0ced-4c4f-a376-c98a966af3f6", - "type": "TEXT", - "name": "avatarUrl", - "label": "Avatar Url", - "description": "Workspace member avatar", - "icon": "IconFileUpload", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b670ff46-9a85-4f5d-bfbd-8117c618bb05", - "universalIdentifier": "20202020-4c5f-4e09-bebc-9e624e21ecf4", - "type": "TEXT", - "name": "userEmail", - "label": "User Email", - "description": "Related user email address", - "icon": "IconMail", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": true, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "30068787-bd34-4b68-bbdf-a9fe8f7fedf2", - "universalIdentifier": "20202020-92d0-1d7f-a126-25ededa6b142", - "type": "NUMBER", - "name": "calendarStartDay", - "label": "Start of the week", - "description": "User's preferred start day of the week", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": 7, - "options": null, - "settings": { - "dataType": "int" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "314f0000-6980-4fce-9476-e78e3d3fb4ab", - "universalIdentifier": "20202020-75a9-4dfc-bf25-2e4b43e89820", - "type": "UUID", - "name": "userId", - "label": "User Id", - "description": "Associated User Id", - "icon": "IconCircleUsers", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ae6d1910-cce1-416a-aafd-90a6cc60cdb7", - "universalIdentifier": "20202020-2d33-4c21-a86e-5943b050dd54", - "type": "TEXT", - "name": "timeZone", - "label": "Time zone", - "description": "User time zone", - "icon": "IconTimezone", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'system'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a743c690-1726-4aa5-b905-35f02d34dc9c", - "universalIdentifier": "20202020-af13-4e11-b1e7-b8cf5ea13dc0", - "type": "SELECT", - "name": "dateFormat", - "label": "Date format", - "description": "User's preferred date format", - "icon": "IconCalendarEvent", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'SYSTEM'", - "options": [ - { - "id": "20202020-4b6a-4a08-8506-09bd59ef118e", - "color": "turquoise", - "label": "System", - "value": "SYSTEM", - "position": 0 - }, - { - "id": "20202020-6981-4e21-bb11-43ac1081be04", - "color": "red", - "label": "Month First", - "value": "MONTH_FIRST", - "position": 1 - }, - { - "id": "20202020-bf56-4199-b013-27ee921d046d", - "color": "purple", - "label": "Day First", - "value": "DAY_FIRST", - "position": 2 - }, - { - "id": "20202020-fd23-47d3-b01d-0479c11e5a2d", - "color": "sky", - "label": "Year First", - "value": "YEAR_FIRST", - "position": 3 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bba2a4f3-298f-4d32-bf4f-5fda6a155d75", - "universalIdentifier": "20202020-8acb-4cf8-a851-a6ed443c8d81", - "type": "SELECT", - "name": "timeFormat", - "label": "Time format", - "description": "User's preferred time format", - "icon": "IconClock2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'SYSTEM'", - "options": [ - { - "id": "20202020-349f-4ff8-82be-3eb52e7ec5f5", - "color": "sky", - "label": "System", - "value": "SYSTEM", - "position": 0 - }, - { - "id": "20202020-592c-4e33-a457-f4dcde59a3fc", - "color": "red", - "label": "24HRS", - "value": "HOUR_24", - "position": 1 - }, - { - "id": "20202020-151c-43c2-a463-5bc42e5ce434", - "color": "purple", - "label": "12HRS", - "value": "HOUR_12", - "position": 2 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6f724105-9280-4bdd-b638-48ad5b4dabd2", - "universalIdentifier": "20202020-7f40-4e7f-b126-11c0eda6b141", - "type": "SELECT", - "name": "numberFormat", - "label": "Number format", - "description": "User's preferred number format", - "icon": "IconNumbers", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": "'SYSTEM'", - "options": [ - { - "id": "20202020-8b5b-4cee-8449-ca48d7c65c11", - "color": "turquoise", - "label": "System", - "value": "SYSTEM", - "position": 0 - }, - { - "id": "20202020-657d-409b-9c2a-d8c3b8842859", - "color": "blue", - "label": "Commas and dot", - "value": "COMMAS_AND_DOT", - "position": 1 - }, - { - "id": "20202020-8703-4475-a92b-42e631851d8b", - "color": "green", - "label": "Spaces and comma", - "value": "SPACES_AND_COMMA", - "position": 2 - }, - { - "id": "20202020-2ea4-4b99-b72b-bebac01fd7db", - "color": "orange", - "label": "Dots and comma", - "value": "DOTS_AND_COMMA", - "position": 3 - }, - { - "id": "20202020-9d07-4353-8ce9-d067d639abf5", - "color": "purple", - "label": "Apostrophe and dot", - "value": "APOSTROPHE_AND_DOT", - "position": 4 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "844883ef-d2a7-4da9-b442-42d81baebba6", - "universalIdentifier": "20202020-46d0-4e7f-bc26-74c0edaeb619", - "type": "TS_VECTOR", - "name": "searchVector", - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"nameFirstName\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"nameLastName\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"userEmail\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "498e2739-e587-4d14-b785-3495d0d58058", - "universalIdentifier": "4a3f26d1-033e-4d84-b23a-9adc2fd0c2a8", + "id": "94754291-ce50-4a58-94dc-e09090a2e24c", + "universalIdentifier": "97889423-8b25-4c7b-bd41-5c3ebdfc6e4d", "type": "ACTOR", "name": "createdBy", "label": "Created by", @@ -25500,25 +24202,131 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null + "name": "''", + "source": "'MANUAL'" }, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "1bfd9234-3d0b-4439-a001-a30ca64e3e44", - "universalIdentifier": "29f84ad0-509f-4aef-9f9c-2691dd60cd87", + "id": "469767d1-93bd-4d4f-b6bb-55fac4fbe26a", + "universalIdentifier": "7d7827eb-af00-4481-8153-5f48a5d948dd", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Deletion date", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "5a742a69-3ab7-409b-917b-51aff530422f", + "universalIdentifier": "fa11c660-8598-4a66-b3a7-21b6d1463b44", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c74af810-d3a9-430c-8c1d-907585314e9f", + "universalIdentifier": "f3becf33-2a72-4378-abbd-2800a3202249", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Search vector", + "icon": "IconSearch", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a7ff940a-c878-4e47-b38f-5fac3562f967", + "universalIdentifier": "7cf73aae-971f-49ff-a76d-bf93909226d5", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "defaultValue": "now", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "fcce470e-e050-4664-a896-b68fcdf16df7", + "universalIdentifier": "78d77ea3-4aaa-4087-a904-29e8d9f59b29", "type": "ACTOR", "name": "updatedBy", "label": "Updated by", @@ -25530,8 +24338,1532 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b76ebb15-79f9-4c32-ba83-a6c613e53903", + "universalIdentifier": "e6820956-5eb6-4535-8d7b-9494ec5ba69b", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "SurveyResults tied to the Timeline Activity", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b76ebb15-79f9-4c32-ba83-a6c613e53903", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4f610fea-70c9-4c2c-97a6-c036867042ba", + "universalIdentifier": "c03816f0-82ab-43f1-b1a4-acfd0824046f", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "SurveyResults tied to the Favorite", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "4f610fea-70c9-4c2c-97a6-c036867042ba", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "e3e51e03-3892-404d-8013-df9d1339ec6c", + "name": "surveyResult" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "eaa82229-6523-48f0-8159-ce9cfa4fb88e", + "universalIdentifier": "eb041183-f20a-4e62-914c-f85db08c695c", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "SurveyResults tied to the Attachment", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "eaa82229-6523-48f0-8159-ce9cfa4fb88e", + "name": "attachments" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b6e33f88-009c-4d8c-8593-0ca8c023247d", + "universalIdentifier": "54e141de-180b-480f-bbef-012bf7d0822a", + "type": "RELATION", + "name": "noteTargets", + "label": "Note Targets", + "description": "SurveyResults tied to the Note Target", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b6e33f88-009c-4d8c-8593-0ca8c023247d", + "name": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "07ad123b-8f3b-49d4-9754-c4e6d8751300", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e04459a5-f37b-47d1-9afe-829e4255fd3f", + "universalIdentifier": "5162c6df-865c-4288-8ce1-be9d31792d0d", + "type": "RELATION", + "name": "taskTargets", + "label": "Task Targets", + "description": "SurveyResults tied to the Task Target", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "e04459a5-f37b-47d1-9afe-829e4255fd3f", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "3fafd252-d79a-4fe7-8c16-730b6dd495d1", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "93f76377-3ffd-494e-b921-5db0ab22b1bf", + "universalIdentifier": "ef68fbd1-c9d0-441a-a587-5bb8dc564d58", + "type": "NUMBER", + "name": "score", + "label": "Score (Float 3 decimals)", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.781Z", + "updatedAt": "2026-02-27T01:17:27.781Z", + "defaultValue": null, + "options": null, + "settings": { + "type": "number", + "dataType": "float", + "decimals": 3 + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e3c500f2-63f3-4d54-8537-544d7d8f0dcc", + "universalIdentifier": "4f23bb80-5904-4fc4-a8f4-be7603066f24", + "type": "NUMBER", + "name": "percentageOfCompletion", + "label": "Percentage of completion (Float 3 decimals + percentage)", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.781Z", + "updatedAt": "2026-02-27T01:17:27.781Z", + "defaultValue": null, + "options": null, + "settings": { + "type": "percentage", + "dataType": "float", + "decimals": 6 + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c9e265cf-37b7-4f33-a5a5-fcfaf51e3586", + "universalIdentifier": "f9e6d613-c7d4-4d7f-a97d-fba3d4a9efe2", + "type": "NUMBER", + "name": "participants", + "label": "Participants (Int)", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.781Z", + "updatedAt": "2026-02-27T01:17:27.781Z", + "defaultValue": null, + "options": null, + "settings": { + "type": "number", + "dataType": "int" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "da8c18a3-a059-4fdf-b9e5-a49423e0c83e", + "universalIdentifier": "270ac8fe-1898-4576-920e-62d937e5471e", + "type": "NUMBER", + "name": "averageEstimatedNumberOfAtomsInTheUniverse", + "label": "Average estimated number of atoms in the universe (BigInt)", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.781Z", + "updatedAt": "2026-02-27T01:17:27.781Z", + "defaultValue": null, + "options": null, + "settings": { + "type": "number", + "dataType": "bigint" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f97f2e68-e464-41ad-b96d-a40358fdf953", + "universalIdentifier": "9835ba51-d409-4a66-953b-5408db12fbd8", + "type": "TEXT", + "name": "comments", + "label": "Comments (Max 5 rows)", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.781Z", + "updatedAt": "2026-02-27T01:17:27.781Z", + "defaultValue": null, + "options": null, + "settings": { + "displayedMaxRows": 5 + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f3c7beb2-9827-465e-b151-be9ad31a28e4", + "universalIdentifier": "c0d877c4-8fd6-4987-8544-45c5055bedc3", + "type": "TEXT", + "name": "shortNotes", + "label": "Short notes (Max 1 row)", + "description": "", + "icon": "", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.781Z", + "updatedAt": "2026-02-27T01:17:27.781Z", + "defaultValue": null, + "options": null, + "settings": { + "displayedMaxRows": 1 + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e1ebf3a7-a665-4ba4-8e57-10d9f19a7910", + "universalIdentifier": "4ddc4c96-33b9-480a-8ac7-9c9a8d361502", + "type": "FILES", + "name": "files", + "label": "Files", + "description": "", + "icon": "IconFiles", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.781Z", + "updatedAt": "2026-02-27T01:17:27.781Z", + "defaultValue": null, + "options": null, + "settings": { + "maxNumberOfValues": 5 + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3b251609-1144-4599-9e7f-58dc0572f646", + "universalIdentifier": "6efebc18-7ed7-4ec3-9f6a-ce6a2c80a25d", + "type": "RELATION", + "name": "ownedPets", + "label": "Owned Pets", + "description": "SurveyResults Pet", + "icon": "IconRelationOneToMany", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.223Z", + "updatedAt": "2026-02-27T01:17:28.223Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "3b251609-1144-4599-9e7f-58dc0572f646", + "name": "ownedPets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "8ea29616-1e89-4351-b5e1-ca7ad4f78014", + "name": "polymorphicOwner" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a8693002-794c-4096-a09d-d347a73ec4a1", + "universalIdentifier": "0160ed4f-55f6-4a3c-a9c8-3a79570bd87c", + "type": "RELATION", + "name": "helpedPets", + "label": "Helped Pets", + "description": "SurveyResults Pet", + "icon": "IconRelationOneToMany", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.224Z", + "updatedAt": "2026-02-27T01:17:28.224Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "helpedPetsId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "11fd51ad-0cf7-4537-94df-052e7a4262fd", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "a8693002-794c-4096-a09d-d347a73ec4a1", + "name": "helpedPets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "df1f2bd4-22fe-4c38-b051-66608169f8bf", + "name": "polymorphicHelper" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "2aee9ed0-f675-4bfb-9901-4af65c42a509", + "createdAt": "2026-02-27T01:17:27.667Z", + "updatedAt": "2026-02-27T01:17:27.667Z", + "name": "IDX_e2a25535adda4544be555d3b6d8", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "9bba6ab9-3948-49a9-ab03-14ebc57c4c6a", + "fieldMetadataId": "c74af810-d3a9-430c-8c1d-907585314e9f", + "createdAt": "2026-02-27T01:17:27.689Z", + "updatedAt": "2026-02-27T01:17:27.689Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "bcd3baab-9f40-49c5-a902-02a457463b93", + "createdAt": "2026-02-27T01:17:28.224Z", + "updatedAt": "2026-02-27T01:17:28.224Z", + "name": "IDX_f69cb5fa5975d86fddaef55f8f1", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": true, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "4a505e55-075d-47c0-a86b-a7027b4f8934", + "fieldMetadataId": "a8693002-794c-4096-a09d-d347a73ec4a1", + "createdAt": "2026-02-27T01:17:28.245Z", + "updatedAt": "2026-02-27T01:17:28.245Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "universalIdentifier": "ee93da26-e51f-471b-bf36-f710a1cbeabb", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements", + "isCustom": true, + "isRemote": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "labelIdentifierFieldMetadataId": "ea484985-032b-4da9-aa58-f2878c1b616f", + "imageIdentifierFieldMetadataId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": true, + "duplicateCriteria": null, + "labelSingular": "Pet Care Agreement", + "labelPlural": "Pet Care Agreements", + "description": "", + "icon": "IconPaw", + "fieldsList": [ + { + "__typename": "Field", + "id": "ea484985-032b-4da9-aa58-f2878c1b616f", + "universalIdentifier": "e0525044-ce38-4f3e-a2c9-17f725d20376", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": true, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "21e86098-eed0-457c-866c-4cb17cb11b4b", + "universalIdentifier": "b00271a5-dbed-4a96-ac01-60d161c2e97e", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": "now", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "098de65c-5162-40b3-8179-d74bcad0e611", + "universalIdentifier": "13cdbada-4ae0-4052-b673-8516ce024f62", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f4f5edb9-4b42-4157-be68-41594347b7db", + "universalIdentifier": "7810b42f-db65-407b-8d27-d162706a8aa8", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Deletion date", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "632de67a-8c5d-47d6-a104-735735a0c5b3", + "universalIdentifier": "ae3733f9-2c81-498c-97f0-8dc5f8b49fc4", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": 0, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f5b274c5-52df-4432-a2b7-3eda97a6a830", + "universalIdentifier": "1119dfc5-aeb5-40a5-940b-b824d207216e", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Search vector", + "icon": "IconSearch", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": null, + "options": null, + "settings": { + "asExpression": "to_tsvector('simple', NULL)", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "21a198d3-b457-4e93-918b-702159135ac3", + "universalIdentifier": "b2041077-2e0e-49ea-a727-d42d64f74d5e", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": "now", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "59df22b5-720d-429d-a927-85dfaf93b0c2", + "universalIdentifier": "400fa23b-ea7a-40c6-a03f-22cf0b02aedb", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": { + "name": "''", + "source": "'MANUAL'" + }, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f5165e25-c5ce-4ccc-b547-ee831c4de6ff", + "universalIdentifier": "81298545-b769-4d9d-830f-90762eb44e65", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "PetCareAgreements tied to the Timeline Activity", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "64d19806-f11a-493e-af13-2059861c8139", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "f5165e25-c5ce-4ccc-b547-ee831c4de6ff", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0504556f-c47b-4b74-9bd8-29e53d12fd3b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "19aa48dc-c57f-49a7-aac1-a5cbbd41bb35", + "universalIdentifier": "306406a7-ddf9-4a6e-b8a9-25f99f4af1c3", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "PetCareAgreements tied to the Favorite", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "df7b79f4-de4d-47e3-852c-b951fc8292c9", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "19aa48dc-c57f-49a7-aac1-a5cbbd41bb35", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "b135c229-c0be-42a4-8ec7-7b1346053668", + "name": "petCareAgreement" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "71da3160-935c-4fe2-b931-bc519f56344f", + "universalIdentifier": "fd33b457-9a4a-4243-ad0d-b3cb14802c64", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "PetCareAgreements tied to the Attachment", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "276bb040-9936-4d0d-99b2-3ea46efdbf43", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "71da3160-935c-4fe2-b931-bc519f56344f", + "name": "attachments" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "22a7e21a-80bd-4615-bee3-ae53074ad40b", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "46edb2f7-20fd-4696-b124-ef5e336ab84c", + "universalIdentifier": "aa10e0a2-6e62-48e7-963f-d2dc7989c689", + "type": "RELATION", + "name": "noteTargets", + "label": "Note Targets", + "description": "PetCareAgreements tied to the Note Target", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "fcdd4a77-be2c-4d55-90bd-40bd1c3db68e", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "46edb2f7-20fd-4696-b124-ef5e336ab84c", + "name": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "07ad123b-8f3b-49d4-9754-c4e6d8751300", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "11576aee-6293-4ea2-9815-31c1001679aa", + "universalIdentifier": "16bef78e-0ded-43ba-b604-01c95e6238f6", + "type": "RELATION", + "name": "taskTargets", + "label": "Task Targets", + "description": "PetCareAgreements tied to the Task Target", + "icon": "IconBuildingSkyscraper", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "72aa36e3-0859-482d-b07f-23ef43e557f5", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "11576aee-6293-4ea2-9815-31c1001679aa", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "3fafd252-d79a-4fe7-8c16-730b6dd495d1", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "73f75510-6ee9-4aaf-9d4b-1d6c4ffeabf0", + "universalIdentifier": "2668abfe-23e2-43df-86d0-8d19ee4ad35b", + "type": "RELATION", + "name": "pet", + "label": "Pet", + "description": "PetCareAgreements Pet", + "icon": "IconCat", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.543Z", + "updatedAt": "2026-02-27T01:17:28.543Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "petId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "6b348756-2824-4eff-ade4-4129abe625f8", + "nameSingular": "pet", + "namePlural": "pets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "73f75510-6ee9-4aaf-9d4b-1d6c4ffeabf0", + "name": "pet" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "30091ffc-504e-49ae-b1eb-1633616a1fd0", + "name": "caretakers" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0a27394a-f071-4155-a642-9b6700abb9d6", + "universalIdentifier": "608a115e-36c5-4b23-8d4a-dda3810a76bc", + "type": "MORPH_RELATION", + "name": "caretaker", + "label": "Caretaker", + "description": "PetCareAgreements tied to the Person", + "icon": "IconUser", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:28.305Z", + "updatedAt": "2026-02-27T01:17:28.305Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "caretakerPersonId" + }, + "isLabelSyncedWithName": false, + "morphId": "6ff516c3-1e70-4706-960c-b9a8c623c097", + "applicationId": "6b4f001a-b748-4f4a-868f-77da8c0c2b53", + "relation": null, + "morphRelations": [ + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "0a27394a-f071-4155-a642-9b6700abb9d6", + "name": "caretaker" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "7c515645-7061-4b47-a962-bd14f0ede49d", + "name": "caredForPets" + } + }, + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "0dfc94d4-5e0c-4a87-b788-4e572405a527", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "6cad53af-7127-4313-994c-65453e0ae120", + "name": "caretaker" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "b6ed9897-574d-4859-83ed-46cfb7943908", + "name": "caredForPets" + } + } + ] + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "890eaa71-bd01-4c4e-8ca7-369cf94ef07a", + "createdAt": "2026-02-27T01:17:27.955Z", + "updatedAt": "2026-02-27T01:17:27.955Z", + "name": "IDX_287bd4bcd6070ae3cb538c71ea7", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "f8288630-774c-4529-8ff6-c0f30a83829a", + "fieldMetadataId": "f5b274c5-52df-4432-a2b7-3eda97a6a830", + "createdAt": "2026-02-27T01:17:27.980Z", + "updatedAt": "2026-02-27T01:17:27.980Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "49fb1a8c-a448-4f4a-979e-0598c6c2ad46", + "createdAt": "2026-02-27T01:17:28.305Z", + "updatedAt": "2026-02-27T01:17:28.305Z", + "name": "IDX_dff2b88f7bfc1706a851949e1d6", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": true, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "9d3d6c88-7a18-41ff-a940-8014bbc5a310", + "fieldMetadataId": "0a27394a-f071-4155-a642-9b6700abb9d6", + "createdAt": "2026-02-27T01:17:28.320Z", + "updatedAt": "2026-02-27T01:17:28.320Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "9e8b7f1f-bea1-457e-b9ff-bf506102bf2e", + "createdAt": "2026-02-27T01:17:28.305Z", + "updatedAt": "2026-02-27T01:17:28.305Z", + "name": "IDX_be3fc65c60e132f5401b21b065e", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": true, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "6de880cd-50e3-402f-9f38-f7cc9abffa9c", + "fieldMetadataId": "6cad53af-7127-4313-994c-65453e0ae120", + "createdAt": "2026-02-27T01:17:28.322Z", + "updatedAt": "2026-02-27T01:17:28.322Z", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "78ef8d68-3acc-4fc5-b24e-b093156459b5", + "createdAt": "2026-02-27T01:17:28.543Z", + "updatedAt": "2026-02-27T01:17:28.543Z", + "name": "IDX_16a70d520ac126ba5cdb2553922", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": true, + "indexFieldMetadataList": [ + { + "__typename": "IndexField", + "id": "e2be9cb1-7708-46d8-a300-fee3edcf3d09", + "fieldMetadataId": "73f75510-6ee9-4aaf-9d4b-1d6c4ffeabf0", + "createdAt": "2026-02-27T01:17:28.553Z", + "updatedAt": "2026-02-27T01:17:28.553Z", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "031d2e7c-0a30-4713-889a-5c2ab30da9fb", + "universalIdentifier": "20202020-0408-4f38-b8a8-4d5e3e26e24d", + "nameSingular": "blocklist", + "namePlural": "blocklists", + "isCustom": false, + "isRemote": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "labelIdentifierFieldMetadataId": "3c128d59-a142-4bcd-b2c0-defff9d35f16", + "imageIdentifierFieldMetadataId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Blocklist", + "labelPlural": "Blocklists", + "description": "Blocklist", + "icon": "IconForbid2", + "fieldsList": [ + { + "__typename": "Field", + "id": "67db2e06-994d-435d-90d3-58fa24479aff", + "universalIdentifier": "20202020-b01a-4011-8b11-5a9fc27fbf6e", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "uuid", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a4a040c2-9f0f-400f-9a9f-d01143bc2c11", + "universalIdentifier": "20202020-b01b-4012-9c12-6bafd38fcf7f", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0f05a24a-20b0-47fc-a13b-b84f10821e51", + "universalIdentifier": "20202020-b01c-4013-8d13-7cbfe49fdf8f", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": "now", + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "95375872-cc3d-4c54-bfe1-58b6e06384da", + "universalIdentifier": "20202020-b01d-4014-9e14-8dcff5affef9", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": { + "displayFormat": "RELATIVE" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "78894c31-e65a-4ff2-b3be-6ef42b6931af", + "universalIdentifier": "b80db15d-8dc2-4f47-a072-15030941a9d1", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -25541,483 +25873,172 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "89bb2abc-a288-4327-9bca-49fa37b2d7ae", - "universalIdentifier": "20202020-6cb2-4161-9f29-a4b7f1283859", - "type": "RELATION", - "name": "blocklist", - "label": "Blocklist", - "description": "Blocklisted handles", - "icon": "IconForbid2", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "2c6ab7e0-3265-4481-b28e-f081503c798f", - "nameSingular": "blocklist", - "namePlural": "blocklists" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "89bb2abc-a288-4327-9bca-49fa37b2d7ae", - "name": "blocklist" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "26340dcc-ccdd-48a9-8d91-a318b3c1bf63", - "name": "workspaceMember" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "755220e6-69e3-4f0b-84b2-564e7af0bcdb", - "universalIdentifier": "20202020-0dbc-4841-9ce1-3e793b5b3512", - "type": "RELATION", - "name": "calendarEventParticipants", - "label": "Calendar Event Participants", - "description": "Calendar Event Participants", - "icon": "IconCalendar", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "2428f5af-7438-44b1-94b4-42161fb1a02f", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "755220e6-69e3-4f0b-84b2-564e7af0bcdb", - "name": "calendarEventParticipants" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ece5c9b0-2d71-4ffc-a30c-70ea41706950", - "name": "workspaceMember" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6b3bb88a-6986-423d-a982-d15e4443b9d0", - "universalIdentifier": "20202020-dc29-4bd4-a3c1-29eafa324bee", - "type": "RELATION", - "name": "accountOwnerForCompanies", - "label": "Account Owner For Companies", - "description": "Account owner for companies", - "icon": "IconBriefcase", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6b3bb88a-6986-423d-a982-d15e4443b9d0", - "name": "accountOwnerForCompanies" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1c659dd6-4c64-427b-96f5-0c56b16f7b52", - "name": "accountOwner" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "98fd3d82-2c97-41dd-90f8-61836ee90223", - "universalIdentifier": "20202020-e322-4bde-a525-727079b4a100", - "type": "RELATION", - "name": "connectedAccounts", - "label": "Connected accounts", - "description": "Connected accounts", - "icon": "IconAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "37158008-6977-486c-95b3-a58365a98a2f", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "98fd3d82-2c97-41dd-90f8-61836ee90223", - "name": "connectedAccounts" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "c40ba3fc-eaf4-404c-8acd-8d391af1961c", - "name": "accountOwner" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1dccd03c-2a89-467a-8291-406d67cb8672", - "universalIdentifier": "20202020-f3c1-4faf-b343-cf7681038757", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Favorites linked to the workspace member", - "icon": "IconHeart", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7d4a6af5-536c-45af-8040-224ee553ce05", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1dccd03c-2a89-467a-8291-406d67cb8672", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "e56f7c0a-383a-4696-87bf-a2517f815a1c", - "name": "forWorkspaceMember" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bc7e17df-a3ae-442f-beea-40a126f55a4c", - "universalIdentifier": "20202020-8f99-48bc-a5eb-edd33dd54188", - "type": "RELATION", - "name": "messageParticipants", - "label": "Message Participants", - "description": "Message Participants", + "id": "af7cd1f9-2466-464d-972e-f201f7ad8668", + "universalIdentifier": "11aaa404-f04b-421d-a451-c453bf77cc78", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", "icon": "IconUserCircle", "isCustom": false, "isActive": true, - "isSystem": false, + "isSystem": true, "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": { + "name": "'System'", + "source": "'MANUAL'", + "workspaceMemberId": null }, + "options": null, + "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "823cfbad-68a1-4475-aa2f-7d0588506b6e", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "bc7e17df-a3ae-442f-beea-40a126f55a4c", - "name": "messageParticipants" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "f21fd1f3-c782-46ab-851a-2c25e710a375", - "name": "workspaceMember" - } - }, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b3775628-8775-4338-84f4-0612fc30efd3", - "universalIdentifier": "20202020-9e4d-4b3a-8c1f-6d7e8f9a0b1c", - "type": "RELATION", - "name": "ownedOpportunities", - "label": "Owned opportunities", - "description": "Opportunities owned by the workspace member", - "icon": "IconTargetArrow", + "id": "fe6c2bec-520b-41ef-bbaf-1017b738a3f6", + "universalIdentifier": "72a27e60-3542-46dc-90db-684d79bd7f11", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Blocklist record position", + "icon": "IconHierarchy2", "isCustom": false, "isActive": true, - "isSystem": false, - "isUIReadOnly": true, + "isSystem": true, + "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "defaultValue": null, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": 0, "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, + "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "44e586bb-74a8-481c-b734-514f6030581e", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b3775628-8775-4338-84f4-0612fc30efd3", - "name": "ownedOpportunities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3cc624b4-d2c3-4a72-b964-cee9c535846a", - "name": "owner" - } - }, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "be86ea7a-d64d-4266-9412-cc9d51a5f37e", - "universalIdentifier": "20202020-61dc-4a1c-99e8-38ebf8d2bbeb", - "type": "RELATION", - "name": "assignedTasks", - "label": "Assigned tasks", - "description": "Tasks assigned to the workspace member", - "icon": "IconCheckbox", + "id": "b857cd80-cfcc-4176-973d-9f92df3d01f9", + "universalIdentifier": "5fa758da-30b4-412e-8a4f-975f2848ce60", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", "isCustom": false, "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "relationType": "ONE_TO_MANY" + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"handle\"), ''))", + "generatedType": "STORED" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "be86ea7a-d64d-4266-9412-cc9d51a5f37e", - "name": "assignedTasks" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "f43603d7-d5d2-418a-93ba-78711bd2b19c", - "name": "assignee" - } - }, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "4d18289b-8994-4556-9e35-3789a405dbd6", - "universalIdentifier": "20202020-e15b-47b8-94fe-8200e3c66615", - "type": "RELATION", - "name": "timelineActivities", - "label": "Events", - "description": "Events linked to the workspace member", - "icon": "IconTimelineEvent", + "id": "3c128d59-a142-4bcd-b2c0-defff9d35f16", + "universalIdentifier": "20202020-eef3-44ed-aa32-4641d7fd4a3e", + "type": "TEXT", + "name": "handle", + "label": "Handle", + "description": "Handle", + "icon": "IconAt", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0a556eea-a4ab-41c9-a1ab-847cc8952eb0", + "universalIdentifier": "20202020-548d-4084-a947-fa20a39f7c06", + "type": "RELATION", + "name": "workspaceMember", + "label": "WorkspaceMember", + "description": "WorkspaceMember", + "icon": "IconCircleUser", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", "defaultValue": null, "options": null, "settings": { - "relationType": "ONE_TO_MANY" + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "workspaceMemberId" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "applicationId": "286069c5-9bc6-4bed-9ff0-8a1a76164f99", "relation": { "__typename": "Relation", - "type": "ONE_TO_MANY", + "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "047105f3-62d8-4c46-ba31-67411fd98f94", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" + "id": "031d2e7c-0a30-4713-889a-5c2ab30da9fb", + "nameSingular": "blocklist", + "namePlural": "blocklists" }, "targetObjectMetadata": { "__typename": "Object", - "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" + "id": "e6723828-4d1e-4780-a758-a7996e788b0a", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "4d18289b-8994-4556-9e35-3789a405dbd6", - "name": "timelineActivities" + "id": "0a556eea-a4ab-41c9-a1ab-847cc8952eb0", + "name": "workspaceMember" }, "targetFieldMetadata": { "__typename": "Field", - "id": "bda47d4a-59e9-459f-a20e-a61c39836fa4", - "name": "workspaceMember" + "id": "26d6d9bb-c63e-439f-b801-497dc6711611", + "name": "blocklist" } }, "morphRelations": null @@ -26026,42 +26047,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "f7f7249a-b388-4aa0-9123-51d2e64e378d", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_UNIQUE_39954942ffa78c957b5dee47739", + "id": "b01e6e9a-3e1a-4989-97ba-efd7e85dbf9e", + "createdAt": "2026-02-27T01:17:26.559Z", + "updatedAt": "2026-02-27T01:17:26.559Z", + "name": "IDX_9e247b4ab168100e4aa8fb6a853", "indexWhereClause": null, "indexType": "BTREE", - "isUnique": true, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "878e4ee8-72a3-419f-ba3c-1ccb32727734", - "fieldMetadataId": "b670ff46-9a85-4f5d-bfbd-8117c618bb05", - "createdAt": "2026-02-26T11:55:16.413Z", - "updatedAt": "2026-02-26T11:55:16.413Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "be30f1d1-9c97-4ad9-a718-1c99ed3f5061", - "createdAt": "2026-02-26T11:55:15.839Z", - "updatedAt": "2026-02-26T11:55:15.839Z", - "name": "IDX_e47451872f70c8f187a6b460ac7", - "indexWhereClause": null, - "indexType": "GIN", "isUnique": false, "isCustom": false, "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "631e8bbb-6d54-4f50-846d-e480a80ffb2b", - "fieldMetadataId": "844883ef-d2a7-4da9-b442-42d81baebba6", - "createdAt": "2026-02-26T11:55:16.414Z", - "updatedAt": "2026-02-26T11:55:16.414Z", + "id": "77f3f7d3-d055-4f49-9442-b0c460fa8a5e", + "fieldMetadataId": "0a556eea-a4ab-41c9-a1ab-847cc8952eb0", + "createdAt": "2026-02-27T01:17:26.867Z", + "updatedAt": "2026-02-27T01:17:26.867Z", "order": 0 } ] 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 new file mode 100644 index 0000000000..ba212f5fb8 --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/metadata/roles/mock-roles-data.ts @@ -0,0 +1,11208 @@ +/* eslint-disable */ +// @ts-nocheck +import { type Role } from '~/generated-metadata/graphql'; + +// This file was automatically generated — do not edit manually. + +// prettier-ignore +export const mockedRoles: Role[] = +[ + { + "__typename": "Role", + "id": "28f0a741-33c8-4af0-8542-f9ca2ad43285", + "label": "Admin", + "description": "Admin role", + "icon": "IconUserCog", + "canUpdateAllSettings": true, + "canAccessAllTools": true, + "isEditable": false, + "canReadAllObjectRecords": true, + "canUpdateAllObjectRecords": true, + "canSoftDeleteAllObjectRecords": true, + "canDestroyAllObjectRecords": true, + "canBeAssignedToUsers": true, + "canBeAssignedToAgents": false, + "canBeAssignedToApiKeys": true, + "permissionFlags": [], + "objectPermissions": [], + "fieldPermissions": [], + "rowLevelPermissionPredicates": [], + "rowLevelPermissionPredicateGroups": [], + "agents": [], + "apiKeys": [ + { + "__typename": "ApiKeyForRole", + "id": "20202020-f401-4d8a-a731-64d007c27bad", + "name": "My api key", + "expiresAt": "2025-12-31T23:59:59.000Z", + "revokedAt": null + } + ], + "workspaceMembers": [ + { + "__typename": "WorkspaceMember", + "id": "20202020-463f-435b-828c-107e007a2711", + "name": { + "__typename": "FullName", + "firstName": "Jane", + "lastName": "Austen" + }, + "avatarUrl": "", + "userEmail": "jane.austen@apple.dev" + } + ] + }, + { + "__typename": "Role", + "id": "bd590ccc-8818-4a3f-8a02-e9c2ed290d1f", + "label": "Guest", + "description": "Guest role", + "icon": "IconUser", + "canUpdateAllSettings": false, + "canAccessAllTools": false, + "isEditable": true, + "canReadAllObjectRecords": true, + "canUpdateAllObjectRecords": false, + "canSoftDeleteAllObjectRecords": false, + "canDestroyAllObjectRecords": false, + "canBeAssignedToUsers": true, + "canBeAssignedToAgents": false, + "canBeAssignedToApiKeys": false, + "permissionFlags": [], + "objectPermissions": [], + "fieldPermissions": [], + "rowLevelPermissionPredicates": [], + "rowLevelPermissionPredicateGroups": [], + "agents": [], + "apiKeys": [], + "workspaceMembers": [ + { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + }, + "avatarUrl": "", + "userEmail": "phil.schiler@apple.dev" + } + ] + }, + { + "__typename": "Role", + "id": "157b0226-1283-47b1-8d76-b21a281408a7", + "label": "Object-restricted", + "description": "All permissions except read on Rockets and update on Pets", + "icon": "custom", + "canUpdateAllSettings": true, + "canAccessAllTools": true, + "isEditable": true, + "canReadAllObjectRecords": true, + "canUpdateAllObjectRecords": true, + "canSoftDeleteAllObjectRecords": true, + "canDestroyAllObjectRecords": true, + "canBeAssignedToUsers": true, + "canBeAssignedToAgents": true, + "canBeAssignedToApiKeys": true, + "permissionFlags": [], + "objectPermissions": [ + { + "__typename": "ObjectPermission", + "objectMetadataId": "532838bd-be8c-40e7-8344-c1ae38c28361", + "canReadObjectRecords": false, + "canUpdateObjectRecords": false, + "canSoftDeleteObjectRecords": false, + "canDestroyObjectRecords": false, + "restrictedFields": null, + "rowLevelPermissionPredicates": null, + "rowLevelPermissionPredicateGroups": null + }, + { + "__typename": "ObjectPermission", + "objectMetadataId": "6b348756-2824-4eff-ade4-4129abe625f8", + "canReadObjectRecords": true, + "canUpdateObjectRecords": false, + "canSoftDeleteObjectRecords": false, + "canDestroyObjectRecords": false, + "restrictedFields": null, + "rowLevelPermissionPredicates": null, + "rowLevelPermissionPredicateGroups": null + } + ], + "fieldPermissions": [ + { + "__typename": "FieldPermission", + "objectMetadataId": "8847c51c-8289-4ad7-9e07-8d20f5126e16", + "fieldMetadataId": "c38ed21b-9e25-450e-a627-1085249ad83a", + "canReadFieldValue": null, + "canUpdateFieldValue": false, + "id": "48981fdf-7d25-4efa-9c44-a0f8fbcf9fcf", + "roleId": "157b0226-1283-47b1-8d76-b21a281408a7" + }, + { + "__typename": "FieldPermission", + "objectMetadataId": "f25b9e3e-610c-46a8-90da-0ccaa17dea89", + "fieldMetadataId": "0954834a-3adc-48d6-a07e-7b4645fb24f3", + "canReadFieldValue": false, + "canUpdateFieldValue": false, + "id": "b05b532c-2277-4129-8b3e-7be29a96d607", + "roleId": "157b0226-1283-47b1-8d76-b21a281408a7" + } + ], + "rowLevelPermissionPredicates": [], + "rowLevelPermissionPredicateGroups": [], + "workspaceMembers": [ + { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + }, + "avatarUrl": "", + "userEmail": "tim@apple.dev" + } + ], + "apiKeys": [], + "agents": [] + }, + { + "__typename": "Role", + "id": "5e996a3a-496a-4686-ac21-c8074cf47ef2", + "label": "Member", + "description": "Member role", + "icon": "IconUser", + "canUpdateAllSettings": false, + "canAccessAllTools": true, + "isEditable": true, + "canReadAllObjectRecords": true, + "canUpdateAllObjectRecords": true, + "canSoftDeleteAllObjectRecords": true, + "canDestroyAllObjectRecords": true, + "canBeAssignedToUsers": true, + "canBeAssignedToAgents": false, + "canBeAssignedToApiKeys": false, + "permissionFlags": [], + "objectPermissions": [], + "fieldPermissions": [], + "rowLevelPermissionPredicates": [], + "rowLevelPermissionPredicateGroups": [], + "workspaceMembers": [ + { + "__typename": "WorkspaceMember", + "id": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "name": { + "__typename": "FullName", + "firstName": "Jony", + "lastName": "Ive" + }, + "avatarUrl": "", + "userEmail": "jony.ive@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0001-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sara", + "lastName": "Richardson" + }, + "avatarUrl": "", + "userEmail": "sara.richardson1@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0002-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Deborah", + "lastName": "Ryan" + }, + "avatarUrl": "", + "userEmail": "deborah.ryan2@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0003-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Gordon" + }, + "avatarUrl": "", + "userEmail": "victoria.gordon3@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0004-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Roman", + "lastName": "Gray" + }, + "avatarUrl": "", + "userEmail": "roman.gray4@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0005-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Palmer" + }, + "avatarUrl": "", + "userEmail": "ruth.palmer5@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0006-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dylan", + "lastName": "Alexander" + }, + "avatarUrl": "", + "userEmail": "dylan.alexander6@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0007-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jaxon", + "lastName": "Hunt" + }, + "avatarUrl": "", + "userEmail": "jaxon.hunt7@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0008-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alexander", + "lastName": "Anderson" + }, + "avatarUrl": "", + "userEmail": "alexander.anderson8@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0009-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Olivia", + "lastName": "Reed" + }, + "avatarUrl": "", + "userEmail": "olivia.reed9@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0010-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Hicks" + }, + "avatarUrl": "", + "userEmail": "ruth.hicks10@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0011-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Daniel", + "lastName": "Russell" + }, + "avatarUrl": "", + "userEmail": "daniel.russell11@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0012-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Virginia", + "lastName": "Simmons" + }, + "avatarUrl": "", + "userEmail": "virginia.simmons12@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0013-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sara", + "lastName": "Chavez" + }, + "avatarUrl": "", + "userEmail": "sara.chavez13@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0014-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christopher", + "lastName": "Powell" + }, + "avatarUrl": "", + "userEmail": "christopher.powell14@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0015-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Betty", + "lastName": "Cooper" + }, + "avatarUrl": "", + "userEmail": "betty.cooper15@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0016-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joseph", + "lastName": "Ruiz" + }, + "avatarUrl": "", + "userEmail": "joseph.ruiz16@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0017-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kimberly", + "lastName": "Ellis" + }, + "avatarUrl": "", + "userEmail": "kimberly.ellis17@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0018-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Larry", + "lastName": "Medina" + }, + "avatarUrl": "", + "userEmail": "larry.medina18@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0019-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gloria", + "lastName": "Tran" + }, + "avatarUrl": "", + "userEmail": "gloria.tran19@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0020-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Diane", + "lastName": "Richardson" + }, + "avatarUrl": "", + "userEmail": "diane.richardson20@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0021-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mark", + "lastName": "Rodriguez" + }, + "avatarUrl": "", + "userEmail": "mark.rodriguez21@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0022-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frances", + "lastName": "Wagner" + }, + "avatarUrl": "", + "userEmail": "frances.wagner22@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0023-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Anthony", + "lastName": "Thompson" + }, + "avatarUrl": "", + "userEmail": "anthony.thompson23@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0024-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carolyn", + "lastName": "Diaz" + }, + "avatarUrl": "", + "userEmail": "carolyn.diaz24@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0025-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mary", + "lastName": "Graham" + }, + "avatarUrl": "", + "userEmail": "mary.graham25@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0026-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samuel", + "lastName": "Henry" + }, + "avatarUrl": "", + "userEmail": "samuel.henry26@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0027-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gloria", + "lastName": "Foster" + }, + "avatarUrl": "", + "userEmail": "gloria.foster27@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0028-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Tyler", + "lastName": "Porter" + }, + "avatarUrl": "", + "userEmail": "tyler.porter28@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0029-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Luke", + "lastName": "Turner" + }, + "avatarUrl": "", + "userEmail": "luke.turner29@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0030-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sharon", + "lastName": "Aguilar" + }, + "avatarUrl": "", + "userEmail": "sharon.aguilar30@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0031-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Brian", + "lastName": "Sanchez" + }, + "avatarUrl": "", + "userEmail": "brian.sanchez31@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0032-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Patrick", + "lastName": "Adams" + }, + "avatarUrl": "", + "userEmail": "patrick.adams32@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0033-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donald", + "lastName": "Mendez" + }, + "avatarUrl": "", + "userEmail": "donald.mendez33@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0034-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mason", + "lastName": "Murphy" + }, + "avatarUrl": "", + "userEmail": "mason.murphy34@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0035-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "David", + "lastName": "Phillips" + }, + "avatarUrl": "", + "userEmail": "david.phillips35@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0036-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lucas", + "lastName": "Gonzales" + }, + "avatarUrl": "", + "userEmail": "lucas.gonzales36@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0037-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Owen", + "lastName": "Davis" + }, + "avatarUrl": "", + "userEmail": "owen.davis37@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0038-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kelly", + "lastName": "Munoz" + }, + "avatarUrl": "", + "userEmail": "kelly.munoz38@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0039-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Luke", + "lastName": "Wells" + }, + "avatarUrl": "", + "userEmail": "luke.wells39@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0040-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Deborah", + "lastName": "Munoz" + }, + "avatarUrl": "", + "userEmail": "deborah.munoz40@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0041-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Douglas", + "lastName": "Mitchell" + }, + "avatarUrl": "", + "userEmail": "douglas.mitchell41@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0042-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "William", + "lastName": "Mason" + }, + "avatarUrl": "", + "userEmail": "william.mason42@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0043-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Maverick", + "lastName": "Rodriguez" + }, + "avatarUrl": "", + "userEmail": "maverick.rodriguez43@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0044-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Maverick", + "lastName": "Baker" + }, + "avatarUrl": "", + "userEmail": "maverick.baker44@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0045-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kai", + "lastName": "Bennett" + }, + "avatarUrl": "", + "userEmail": "kai.bennett45@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0046-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Daniel", + "lastName": "Russell" + }, + "avatarUrl": "", + "userEmail": "daniel.russell46@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0047-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Brenda", + "lastName": "Murray" + }, + "avatarUrl": "", + "userEmail": "brenda.murray47@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0048-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Kim" + }, + "avatarUrl": "", + "userEmail": "jason.kim48@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0049-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Moore" + }, + "avatarUrl": "", + "userEmail": "robert.moore49@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0050-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Maria", + "lastName": "Ross" + }, + "avatarUrl": "", + "userEmail": "maria.ross50@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0051-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jeffrey", + "lastName": "Nguyen" + }, + "avatarUrl": "", + "userEmail": "jeffrey.nguyen51@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0052-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jayden", + "lastName": "Washington" + }, + "avatarUrl": "", + "userEmail": "jayden.washington52@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0053-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jessica", + "lastName": "Graham" + }, + "avatarUrl": "", + "userEmail": "jessica.graham53@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0054-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jerry", + "lastName": "Wood" + }, + "avatarUrl": "", + "userEmail": "jerry.wood54@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0055-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrew", + "lastName": "Mendez" + }, + "avatarUrl": "", + "userEmail": "andrew.mendez55@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0056-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hudson", + "lastName": "Young" + }, + "avatarUrl": "", + "userEmail": "hudson.young56@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0057-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julie", + "lastName": "Coleman" + }, + "avatarUrl": "", + "userEmail": "julie.coleman57@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0058-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nancy", + "lastName": "Bailey" + }, + "avatarUrl": "", + "userEmail": "nancy.bailey58@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0059-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Tyler", + "lastName": "Perez" + }, + "avatarUrl": "", + "userEmail": "tyler.perez59@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0060-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christina", + "lastName": "Patterson" + }, + "avatarUrl": "", + "userEmail": "christina.patterson60@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0061-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Oliver", + "lastName": "Cole" + }, + "avatarUrl": "", + "userEmail": "oliver.cole61@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0062-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Betty", + "lastName": "King" + }, + "avatarUrl": "", + "userEmail": "betty.king62@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0063-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Ross" + }, + "avatarUrl": "", + "userEmail": "judith.ross63@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0064-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Laura", + "lastName": "Brooks" + }, + "avatarUrl": "", + "userEmail": "laura.brooks64@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0065-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alan", + "lastName": "Morris" + }, + "avatarUrl": "", + "userEmail": "alan.morris65@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0066-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janice", + "lastName": "White" + }, + "avatarUrl": "", + "userEmail": "janice.white66@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0067-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kelly", + "lastName": "Nelson" + }, + "avatarUrl": "", + "userEmail": "kelly.nelson67@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0068-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donna", + "lastName": "Robertson" + }, + "avatarUrl": "", + "userEmail": "donna.robertson68@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0069-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ethan", + "lastName": "Bell" + }, + "avatarUrl": "", + "userEmail": "ethan.bell69@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0070-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lisa", + "lastName": "Payne" + }, + "avatarUrl": "", + "userEmail": "lisa.payne70@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0071-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Betty", + "lastName": "Romero" + }, + "avatarUrl": "", + "userEmail": "betty.romero71@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0072-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Douglas", + "lastName": "Chavez" + }, + "avatarUrl": "", + "userEmail": "douglas.chavez72@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0073-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joseph", + "lastName": "Hughes" + }, + "avatarUrl": "", + "userEmail": "joseph.hughes73@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0074-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Linda", + "lastName": "Lee" + }, + "avatarUrl": "", + "userEmail": "linda.lee74@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0075-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jessica", + "lastName": "West" + }, + "avatarUrl": "", + "userEmail": "jessica.west75@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0076-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Diaz" + }, + "avatarUrl": "", + "userEmail": "heather.diaz76@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0077-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Griffin" + }, + "avatarUrl": "", + "userEmail": "sarah.griffin77@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0078-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Luke", + "lastName": "Snyder" + }, + "avatarUrl": "", + "userEmail": "luke.snyder78@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0079-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Laura", + "lastName": "Ruiz" + }, + "avatarUrl": "", + "userEmail": "laura.ruiz79@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0080-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Stewart" + }, + "avatarUrl": "", + "userEmail": "heather.stewart80@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0081-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Catherine", + "lastName": "Myers" + }, + "avatarUrl": "", + "userEmail": "catherine.myers81@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0082-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Deborah", + "lastName": "Dixon" + }, + "avatarUrl": "", + "userEmail": "deborah.dixon82@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0083-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Stevens" + }, + "avatarUrl": "", + "userEmail": "judith.stevens83@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0084-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julia", + "lastName": "Garza" + }, + "avatarUrl": "", + "userEmail": "julia.garza84@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0085-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Reyes" + }, + "avatarUrl": "", + "userEmail": "jason.reyes85@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0086-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "William", + "lastName": "Williams" + }, + "avatarUrl": "", + "userEmail": "william.williams86@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0087-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Karen", + "lastName": "Wilson" + }, + "avatarUrl": "", + "userEmail": "karen.wilson87@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0088-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Diaz" + }, + "avatarUrl": "", + "userEmail": "sarah.diaz88@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0089-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donna", + "lastName": "Reynolds" + }, + "avatarUrl": "", + "userEmail": "donna.reynolds89@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0090-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Angela", + "lastName": "Dunn" + }, + "avatarUrl": "", + "userEmail": "angela.dunn90@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0091-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Martha", + "lastName": "Reynolds" + }, + "avatarUrl": "", + "userEmail": "martha.reynolds91@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0092-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frances", + "lastName": "Bryant" + }, + "avatarUrl": "", + "userEmail": "frances.bryant92@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0093-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lincoln", + "lastName": "Lewis" + }, + "avatarUrl": "", + "userEmail": "lincoln.lewis93@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0094-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Vasquez" + }, + "avatarUrl": "", + "userEmail": "joan.vasquez94@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0095-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kai", + "lastName": "Aguilar" + }, + "avatarUrl": "", + "userEmail": "kai.aguilar95@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0096-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Scott", + "lastName": "King" + }, + "avatarUrl": "", + "userEmail": "scott.king96@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0097-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Owen", + "lastName": "Watson" + }, + "avatarUrl": "", + "userEmail": "owen.watson97@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0098-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Sanchez" + }, + "avatarUrl": "", + "userEmail": "sarah.sanchez98@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0099-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Douglas", + "lastName": "Daniels" + }, + "avatarUrl": "", + "userEmail": "douglas.daniels99@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0100-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Marie", + "lastName": "Long" + }, + "avatarUrl": "", + "userEmail": "marie.long100@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0101-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Henry", + "lastName": "Torres" + }, + "avatarUrl": "", + "userEmail": "henry.torres101@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0102-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sharon", + "lastName": "Spencer" + }, + "avatarUrl": "", + "userEmail": "sharon.spencer102@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0103-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Boyd" + }, + "avatarUrl": "", + "userEmail": "judith.boyd103@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0104-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Wyatt", + "lastName": "Jones" + }, + "avatarUrl": "", + "userEmail": "wyatt.jones104@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0105-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Liam", + "lastName": "Smith" + }, + "avatarUrl": "", + "userEmail": "liam.smith105@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0106-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Maria", + "lastName": "Turner" + }, + "avatarUrl": "", + "userEmail": "maria.turner106@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0107-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Debra", + "lastName": "Walker" + }, + "avatarUrl": "", + "userEmail": "debra.walker107@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0108-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Amy", + "lastName": "Taylor" + }, + "avatarUrl": "", + "userEmail": "amy.taylor108@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0109-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Owen", + "lastName": "Schmidt" + }, + "avatarUrl": "", + "userEmail": "owen.schmidt109@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0110-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janice", + "lastName": "Garza" + }, + "avatarUrl": "", + "userEmail": "janice.garza110@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0111-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Logan", + "lastName": "Meyer" + }, + "avatarUrl": "", + "userEmail": "logan.meyer111@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0112-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donna", + "lastName": "Butler" + }, + "avatarUrl": "", + "userEmail": "donna.butler112@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0113-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julia", + "lastName": "Olson" + }, + "avatarUrl": "", + "userEmail": "julia.olson113@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0114-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Henry", + "lastName": "Patterson" + }, + "avatarUrl": "", + "userEmail": "henry.patterson114@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0115-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Jones" + }, + "avatarUrl": "", + "userEmail": "heather.jones115@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0116-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Moore" + }, + "avatarUrl": "", + "userEmail": "michelle.moore116@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0117-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Megan", + "lastName": "Torres" + }, + "avatarUrl": "", + "userEmail": "megan.torres117@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0118-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nancy", + "lastName": "Green" + }, + "avatarUrl": "", + "userEmail": "nancy.green118@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0119-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samantha", + "lastName": "Mills" + }, + "avatarUrl": "", + "userEmail": "samantha.mills119@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0120-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Zachary", + "lastName": "Fernandez" + }, + "avatarUrl": "", + "userEmail": "zachary.fernandez120@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0121-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Owen", + "lastName": "Ryan" + }, + "avatarUrl": "", + "userEmail": "owen.ryan121@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0122-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julie", + "lastName": "Lewis" + }, + "avatarUrl": "", + "userEmail": "julie.lewis122@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0123-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Helen", + "lastName": "Robinson" + }, + "avatarUrl": "", + "userEmail": "helen.robinson123@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0124-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carol", + "lastName": "Nguyen" + }, + "avatarUrl": "", + "userEmail": "carol.nguyen124@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0125-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Garza" + }, + "avatarUrl": "", + "userEmail": "lauren.garza125@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0126-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Marie", + "lastName": "Tran" + }, + "avatarUrl": "", + "userEmail": "marie.tran126@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0127-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kenneth", + "lastName": "Powell" + }, + "avatarUrl": "", + "userEmail": "kenneth.powell127@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0128-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dorothy", + "lastName": "Mendez" + }, + "avatarUrl": "", + "userEmail": "dorothy.mendez128@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0129-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Howard" + }, + "avatarUrl": "", + "userEmail": "michelle.howard129@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0130-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sandra", + "lastName": "Reed" + }, + "avatarUrl": "", + "userEmail": "sandra.reed130@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0131-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Karen", + "lastName": "Ross" + }, + "avatarUrl": "", + "userEmail": "karen.ross131@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0132-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lisa", + "lastName": "Daniels" + }, + "avatarUrl": "", + "userEmail": "lisa.daniels132@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0133-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Parker" + }, + "avatarUrl": "", + "userEmail": "lauren.parker133@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0134-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kevin", + "lastName": "Phillips" + }, + "avatarUrl": "", + "userEmail": "kevin.phillips134@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0135-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frank", + "lastName": "Schmidt" + }, + "avatarUrl": "", + "userEmail": "frank.schmidt135@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0136-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Josiah", + "lastName": "Wilson" + }, + "avatarUrl": "", + "userEmail": "josiah.wilson136@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0137-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Maria", + "lastName": "Medina" + }, + "avatarUrl": "", + "userEmail": "maria.medina137@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0138-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christine", + "lastName": "Stewart" + }, + "avatarUrl": "", + "userEmail": "christine.stewart138@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0139-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Diane", + "lastName": "Meyer" + }, + "avatarUrl": "", + "userEmail": "diane.meyer139@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0140-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Aiden", + "lastName": "Davis" + }, + "avatarUrl": "", + "userEmail": "aiden.davis140@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0141-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alan", + "lastName": "Harrison" + }, + "avatarUrl": "", + "userEmail": "alan.harrison141@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0142-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Peter", + "lastName": "Clark" + }, + "avatarUrl": "", + "userEmail": "peter.clark142@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0143-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "James", + "lastName": "Taylor" + }, + "avatarUrl": "", + "userEmail": "james.taylor143@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0144-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samuel", + "lastName": "Ferguson" + }, + "avatarUrl": "", + "userEmail": "samuel.ferguson144@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0145-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Karen", + "lastName": "Williams" + }, + "avatarUrl": "", + "userEmail": "karen.williams145@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0146-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Brenda", + "lastName": "Bailey" + }, + "avatarUrl": "", + "userEmail": "brenda.bailey146@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0147-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Owen", + "lastName": "Walker" + }, + "avatarUrl": "", + "userEmail": "owen.walker147@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0148-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Charles", + "lastName": "Henry" + }, + "avatarUrl": "", + "userEmail": "charles.henry148@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0149-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gregory", + "lastName": "Sullivan" + }, + "avatarUrl": "", + "userEmail": "gregory.sullivan149@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0150-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ethan", + "lastName": "Bryant" + }, + "avatarUrl": "", + "userEmail": "ethan.bryant150@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0151-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Grayson", + "lastName": "Gibson" + }, + "avatarUrl": "", + "userEmail": "grayson.gibson151@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0152-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Carter" + }, + "avatarUrl": "", + "userEmail": "jason.carter152@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0153-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carter", + "lastName": "Howard" + }, + "avatarUrl": "", + "userEmail": "carter.howard153@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0154-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Adams" + }, + "avatarUrl": "", + "userEmail": "heather.adams154@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0155-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Thomas", + "lastName": "King" + }, + "avatarUrl": "", + "userEmail": "thomas.king155@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0156-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Thomas", + "lastName": "Robertson" + }, + "avatarUrl": "", + "userEmail": "thomas.robertson156@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0157-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jack", + "lastName": "Wagner" + }, + "avatarUrl": "", + "userEmail": "jack.wagner157@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0158-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Patrick", + "lastName": "Hernandez" + }, + "avatarUrl": "", + "userEmail": "patrick.hernandez158@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0159-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dennis", + "lastName": "Price" + }, + "avatarUrl": "", + "userEmail": "dennis.price159@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0160-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jacob", + "lastName": "Roberts" + }, + "avatarUrl": "", + "userEmail": "jacob.roberts160@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0161-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Campbell" + }, + "avatarUrl": "", + "userEmail": "michelle.campbell161@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0162-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cynthia", + "lastName": "Gray" + }, + "avatarUrl": "", + "userEmail": "cynthia.gray162@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0163-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Henry", + "lastName": "Cook" + }, + "avatarUrl": "", + "userEmail": "henry.cook163@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0164-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Charles", + "lastName": "Vargas" + }, + "avatarUrl": "", + "userEmail": "charles.vargas164@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0165-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Laura", + "lastName": "Weaver" + }, + "avatarUrl": "", + "userEmail": "laura.weaver165@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0166-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Logan", + "lastName": "Russell" + }, + "avatarUrl": "", + "userEmail": "logan.russell166@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0167-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Patricia", + "lastName": "Hill" + }, + "avatarUrl": "", + "userEmail": "patricia.hill167@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0168-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Coleman" + }, + "avatarUrl": "", + "userEmail": "joan.coleman168@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0169-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Susan", + "lastName": "Owens" + }, + "avatarUrl": "", + "userEmail": "susan.owens169@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0170-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Helen", + "lastName": "Kim" + }, + "avatarUrl": "", + "userEmail": "helen.kim170@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0171-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "George", + "lastName": "Hunter" + }, + "avatarUrl": "", + "userEmail": "george.hunter171@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0172-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "John", + "lastName": "Morris" + }, + "avatarUrl": "", + "userEmail": "john.morris172@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0173-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jerry", + "lastName": "Burns" + }, + "avatarUrl": "", + "userEmail": "jerry.burns173@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0174-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Susan", + "lastName": "Phillips" + }, + "avatarUrl": "", + "userEmail": "susan.phillips174@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0175-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "David", + "lastName": "Porter" + }, + "avatarUrl": "", + "userEmail": "david.porter175@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0176-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Garcia" + }, + "avatarUrl": "", + "userEmail": "jason.garcia176@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0177-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cheryl", + "lastName": "Castillo" + }, + "avatarUrl": "", + "userEmail": "cheryl.castillo177@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0178-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Noah", + "lastName": "Butler" + }, + "avatarUrl": "", + "userEmail": "noah.butler178@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0179-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jerry", + "lastName": "Munoz" + }, + "avatarUrl": "", + "userEmail": "jerry.munoz179@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0180-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Grayson", + "lastName": "Ruiz" + }, + "avatarUrl": "", + "userEmail": "grayson.ruiz180@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0181-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Anthony", + "lastName": "Reed" + }, + "avatarUrl": "", + "userEmail": "anthony.reed181@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0182-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Noah", + "lastName": "White" + }, + "avatarUrl": "", + "userEmail": "noah.white182@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0183-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jack", + "lastName": "Carter" + }, + "avatarUrl": "", + "userEmail": "jack.carter183@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0184-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joyce", + "lastName": "Jordan" + }, + "avatarUrl": "", + "userEmail": "joyce.jordan184@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0185-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Aaron", + "lastName": "Munoz" + }, + "avatarUrl": "", + "userEmail": "aaron.munoz185@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0186-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mark", + "lastName": "Garza" + }, + "avatarUrl": "", + "userEmail": "mark.garza186@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0187-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Rivera" + }, + "avatarUrl": "", + "userEmail": "heather.rivera187@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0188-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nathan", + "lastName": "Richardson" + }, + "avatarUrl": "", + "userEmail": "nathan.richardson188@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0189-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samuel", + "lastName": "Murphy" + }, + "avatarUrl": "", + "userEmail": "samuel.murphy189@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0190-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christina", + "lastName": "Price" + }, + "avatarUrl": "", + "userEmail": "christina.price190@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0191-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alexander", + "lastName": "Spencer" + }, + "avatarUrl": "", + "userEmail": "alexander.spencer191@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0192-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carol", + "lastName": "Brooks" + }, + "avatarUrl": "", + "userEmail": "carol.brooks192@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0193-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Castillo" + }, + "avatarUrl": "", + "userEmail": "ruth.castillo193@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0194-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Benjamin", + "lastName": "Reynolds" + }, + "avatarUrl": "", + "userEmail": "benjamin.reynolds194@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0195-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Sanchez" + }, + "avatarUrl": "", + "userEmail": "victoria.sanchez195@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0196-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Betty", + "lastName": "Stone" + }, + "avatarUrl": "", + "userEmail": "betty.stone196@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0197-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Diane", + "lastName": "Martin" + }, + "avatarUrl": "", + "userEmail": "diane.martin197@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0198-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Harrison" + }, + "avatarUrl": "", + "userEmail": "robert.harrison198@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0199-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Catherine", + "lastName": "Morgan" + }, + "avatarUrl": "", + "userEmail": "catherine.morgan199@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0200-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dennis", + "lastName": "Wallace" + }, + "avatarUrl": "", + "userEmail": "dennis.wallace200@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0201-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Charles", + "lastName": "Green" + }, + "avatarUrl": "", + "userEmail": "charles.green201@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0202-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrew", + "lastName": "Adams" + }, + "avatarUrl": "", + "userEmail": "andrew.adams202@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0203-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Patrick", + "lastName": "Lopez" + }, + "avatarUrl": "", + "userEmail": "patrick.lopez203@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0204-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Payne" + }, + "avatarUrl": "", + "userEmail": "jason.payne204@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0205-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joseph", + "lastName": "Roberts" + }, + "avatarUrl": "", + "userEmail": "joseph.roberts205@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0206-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joyce", + "lastName": "Castro" + }, + "avatarUrl": "", + "userEmail": "joyce.castro206@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0207-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Aiden", + "lastName": "Ford" + }, + "avatarUrl": "", + "userEmail": "aiden.ford207@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0208-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Porter" + }, + "avatarUrl": "", + "userEmail": "robert.porter208@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0209-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cayden", + "lastName": "Munoz" + }, + "avatarUrl": "", + "userEmail": "cayden.munoz209@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0210-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "James", + "lastName": "Reyes" + }, + "avatarUrl": "", + "userEmail": "james.reyes210@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0211-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christina", + "lastName": "Jordan" + }, + "avatarUrl": "", + "userEmail": "christina.jordan211@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0212-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nancy", + "lastName": "Hunter" + }, + "avatarUrl": "", + "userEmail": "nancy.hunter212@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0213-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Ellis" + }, + "avatarUrl": "", + "userEmail": "ruth.ellis213@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0214-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donald", + "lastName": "Wood" + }, + "avatarUrl": "", + "userEmail": "donald.wood214@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0215-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Amy", + "lastName": "Hughes" + }, + "avatarUrl": "", + "userEmail": "amy.hughes215@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0216-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Thomas", + "lastName": "Jenkins" + }, + "avatarUrl": "", + "userEmail": "thomas.jenkins216@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0217-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Richard", + "lastName": "Herrera" + }, + "avatarUrl": "", + "userEmail": "richard.herrera217@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0218-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Miles", + "lastName": "Jenkins" + }, + "avatarUrl": "", + "userEmail": "miles.jenkins218@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0219-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Grayson", + "lastName": "Grant" + }, + "avatarUrl": "", + "userEmail": "grayson.grant219@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0220-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Ferguson" + }, + "avatarUrl": "", + "userEmail": "joan.ferguson220@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0221-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Logan", + "lastName": "Murray" + }, + "avatarUrl": "", + "userEmail": "logan.murray221@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0222-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Adrian", + "lastName": "Ward" + }, + "avatarUrl": "", + "userEmail": "adrian.ward222@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0223-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donald", + "lastName": "Ramirez" + }, + "avatarUrl": "", + "userEmail": "donald.ramirez223@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0224-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samantha", + "lastName": "Walker" + }, + "avatarUrl": "", + "userEmail": "samantha.walker224@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0225-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samantha", + "lastName": "Wright" + }, + "avatarUrl": "", + "userEmail": "samantha.wright225@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0226-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Anthony", + "lastName": "Perez" + }, + "avatarUrl": "", + "userEmail": "anthony.perez226@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0227-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Eric", + "lastName": "Rivera" + }, + "avatarUrl": "", + "userEmail": "eric.rivera227@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0228-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Zachary", + "lastName": "Fox" + }, + "avatarUrl": "", + "userEmail": "zachary.fox228@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0229-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Rachel", + "lastName": "Ramos" + }, + "avatarUrl": "", + "userEmail": "rachel.ramos229@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0230-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Nguyen" + }, + "avatarUrl": "", + "userEmail": "robert.nguyen230@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0231-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sara", + "lastName": "Reynolds" + }, + "avatarUrl": "", + "userEmail": "sara.reynolds231@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0232-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Richardson" + }, + "avatarUrl": "", + "userEmail": "sarah.richardson232@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0233-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Megan", + "lastName": "Black" + }, + "avatarUrl": "", + "userEmail": "megan.black233@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0234-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrew", + "lastName": "Thompson" + }, + "avatarUrl": "", + "userEmail": "andrew.thompson234@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0235-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Herrera" + }, + "avatarUrl": "", + "userEmail": "lauren.herrera235@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0236-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kenneth", + "lastName": "Edwards" + }, + "avatarUrl": "", + "userEmail": "kenneth.edwards236@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0237-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Isaac", + "lastName": "Munoz" + }, + "avatarUrl": "", + "userEmail": "isaac.munoz237@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0238-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kelly", + "lastName": "Stevens" + }, + "avatarUrl": "", + "userEmail": "kelly.stevens238@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0239-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Thomas", + "lastName": "Harris" + }, + "avatarUrl": "", + "userEmail": "thomas.harris239@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0240-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Adams" + }, + "avatarUrl": "", + "userEmail": "judith.adams240@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0241-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrea", + "lastName": "Walker" + }, + "avatarUrl": "", + "userEmail": "andrea.walker241@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0242-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Roman", + "lastName": "Green" + }, + "avatarUrl": "", + "userEmail": "roman.green242@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0243-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hudson", + "lastName": "Hernandez" + }, + "avatarUrl": "", + "userEmail": "hudson.hernandez243@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0244-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mark", + "lastName": "Long" + }, + "avatarUrl": "", + "userEmail": "mark.long244@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0245-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Aaron", + "lastName": "Ortiz" + }, + "avatarUrl": "", + "userEmail": "aaron.ortiz245@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0246-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sandra", + "lastName": "Harris" + }, + "avatarUrl": "", + "userEmail": "sandra.harris246@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0247-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Adam", + "lastName": "Wood" + }, + "avatarUrl": "", + "userEmail": "adam.wood247@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0248-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sharon", + "lastName": "Dixon" + }, + "avatarUrl": "", + "userEmail": "sharon.dixon248@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0249-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Owens" + }, + "avatarUrl": "", + "userEmail": "heather.owens249@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0250-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Morales" + }, + "avatarUrl": "", + "userEmail": "joan.morales250@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0251-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jerry", + "lastName": "Cox" + }, + "avatarUrl": "", + "userEmail": "jerry.cox251@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0252-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kelly", + "lastName": "Jones" + }, + "avatarUrl": "", + "userEmail": "kelly.jones252@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0253-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joshua", + "lastName": "Alvarez" + }, + "avatarUrl": "", + "userEmail": "joshua.alvarez253@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0254-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Tyler", + "lastName": "Peterson" + }, + "avatarUrl": "", + "userEmail": "tyler.peterson254@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0255-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Olivia", + "lastName": "Green" + }, + "avatarUrl": "", + "userEmail": "olivia.green255@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0256-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janice", + "lastName": "Silva" + }, + "avatarUrl": "", + "userEmail": "janice.silva256@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0257-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gloria", + "lastName": "Stephens" + }, + "avatarUrl": "", + "userEmail": "gloria.stephens257@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0258-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Justin", + "lastName": "Mason" + }, + "avatarUrl": "", + "userEmail": "justin.mason258@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0259-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Leonardo", + "lastName": "Young" + }, + "avatarUrl": "", + "userEmail": "leonardo.young259@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0260-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Larry", + "lastName": "Davis" + }, + "avatarUrl": "", + "userEmail": "larry.davis260@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0261-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kelly", + "lastName": "Johnson" + }, + "avatarUrl": "", + "userEmail": "kelly.johnson261@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0262-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Marie", + "lastName": "Garza" + }, + "avatarUrl": "", + "userEmail": "marie.garza262@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0263-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "James", + "lastName": "Dixon" + }, + "avatarUrl": "", + "userEmail": "james.dixon263@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0264-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Ramirez" + }, + "avatarUrl": "", + "userEmail": "robert.ramirez264@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0265-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Henry", + "lastName": "Thomas" + }, + "avatarUrl": "", + "userEmail": "henry.thomas265@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0266-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Karen", + "lastName": "Bennett" + }, + "avatarUrl": "", + "userEmail": "karen.bennett266@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0267-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "William", + "lastName": "Reyes" + }, + "avatarUrl": "", + "userEmail": "william.reyes267@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0268-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lisa", + "lastName": "Thompson" + }, + "avatarUrl": "", + "userEmail": "lisa.thompson268@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0269-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Guzman" + }, + "avatarUrl": "", + "userEmail": "jason.guzman269@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0270-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Miles", + "lastName": "Clark" + }, + "avatarUrl": "", + "userEmail": "miles.clark270@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0271-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julie", + "lastName": "Gonzalez" + }, + "avatarUrl": "", + "userEmail": "julie.gonzalez271@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0272-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Susan", + "lastName": "Cole" + }, + "avatarUrl": "", + "userEmail": "susan.cole272@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0273-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christina", + "lastName": "Tucker" + }, + "avatarUrl": "", + "userEmail": "christina.tucker273@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0274-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lucas", + "lastName": "Dunn" + }, + "avatarUrl": "", + "userEmail": "lucas.dunn274@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0275-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nancy", + "lastName": "Roberts" + }, + "avatarUrl": "", + "userEmail": "nancy.roberts275@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0276-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jacob", + "lastName": "Ross" + }, + "avatarUrl": "", + "userEmail": "jacob.ross276@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0277-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cynthia", + "lastName": "Owens" + }, + "avatarUrl": "", + "userEmail": "cynthia.owens277@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0278-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Adrian", + "lastName": "Ramirez" + }, + "avatarUrl": "", + "userEmail": "adrian.ramirez278@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0279-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Coleman" + }, + "avatarUrl": "", + "userEmail": "sarah.coleman279@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0280-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Linda", + "lastName": "Snyder" + }, + "avatarUrl": "", + "userEmail": "linda.snyder280@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0281-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Olivia", + "lastName": "Brown" + }, + "avatarUrl": "", + "userEmail": "olivia.brown281@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0282-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Owen", + "lastName": "King" + }, + "avatarUrl": "", + "userEmail": "owen.king282@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0283-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Phillips" + }, + "avatarUrl": "", + "userEmail": "sarah.phillips283@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0284-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Anthony", + "lastName": "Harris" + }, + "avatarUrl": "", + "userEmail": "anthony.harris284@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0285-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hannah", + "lastName": "Wood" + }, + "avatarUrl": "", + "userEmail": "hannah.wood285@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0286-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Thomas", + "lastName": "Kelley" + }, + "avatarUrl": "", + "userEmail": "thomas.kelley286@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0287-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Jordan" + }, + "avatarUrl": "", + "userEmail": "jason.jordan287@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0288-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Evelyn", + "lastName": "Myers" + }, + "avatarUrl": "", + "userEmail": "evelyn.myers288@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0289-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Tyler", + "lastName": "Peterson" + }, + "avatarUrl": "", + "userEmail": "tyler.peterson289@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0290-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "John", + "lastName": "Reyes" + }, + "avatarUrl": "", + "userEmail": "john.reyes290@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0291-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Deborah", + "lastName": "Lopez" + }, + "avatarUrl": "", + "userEmail": "deborah.lopez291@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0292-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Jordan" + }, + "avatarUrl": "", + "userEmail": "michelle.jordan292@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0293-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ethan", + "lastName": "Butler" + }, + "avatarUrl": "", + "userEmail": "ethan.butler293@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0294-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donald", + "lastName": "Lewis" + }, + "avatarUrl": "", + "userEmail": "donald.lewis294@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0295-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Megan", + "lastName": "Nguyen" + }, + "avatarUrl": "", + "userEmail": "megan.nguyen295@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0296-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jayden", + "lastName": "Romero" + }, + "avatarUrl": "", + "userEmail": "jayden.romero296@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0297-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Owen", + "lastName": "Henry" + }, + "avatarUrl": "", + "userEmail": "owen.henry297@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0298-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jose", + "lastName": "Howard" + }, + "avatarUrl": "", + "userEmail": "jose.howard298@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0299-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Justin", + "lastName": "Sanchez" + }, + "avatarUrl": "", + "userEmail": "justin.sanchez299@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0300-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joyce", + "lastName": "Miller" + }, + "avatarUrl": "", + "userEmail": "joyce.miller300@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0301-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Ross" + }, + "avatarUrl": "", + "userEmail": "heather.ross301@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0302-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Castro" + }, + "avatarUrl": "", + "userEmail": "victoria.castro302@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0303-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Karen", + "lastName": "Castillo" + }, + "avatarUrl": "", + "userEmail": "karen.castillo303@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0304-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Edward", + "lastName": "Rice" + }, + "avatarUrl": "", + "userEmail": "edward.rice304@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0305-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jack", + "lastName": "Jones" + }, + "avatarUrl": "", + "userEmail": "jack.jones305@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0306-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Justin", + "lastName": "Holmes" + }, + "avatarUrl": "", + "userEmail": "justin.holmes306@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0307-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrew", + "lastName": "Butler" + }, + "avatarUrl": "", + "userEmail": "andrew.butler307@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0308-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Laura", + "lastName": "Ellis" + }, + "avatarUrl": "", + "userEmail": "laura.ellis308@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0309-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Barbara", + "lastName": "Griffin" + }, + "avatarUrl": "", + "userEmail": "barbara.griffin309@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0310-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carol", + "lastName": "Walker" + }, + "avatarUrl": "", + "userEmail": "carol.walker310@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0311-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Patricia", + "lastName": "Murray" + }, + "avatarUrl": "", + "userEmail": "patricia.murray311@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0312-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Josiah", + "lastName": "Carter" + }, + "avatarUrl": "", + "userEmail": "josiah.carter312@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0313-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Evelyn", + "lastName": "Murray" + }, + "avatarUrl": "", + "userEmail": "evelyn.murray313@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0314-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Maverick", + "lastName": "Wood" + }, + "avatarUrl": "", + "userEmail": "maverick.wood314@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0315-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Anthony", + "lastName": "Ramirez" + }, + "avatarUrl": "", + "userEmail": "anthony.ramirez315@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0316-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "David", + "lastName": "Lee" + }, + "avatarUrl": "", + "userEmail": "david.lee316@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0317-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hannah", + "lastName": "Johnson" + }, + "avatarUrl": "", + "userEmail": "hannah.johnson317@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0318-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frank", + "lastName": "Torres" + }, + "avatarUrl": "", + "userEmail": "frank.torres318@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0319-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Deborah", + "lastName": "Howard" + }, + "avatarUrl": "", + "userEmail": "deborah.howard319@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0320-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dorothy", + "lastName": "West" + }, + "avatarUrl": "", + "userEmail": "dorothy.west320@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0321-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cheryl", + "lastName": "Coleman" + }, + "avatarUrl": "", + "userEmail": "cheryl.coleman321@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0322-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "George", + "lastName": "Webb" + }, + "avatarUrl": "", + "userEmail": "george.webb322@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0323-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alexander", + "lastName": "Salazar" + }, + "avatarUrl": "", + "userEmail": "alexander.salazar323@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0324-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alexander", + "lastName": "Soto" + }, + "avatarUrl": "", + "userEmail": "alexander.soto324@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0325-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dorothy", + "lastName": "Robertson" + }, + "avatarUrl": "", + "userEmail": "dorothy.robertson325@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0326-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nicholas", + "lastName": "Bryant" + }, + "avatarUrl": "", + "userEmail": "nicholas.bryant326@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0327-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Amy", + "lastName": "Russell" + }, + "avatarUrl": "", + "userEmail": "amy.russell327@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0328-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrea", + "lastName": "Moore" + }, + "avatarUrl": "", + "userEmail": "andrea.moore328@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0329-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Megan", + "lastName": "Black" + }, + "avatarUrl": "", + "userEmail": "megan.black329@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0330-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Sanders" + }, + "avatarUrl": "", + "userEmail": "judith.sanders330@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0331-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Roman", + "lastName": "Kim" + }, + "avatarUrl": "", + "userEmail": "roman.kim331@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0332-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frances", + "lastName": "Barnes" + }, + "avatarUrl": "", + "userEmail": "frances.barnes332@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0333-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jayden", + "lastName": "Jenkins" + }, + "avatarUrl": "", + "userEmail": "jayden.jenkins333@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0334-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joshua", + "lastName": "Phillips" + }, + "avatarUrl": "", + "userEmail": "joshua.phillips334@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0335-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Leonardo", + "lastName": "King" + }, + "avatarUrl": "", + "userEmail": "leonardo.king335@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0336-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Henry", + "lastName": "Vasquez" + }, + "avatarUrl": "", + "userEmail": "henry.vasquez336@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0337-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jacob", + "lastName": "Perez" + }, + "avatarUrl": "", + "userEmail": "jacob.perez337@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0338-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Young" + }, + "avatarUrl": "", + "userEmail": "lauren.young338@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0339-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Wyatt", + "lastName": "Ford" + }, + "avatarUrl": "", + "userEmail": "wyatt.ford339@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0340-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Scott", + "lastName": "Fernandez" + }, + "avatarUrl": "", + "userEmail": "scott.fernandez340@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0341-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Flores" + }, + "avatarUrl": "", + "userEmail": "victoria.flores341@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0342-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sara", + "lastName": "Owens" + }, + "avatarUrl": "", + "userEmail": "sara.owens342@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0343-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Patricia", + "lastName": "Bryant" + }, + "avatarUrl": "", + "userEmail": "patricia.bryant343@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0344-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sandra", + "lastName": "Allen" + }, + "avatarUrl": "", + "userEmail": "sandra.allen344@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0345-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gloria", + "lastName": "Owens" + }, + "avatarUrl": "", + "userEmail": "gloria.owens345@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0346-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lincoln", + "lastName": "Jackson" + }, + "avatarUrl": "", + "userEmail": "lincoln.jackson346@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0347-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Virginia", + "lastName": "Dunn" + }, + "avatarUrl": "", + "userEmail": "virginia.dunn347@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0348-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lisa", + "lastName": "Nichols" + }, + "avatarUrl": "", + "userEmail": "lisa.nichols348@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0349-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Evelyn", + "lastName": "Bennett" + }, + "avatarUrl": "", + "userEmail": "evelyn.bennett349@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0350-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hudson", + "lastName": "Fox" + }, + "avatarUrl": "", + "userEmail": "hudson.fox350@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0351-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Gomez" + }, + "avatarUrl": "", + "userEmail": "joan.gomez351@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0352-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jennifer", + "lastName": "Hernandez" + }, + "avatarUrl": "", + "userEmail": "jennifer.hernandez352@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0353-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jessica", + "lastName": "Silva" + }, + "avatarUrl": "", + "userEmail": "jessica.silva353@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0354-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Raymond", + "lastName": "Martin" + }, + "avatarUrl": "", + "userEmail": "raymond.martin354@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0355-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Deborah", + "lastName": "Sullivan" + }, + "avatarUrl": "", + "userEmail": "deborah.sullivan355@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0356-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samantha", + "lastName": "Martin" + }, + "avatarUrl": "", + "userEmail": "samantha.martin356@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0357-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Amy", + "lastName": "Romero" + }, + "avatarUrl": "", + "userEmail": "amy.romero357@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0358-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Green" + }, + "avatarUrl": "", + "userEmail": "heather.green358@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0359-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Richard", + "lastName": "Holmes" + }, + "avatarUrl": "", + "userEmail": "richard.holmes359@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0360-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Patrick", + "lastName": "Mcdonald" + }, + "avatarUrl": "", + "userEmail": "patrick.mcdonald360@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0361-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sharon", + "lastName": "Harrison" + }, + "avatarUrl": "", + "userEmail": "sharon.harrison361@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0362-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Larry", + "lastName": "Robertson" + }, + "avatarUrl": "", + "userEmail": "larry.robertson362@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0363-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Oliver", + "lastName": "Reed" + }, + "avatarUrl": "", + "userEmail": "oliver.reed363@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0364-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lisa", + "lastName": "Anderson" + }, + "avatarUrl": "", + "userEmail": "lisa.anderson364@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0365-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nancy", + "lastName": "Carter" + }, + "avatarUrl": "", + "userEmail": "nancy.carter365@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0366-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Edward", + "lastName": "Foster" + }, + "avatarUrl": "", + "userEmail": "edward.foster366@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0367-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Brian", + "lastName": "Brooks" + }, + "avatarUrl": "", + "userEmail": "brian.brooks367@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0368-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janet", + "lastName": "Martinez" + }, + "avatarUrl": "", + "userEmail": "janet.martinez368@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0369-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Brandon", + "lastName": "Rogers" + }, + "avatarUrl": "", + "userEmail": "brandon.rogers369@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0370-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Simmons" + }, + "avatarUrl": "", + "userEmail": "heather.simmons370@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0371-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Hawkins" + }, + "avatarUrl": "", + "userEmail": "joan.hawkins371@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0372-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Bailey" + }, + "avatarUrl": "", + "userEmail": "joan.bailey372@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0373-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christopher", + "lastName": "Sullivan" + }, + "avatarUrl": "", + "userEmail": "christopher.sullivan373@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0374-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kimberly", + "lastName": "Wood" + }, + "avatarUrl": "", + "userEmail": "kimberly.wood374@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0375-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jacob", + "lastName": "Simmons" + }, + "avatarUrl": "", + "userEmail": "jacob.simmons375@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0376-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Deborah", + "lastName": "Thomas" + }, + "avatarUrl": "", + "userEmail": "deborah.thomas376@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0377-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Bailey" + }, + "avatarUrl": "", + "userEmail": "ruth.bailey377@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0378-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donna", + "lastName": "Owens" + }, + "avatarUrl": "", + "userEmail": "donna.owens378@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0379-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mary", + "lastName": "Grant" + }, + "avatarUrl": "", + "userEmail": "mary.grant379@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0380-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frank", + "lastName": "Spencer" + }, + "avatarUrl": "", + "userEmail": "frank.spencer380@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0381-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Griffin" + }, + "avatarUrl": "", + "userEmail": "ruth.griffin381@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0382-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "White" + }, + "avatarUrl": "", + "userEmail": "jason.white382@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0383-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Aguilar" + }, + "avatarUrl": "", + "userEmail": "lauren.aguilar383@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0384-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dorothy", + "lastName": "Green" + }, + "avatarUrl": "", + "userEmail": "dorothy.green384@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0385-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kimberly", + "lastName": "Wood" + }, + "avatarUrl": "", + "userEmail": "kimberly.wood385@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0386-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Raymond", + "lastName": "Henry" + }, + "avatarUrl": "", + "userEmail": "raymond.henry386@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0387-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Logan", + "lastName": "Butler" + }, + "avatarUrl": "", + "userEmail": "logan.butler387@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0388-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Noah", + "lastName": "Ruiz" + }, + "avatarUrl": "", + "userEmail": "noah.ruiz388@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0389-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hannah", + "lastName": "Morgan" + }, + "avatarUrl": "", + "userEmail": "hannah.morgan389@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0390-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Betty", + "lastName": "Gonzalez" + }, + "avatarUrl": "", + "userEmail": "betty.gonzalez390@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0391-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Charles", + "lastName": "Stewart" + }, + "avatarUrl": "", + "userEmail": "charles.stewart391@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0392-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Virginia", + "lastName": "Jenkins" + }, + "avatarUrl": "", + "userEmail": "virginia.jenkins392@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0393-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kenneth", + "lastName": "Gonzales" + }, + "avatarUrl": "", + "userEmail": "kenneth.gonzales393@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0394-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Karen", + "lastName": "Weaver" + }, + "avatarUrl": "", + "userEmail": "karen.weaver394@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0395-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nicholas", + "lastName": "Moreno" + }, + "avatarUrl": "", + "userEmail": "nicholas.moreno395@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0396-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Owen", + "lastName": "Mendez" + }, + "avatarUrl": "", + "userEmail": "owen.mendez396@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0397-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kenneth", + "lastName": "Wagner" + }, + "avatarUrl": "", + "userEmail": "kenneth.wagner397@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0398-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jonathan", + "lastName": "Ryan" + }, + "avatarUrl": "", + "userEmail": "jonathan.ryan398@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0399-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jennifer", + "lastName": "Kelly" + }, + "avatarUrl": "", + "userEmail": "jennifer.kelly399@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0400-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alan", + "lastName": "Ortiz" + }, + "avatarUrl": "", + "userEmail": "alan.ortiz400@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0401-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jacqueline", + "lastName": "Rogers" + }, + "avatarUrl": "", + "userEmail": "jacqueline.rogers401@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0402-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kenneth", + "lastName": "Reed" + }, + "avatarUrl": "", + "userEmail": "kenneth.reed402@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0403-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Edward", + "lastName": "Anderson" + }, + "avatarUrl": "", + "userEmail": "edward.anderson403@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0404-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Laura", + "lastName": "Wells" + }, + "avatarUrl": "", + "userEmail": "laura.wells404@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0405-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gabriel", + "lastName": "Harrison" + }, + "avatarUrl": "", + "userEmail": "gabriel.harrison405@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0406-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Barbara", + "lastName": "Henderson" + }, + "avatarUrl": "", + "userEmail": "barbara.henderson406@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0407-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Deborah", + "lastName": "Davis" + }, + "avatarUrl": "", + "userEmail": "deborah.davis407@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0408-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Aiden", + "lastName": "Torres" + }, + "avatarUrl": "", + "userEmail": "aiden.torres408@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0409-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Thomas", + "lastName": "Sanders" + }, + "avatarUrl": "", + "userEmail": "thomas.sanders409@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0410-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dorothy", + "lastName": "Simpson" + }, + "avatarUrl": "", + "userEmail": "dorothy.simpson410@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0411-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Charles", + "lastName": "Butler" + }, + "avatarUrl": "", + "userEmail": "charles.butler411@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0412-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Evelyn", + "lastName": "Henderson" + }, + "avatarUrl": "", + "userEmail": "evelyn.henderson412@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0413-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Jenkins" + }, + "avatarUrl": "", + "userEmail": "jason.jenkins413@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0414-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Oliver", + "lastName": "Carter" + }, + "avatarUrl": "", + "userEmail": "oliver.carter414@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0415-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Stephen", + "lastName": "Bennett" + }, + "avatarUrl": "", + "userEmail": "stephen.bennett415@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0416-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hudson", + "lastName": "Torres" + }, + "avatarUrl": "", + "userEmail": "hudson.torres416@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0417-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Aaron", + "lastName": "Perry" + }, + "avatarUrl": "", + "userEmail": "aaron.perry417@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0418-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Freeman" + }, + "avatarUrl": "", + "userEmail": "heather.freeman418@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0419-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kevin", + "lastName": "Chavez" + }, + "avatarUrl": "", + "userEmail": "kevin.chavez419@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0420-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Helen", + "lastName": "Henderson" + }, + "avatarUrl": "", + "userEmail": "helen.henderson420@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0421-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Helen", + "lastName": "Fox" + }, + "avatarUrl": "", + "userEmail": "helen.fox421@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0422-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janet", + "lastName": "Harris" + }, + "avatarUrl": "", + "userEmail": "janet.harris422@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0423-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Kim" + }, + "avatarUrl": "", + "userEmail": "joan.kim423@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0424-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sara", + "lastName": "Bell" + }, + "avatarUrl": "", + "userEmail": "sara.bell424@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0425-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "James", + "lastName": "Cook" + }, + "avatarUrl": "", + "userEmail": "james.cook425@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0426-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mason", + "lastName": "Dixon" + }, + "avatarUrl": "", + "userEmail": "mason.dixon426@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0427-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lincoln", + "lastName": "Price" + }, + "avatarUrl": "", + "userEmail": "lincoln.price427@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0428-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Amy", + "lastName": "Nelson" + }, + "avatarUrl": "", + "userEmail": "amy.nelson428@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0429-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Howard" + }, + "avatarUrl": "", + "userEmail": "heather.howard429@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0430-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Brenda", + "lastName": "Crawford" + }, + "avatarUrl": "", + "userEmail": "brenda.crawford430@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0431-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrea", + "lastName": "Reynolds" + }, + "avatarUrl": "", + "userEmail": "andrea.reynolds431@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0432-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Catherine", + "lastName": "Wright" + }, + "avatarUrl": "", + "userEmail": "catherine.wright432@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0433-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Betty", + "lastName": "Ramos" + }, + "avatarUrl": "", + "userEmail": "betty.ramos433@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0434-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Liam", + "lastName": "Davis" + }, + "avatarUrl": "", + "userEmail": "liam.davis434@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0435-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Brandon", + "lastName": "Spencer" + }, + "avatarUrl": "", + "userEmail": "brandon.spencer435@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0436-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Catherine", + "lastName": "Gray" + }, + "avatarUrl": "", + "userEmail": "catherine.gray436@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0437-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Matthew", + "lastName": "Moore" + }, + "avatarUrl": "", + "userEmail": "matthew.moore437@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0438-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cheryl", + "lastName": "Castro" + }, + "avatarUrl": "", + "userEmail": "cheryl.castro438@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0439-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samuel", + "lastName": "Johnson" + }, + "avatarUrl": "", + "userEmail": "samuel.johnson439@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0440-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Evelyn", + "lastName": "Jackson" + }, + "avatarUrl": "", + "userEmail": "evelyn.jackson440@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0441-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrea", + "lastName": "Hall" + }, + "avatarUrl": "", + "userEmail": "andrea.hall441@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0442-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Phillips" + }, + "avatarUrl": "", + "userEmail": "joan.phillips442@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0443-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Helen", + "lastName": "Simpson" + }, + "avatarUrl": "", + "userEmail": "helen.simpson443@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0444-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Brandon", + "lastName": "Thompson" + }, + "avatarUrl": "", + "userEmail": "brandon.thompson444@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0445-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Olivia", + "lastName": "Roberts" + }, + "avatarUrl": "", + "userEmail": "olivia.roberts445@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0446-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Helen", + "lastName": "Silva" + }, + "avatarUrl": "", + "userEmail": "helen.silva446@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0447-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Cruz" + }, + "avatarUrl": "", + "userEmail": "judith.cruz447@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0448-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donald", + "lastName": "Robinson" + }, + "avatarUrl": "", + "userEmail": "donald.robinson448@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0449-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Noah", + "lastName": "Freeman" + }, + "avatarUrl": "", + "userEmail": "noah.freeman449@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0450-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Paul", + "lastName": "Snyder" + }, + "avatarUrl": "", + "userEmail": "paul.snyder450@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0451-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Charles", + "lastName": "Dixon" + }, + "avatarUrl": "", + "userEmail": "charles.dixon451@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0452-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nancy", + "lastName": "Patel" + }, + "avatarUrl": "", + "userEmail": "nancy.patel452@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0453-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julie", + "lastName": "Butler" + }, + "avatarUrl": "", + "userEmail": "julie.butler453@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0454-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kimberly", + "lastName": "Gray" + }, + "avatarUrl": "", + "userEmail": "kimberly.gray454@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0455-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Matthew", + "lastName": "Tucker" + }, + "avatarUrl": "", + "userEmail": "matthew.tucker455@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0456-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Hernandez" + }, + "avatarUrl": "", + "userEmail": "victoria.hernandez456@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0457-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Betty", + "lastName": "Cook" + }, + "avatarUrl": "", + "userEmail": "betty.cook457@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0458-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "West" + }, + "avatarUrl": "", + "userEmail": "sarah.west458@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0459-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Megan", + "lastName": "Gray" + }, + "avatarUrl": "", + "userEmail": "megan.gray459@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0460-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sharon", + "lastName": "Rice" + }, + "avatarUrl": "", + "userEmail": "sharon.rice460@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0461-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Warren" + }, + "avatarUrl": "", + "userEmail": "ruth.warren461@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0462-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Noah", + "lastName": "Kennedy" + }, + "avatarUrl": "", + "userEmail": "noah.kennedy462@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0463-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samuel", + "lastName": "Phillips" + }, + "avatarUrl": "", + "userEmail": "samuel.phillips463@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0464-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Deborah", + "lastName": "Tucker" + }, + "avatarUrl": "", + "userEmail": "deborah.tucker464@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0465-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lucas", + "lastName": "Adams" + }, + "avatarUrl": "", + "userEmail": "lucas.adams465@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0466-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julie", + "lastName": "Sanders" + }, + "avatarUrl": "", + "userEmail": "julie.sanders466@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0467-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joyce", + "lastName": "Allen" + }, + "avatarUrl": "", + "userEmail": "joyce.allen467@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0468-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Daniel", + "lastName": "Palmer" + }, + "avatarUrl": "", + "userEmail": "daniel.palmer468@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0469-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janet", + "lastName": "Walker" + }, + "avatarUrl": "", + "userEmail": "janet.walker469@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0470-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Liam", + "lastName": "Porter" + }, + "avatarUrl": "", + "userEmail": "liam.porter470@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0471-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gary", + "lastName": "Baker" + }, + "avatarUrl": "", + "userEmail": "gary.baker471@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0472-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Betty", + "lastName": "Vargas" + }, + "avatarUrl": "", + "userEmail": "betty.vargas472@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0473-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christopher", + "lastName": "Smith" + }, + "avatarUrl": "", + "userEmail": "christopher.smith473@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0474-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Simmons" + }, + "avatarUrl": "", + "userEmail": "heather.simmons474@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0475-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cooper", + "lastName": "Hamilton" + }, + "avatarUrl": "", + "userEmail": "cooper.hamilton475@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0476-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Logan", + "lastName": "Torres" + }, + "avatarUrl": "", + "userEmail": "logan.torres476@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0477-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Amy", + "lastName": "Gomez" + }, + "avatarUrl": "", + "userEmail": "amy.gomez477@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0478-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Matthew", + "lastName": "Foster" + }, + "avatarUrl": "", + "userEmail": "matthew.foster478@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0479-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Betty", + "lastName": "Medina" + }, + "avatarUrl": "", + "userEmail": "betty.medina479@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0480-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Laura", + "lastName": "Campbell" + }, + "avatarUrl": "", + "userEmail": "laura.campbell480@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0481-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Chavez" + }, + "avatarUrl": "", + "userEmail": "heather.chavez481@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0482-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donald", + "lastName": "Turner" + }, + "avatarUrl": "", + "userEmail": "donald.turner482@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0483-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Linda", + "lastName": "Wright" + }, + "avatarUrl": "", + "userEmail": "linda.wright483@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0484-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kenneth", + "lastName": "Patel" + }, + "avatarUrl": "", + "userEmail": "kenneth.patel484@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0485-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Barbara", + "lastName": "Price" + }, + "avatarUrl": "", + "userEmail": "barbara.price485@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0486-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "David", + "lastName": "Vasquez" + }, + "avatarUrl": "", + "userEmail": "david.vasquez486@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0487-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carter", + "lastName": "Gray" + }, + "avatarUrl": "", + "userEmail": "carter.gray487@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0488-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dennis", + "lastName": "Jimenez" + }, + "avatarUrl": "", + "userEmail": "dennis.jimenez488@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0489-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sandra", + "lastName": "Shaw" + }, + "avatarUrl": "", + "userEmail": "sandra.shaw489@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0490-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Martin" + }, + "avatarUrl": "", + "userEmail": "ruth.martin490@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0491-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jayden", + "lastName": "Sanders" + }, + "avatarUrl": "", + "userEmail": "jayden.sanders491@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0492-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Matthew", + "lastName": "Fisher" + }, + "avatarUrl": "", + "userEmail": "matthew.fisher492@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0493-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Gray" + }, + "avatarUrl": "", + "userEmail": "jason.gray493@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0494-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Amy", + "lastName": "Smith" + }, + "avatarUrl": "", + "userEmail": "amy.smith494@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0495-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Gutierrez" + }, + "avatarUrl": "", + "userEmail": "ruth.gutierrez495@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0496-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Charles", + "lastName": "Daniels" + }, + "avatarUrl": "", + "userEmail": "charles.daniels496@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0497-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Rodriguez" + }, + "avatarUrl": "", + "userEmail": "victoria.rodriguez497@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0498-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Powell" + }, + "avatarUrl": "", + "userEmail": "lauren.powell498@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0499-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Thomas", + "lastName": "Rice" + }, + "avatarUrl": "", + "userEmail": "thomas.rice499@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0500-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gary", + "lastName": "Gonzalez" + }, + "avatarUrl": "", + "userEmail": "gary.gonzalez500@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0501-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Roberts" + }, + "avatarUrl": "", + "userEmail": "sarah.roberts501@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0502-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kimberly", + "lastName": "Miller" + }, + "avatarUrl": "", + "userEmail": "kimberly.miller502@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0503-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Megan", + "lastName": "Owens" + }, + "avatarUrl": "", + "userEmail": "megan.owens503@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0504-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Vasquez" + }, + "avatarUrl": "", + "userEmail": "robert.vasquez504@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0505-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Edward", + "lastName": "Hayes" + }, + "avatarUrl": "", + "userEmail": "edward.hayes505@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0506-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Emma", + "lastName": "Reyes" + }, + "avatarUrl": "", + "userEmail": "emma.reyes506@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0507-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julie", + "lastName": "Castro" + }, + "avatarUrl": "", + "userEmail": "julie.castro507@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0508-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Stephen", + "lastName": "Dunn" + }, + "avatarUrl": "", + "userEmail": "stephen.dunn508@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0509-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "James", + "lastName": "Brooks" + }, + "avatarUrl": "", + "userEmail": "james.brooks509@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0510-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kenneth", + "lastName": "Griffin" + }, + "avatarUrl": "", + "userEmail": "kenneth.griffin510@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0511-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donna", + "lastName": "Murray" + }, + "avatarUrl": "", + "userEmail": "donna.murray511@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0512-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ezra", + "lastName": "Perez" + }, + "avatarUrl": "", + "userEmail": "ezra.perez512@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0513-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Liam", + "lastName": "Simpson" + }, + "avatarUrl": "", + "userEmail": "liam.simpson513@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0514-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Hunter" + }, + "avatarUrl": "", + "userEmail": "lauren.hunter514@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0515-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ryan", + "lastName": "Myers" + }, + "avatarUrl": "", + "userEmail": "ryan.myers515@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0516-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julia", + "lastName": "Daniels" + }, + "avatarUrl": "", + "userEmail": "julia.daniels516@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0517-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gabriel", + "lastName": "Ellis" + }, + "avatarUrl": "", + "userEmail": "gabriel.ellis517@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0518-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donna", + "lastName": "Aguilar" + }, + "avatarUrl": "", + "userEmail": "donna.aguilar518@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0519-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Timothy", + "lastName": "Nelson" + }, + "avatarUrl": "", + "userEmail": "timothy.nelson519@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0520-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Linda", + "lastName": "Owens" + }, + "avatarUrl": "", + "userEmail": "linda.owens520@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0521-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Elijah", + "lastName": "Adams" + }, + "avatarUrl": "", + "userEmail": "elijah.adams521@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0522-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mary", + "lastName": "Harris" + }, + "avatarUrl": "", + "userEmail": "mary.harris522@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0523-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Megan", + "lastName": "Kennedy" + }, + "avatarUrl": "", + "userEmail": "megan.kennedy523@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0524-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Soto" + }, + "avatarUrl": "", + "userEmail": "joan.soto524@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0525-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frank", + "lastName": "Henderson" + }, + "avatarUrl": "", + "userEmail": "frank.henderson525@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0526-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Charles", + "lastName": "Ortiz" + }, + "avatarUrl": "", + "userEmail": "charles.ortiz526@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0527-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Maverick", + "lastName": "Rogers" + }, + "avatarUrl": "", + "userEmail": "maverick.rogers527@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0528-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Helen", + "lastName": "Boyd" + }, + "avatarUrl": "", + "userEmail": "helen.boyd528@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0529-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carol", + "lastName": "Morgan" + }, + "avatarUrl": "", + "userEmail": "carol.morgan529@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0530-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jessica", + "lastName": "Payne" + }, + "avatarUrl": "", + "userEmail": "jessica.payne530@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0531-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Patricia", + "lastName": "Rice" + }, + "avatarUrl": "", + "userEmail": "patricia.rice531@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0532-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Angela", + "lastName": "Boyd" + }, + "avatarUrl": "", + "userEmail": "angela.boyd532@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0533-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Douglas", + "lastName": "Salazar" + }, + "avatarUrl": "", + "userEmail": "douglas.salazar533@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0534-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Helen", + "lastName": "Mendez" + }, + "avatarUrl": "", + "userEmail": "helen.mendez534@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0535-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Marie", + "lastName": "Cox" + }, + "avatarUrl": "", + "userEmail": "marie.cox535@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0536-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Daniel", + "lastName": "West" + }, + "avatarUrl": "", + "userEmail": "daniel.west536@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0537-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Susan", + "lastName": "Perry" + }, + "avatarUrl": "", + "userEmail": "susan.perry537@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0538-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Martha", + "lastName": "Nichols" + }, + "avatarUrl": "", + "userEmail": "martha.nichols538@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0539-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "David", + "lastName": "Moreno" + }, + "avatarUrl": "", + "userEmail": "david.moreno539@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0540-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Anthony", + "lastName": "Lee" + }, + "avatarUrl": "", + "userEmail": "anthony.lee540@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0541-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Virginia", + "lastName": "Ramos" + }, + "avatarUrl": "", + "userEmail": "virginia.ramos541@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0542-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Richard", + "lastName": "Foster" + }, + "avatarUrl": "", + "userEmail": "richard.foster542@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0543-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Debra", + "lastName": "Harrison" + }, + "avatarUrl": "", + "userEmail": "debra.harrison543@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0544-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julie", + "lastName": "Morris" + }, + "avatarUrl": "", + "userEmail": "julie.morris544@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0545-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sandra", + "lastName": "Williams" + }, + "avatarUrl": "", + "userEmail": "sandra.williams545@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0546-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Isaac", + "lastName": "Taylor" + }, + "avatarUrl": "", + "userEmail": "isaac.taylor546@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0547-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Mcdonald" + }, + "avatarUrl": "", + "userEmail": "judith.mcdonald547@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0548-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Grayson", + "lastName": "Reyes" + }, + "avatarUrl": "", + "userEmail": "grayson.reyes548@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0549-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Meyer" + }, + "avatarUrl": "", + "userEmail": "judith.meyer549@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0550-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dorothy", + "lastName": "Jordan" + }, + "avatarUrl": "", + "userEmail": "dorothy.jordan550@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0551-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joseph", + "lastName": "Price" + }, + "avatarUrl": "", + "userEmail": "joseph.price551@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0552-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Marie", + "lastName": "Barnes" + }, + "avatarUrl": "", + "userEmail": "marie.barnes552@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0553-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Henry", + "lastName": "Warren" + }, + "avatarUrl": "", + "userEmail": "henry.warren553@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0554-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Martin" + }, + "avatarUrl": "", + "userEmail": "lauren.martin554@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0555-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alexander", + "lastName": "Romero" + }, + "avatarUrl": "", + "userEmail": "alexander.romero555@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0556-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Helen", + "lastName": "Phillips" + }, + "avatarUrl": "", + "userEmail": "helen.phillips556@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0557-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dorothy", + "lastName": "Hamilton" + }, + "avatarUrl": "", + "userEmail": "dorothy.hamilton557@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0558-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Henry", + "lastName": "James" + }, + "avatarUrl": "", + "userEmail": "henry.james558@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0559-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Elijah", + "lastName": "Martinez" + }, + "avatarUrl": "", + "userEmail": "elijah.martinez559@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0560-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Thomas", + "lastName": "Flores" + }, + "avatarUrl": "", + "userEmail": "thomas.flores560@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0561-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joyce", + "lastName": "Spencer" + }, + "avatarUrl": "", + "userEmail": "joyce.spencer561@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0562-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Patricia", + "lastName": "Hill" + }, + "avatarUrl": "", + "userEmail": "patricia.hill562@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0563-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jayden", + "lastName": "Salazar" + }, + "avatarUrl": "", + "userEmail": "jayden.salazar563@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0564-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carol", + "lastName": "Torres" + }, + "avatarUrl": "", + "userEmail": "carol.torres564@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0565-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ronald", + "lastName": "Salazar" + }, + "avatarUrl": "", + "userEmail": "ronald.salazar565@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0566-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lisa", + "lastName": "Campbell" + }, + "avatarUrl": "", + "userEmail": "lisa.campbell566@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0567-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Daniels" + }, + "avatarUrl": "", + "userEmail": "judith.daniels567@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0568-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Matthew", + "lastName": "Harris" + }, + "avatarUrl": "", + "userEmail": "matthew.harris568@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0569-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donna", + "lastName": "Roberts" + }, + "avatarUrl": "", + "userEmail": "donna.roberts569@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0570-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Amy", + "lastName": "Fernandez" + }, + "avatarUrl": "", + "userEmail": "amy.fernandez570@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0571-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Parker", + "lastName": "Turner" + }, + "avatarUrl": "", + "userEmail": "parker.turner571@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0572-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrea", + "lastName": "Turner" + }, + "avatarUrl": "", + "userEmail": "andrea.turner572@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0573-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Brandon", + "lastName": "Brown" + }, + "avatarUrl": "", + "userEmail": "brandon.brown573@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0574-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janet", + "lastName": "Evans" + }, + "avatarUrl": "", + "userEmail": "janet.evans574@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0575-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Rachel", + "lastName": "James" + }, + "avatarUrl": "", + "userEmail": "rachel.james575@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0576-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cynthia", + "lastName": "Young" + }, + "avatarUrl": "", + "userEmail": "cynthia.young576@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0577-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gary", + "lastName": "Payne" + }, + "avatarUrl": "", + "userEmail": "gary.payne577@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0578-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Stephen", + "lastName": "Smith" + }, + "avatarUrl": "", + "userEmail": "stephen.smith578@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0579-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Evelyn", + "lastName": "Hill" + }, + "avatarUrl": "", + "userEmail": "evelyn.hill579@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0580-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Helen", + "lastName": "Romero" + }, + "avatarUrl": "", + "userEmail": "helen.romero580@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0581-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kai", + "lastName": "Mason" + }, + "avatarUrl": "", + "userEmail": "kai.mason581@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0582-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Barbara", + "lastName": "Lee" + }, + "avatarUrl": "", + "userEmail": "barbara.lee582@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0583-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carol", + "lastName": "Hall" + }, + "avatarUrl": "", + "userEmail": "carol.hall583@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0584-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janet", + "lastName": "Patterson" + }, + "avatarUrl": "", + "userEmail": "janet.patterson584@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0585-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joyce", + "lastName": "Howard" + }, + "avatarUrl": "", + "userEmail": "joyce.howard585@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0586-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samantha", + "lastName": "Bryant" + }, + "avatarUrl": "", + "userEmail": "samantha.bryant586@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0587-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ryan", + "lastName": "Sanders" + }, + "avatarUrl": "", + "userEmail": "ryan.sanders587@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0588-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mark", + "lastName": "Moore" + }, + "avatarUrl": "", + "userEmail": "mark.moore588@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0589-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Mitchell" + }, + "avatarUrl": "", + "userEmail": "jason.mitchell589@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0590-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sharon", + "lastName": "Gonzales" + }, + "avatarUrl": "", + "userEmail": "sharon.gonzales590@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0591-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jeremy", + "lastName": "Perry" + }, + "avatarUrl": "", + "userEmail": "jeremy.perry591@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0592-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Peter", + "lastName": "Robinson" + }, + "avatarUrl": "", + "userEmail": "peter.robinson592@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0593-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donald", + "lastName": "Wagner" + }, + "avatarUrl": "", + "userEmail": "donald.wagner593@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0594-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jayden", + "lastName": "Reed" + }, + "avatarUrl": "", + "userEmail": "jayden.reed594@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0595-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Virginia", + "lastName": "Howard" + }, + "avatarUrl": "", + "userEmail": "virginia.howard595@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0596-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Justin", + "lastName": "Johnson" + }, + "avatarUrl": "", + "userEmail": "justin.johnson596@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0597-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Adam", + "lastName": "Mills" + }, + "avatarUrl": "", + "userEmail": "adam.mills597@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0598-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Betty", + "lastName": "Gomez" + }, + "avatarUrl": "", + "userEmail": "betty.gomez598@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0599-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dennis", + "lastName": "Gray" + }, + "avatarUrl": "", + "userEmail": "dennis.gray599@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0600-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michael", + "lastName": "Ford" + }, + "avatarUrl": "", + "userEmail": "michael.ford600@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0601-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Gonzalez" + }, + "avatarUrl": "", + "userEmail": "lauren.gonzalez601@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0602-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Marie", + "lastName": "Kelly" + }, + "avatarUrl": "", + "userEmail": "marie.kelly602@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0603-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christopher", + "lastName": "Payne" + }, + "avatarUrl": "", + "userEmail": "christopher.payne603@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0604-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Evelyn", + "lastName": "Olson" + }, + "avatarUrl": "", + "userEmail": "evelyn.olson604@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0605-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Debra", + "lastName": "Allen" + }, + "avatarUrl": "", + "userEmail": "debra.allen605@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0606-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Raymond", + "lastName": "James" + }, + "avatarUrl": "", + "userEmail": "raymond.james606@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0607-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frank", + "lastName": "Hill" + }, + "avatarUrl": "", + "userEmail": "frank.hill607@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0608-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christina", + "lastName": "Burns" + }, + "avatarUrl": "", + "userEmail": "christina.burns608@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0609-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Lewis" + }, + "avatarUrl": "", + "userEmail": "sarah.lewis609@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0610-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Thompson" + }, + "avatarUrl": "", + "userEmail": "robert.thompson610@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0611-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mary", + "lastName": "Silva" + }, + "avatarUrl": "", + "userEmail": "mary.silva611@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0612-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jaxon", + "lastName": "Sanchez" + }, + "avatarUrl": "", + "userEmail": "jaxon.sanchez612@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0613-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Lewis" + }, + "avatarUrl": "", + "userEmail": "ruth.lewis613@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0614-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samantha", + "lastName": "Hall" + }, + "avatarUrl": "", + "userEmail": "samantha.hall614@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0615-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janice", + "lastName": "Reyes" + }, + "avatarUrl": "", + "userEmail": "janice.reyes615@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0616-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mason", + "lastName": "Richardson" + }, + "avatarUrl": "", + "userEmail": "mason.richardson616@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0617-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Hill" + }, + "avatarUrl": "", + "userEmail": "ruth.hill617@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0618-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Murphy" + }, + "avatarUrl": "", + "userEmail": "heather.murphy618@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0619-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jayden", + "lastName": "Aguilar" + }, + "avatarUrl": "", + "userEmail": "jayden.aguilar619@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0620-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donald", + "lastName": "Collins" + }, + "avatarUrl": "", + "userEmail": "donald.collins620@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0621-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Diane", + "lastName": "Garza" + }, + "avatarUrl": "", + "userEmail": "diane.garza621@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0622-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Harris" + }, + "avatarUrl": "", + "userEmail": "joan.harris622@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0623-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Wright" + }, + "avatarUrl": "", + "userEmail": "michelle.wright623@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0624-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Edward", + "lastName": "Castillo" + }, + "avatarUrl": "", + "userEmail": "edward.castillo624@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0625-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christina", + "lastName": "Rogers" + }, + "avatarUrl": "", + "userEmail": "christina.rogers625@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0626-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Hunter" + }, + "avatarUrl": "", + "userEmail": "joan.hunter626@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0627-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Murray" + }, + "avatarUrl": "", + "userEmail": "robert.murray627@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0628-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Amy", + "lastName": "Russell" + }, + "avatarUrl": "", + "userEmail": "amy.russell628@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0629-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Timothy", + "lastName": "Ramirez" + }, + "avatarUrl": "", + "userEmail": "timothy.ramirez629@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0630-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Helen", + "lastName": "Young" + }, + "avatarUrl": "", + "userEmail": "helen.young630@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0631-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Warren" + }, + "avatarUrl": "", + "userEmail": "ruth.warren631@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0632-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Charles", + "lastName": "Taylor" + }, + "avatarUrl": "", + "userEmail": "charles.taylor632@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0633-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Matthew", + "lastName": "Mcdonald" + }, + "avatarUrl": "", + "userEmail": "matthew.mcdonald633@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0634-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mary", + "lastName": "Rice" + }, + "avatarUrl": "", + "userEmail": "mary.rice634@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0635-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nancy", + "lastName": "Kelly" + }, + "avatarUrl": "", + "userEmail": "nancy.kelly635@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0636-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrew", + "lastName": "Miller" + }, + "avatarUrl": "", + "userEmail": "andrew.miller636@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0637-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mary", + "lastName": "Roberts" + }, + "avatarUrl": "", + "userEmail": "mary.roberts637@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0638-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Justin", + "lastName": "Gutierrez" + }, + "avatarUrl": "", + "userEmail": "justin.gutierrez638@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0639-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Eric", + "lastName": "Wilson" + }, + "avatarUrl": "", + "userEmail": "eric.wilson639@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0640-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ethan", + "lastName": "Harrison" + }, + "avatarUrl": "", + "userEmail": "ethan.harrison640@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0641-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gregory", + "lastName": "Alexander" + }, + "avatarUrl": "", + "userEmail": "gregory.alexander641@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0642-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Henry", + "lastName": "Ryan" + }, + "avatarUrl": "", + "userEmail": "henry.ryan642@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0643-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sandra", + "lastName": "Dixon" + }, + "avatarUrl": "", + "userEmail": "sandra.dixon643@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0644-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jacqueline", + "lastName": "Patterson" + }, + "avatarUrl": "", + "userEmail": "jacqueline.patterson644@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0645-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donna", + "lastName": "Wagner" + }, + "avatarUrl": "", + "userEmail": "donna.wagner645@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0646-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Leonardo", + "lastName": "Soto" + }, + "avatarUrl": "", + "userEmail": "leonardo.soto646@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0647-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sharon", + "lastName": "Hayes" + }, + "avatarUrl": "", + "userEmail": "sharon.hayes647@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0648-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Parker", + "lastName": "Jones" + }, + "avatarUrl": "", + "userEmail": "parker.jones648@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0649-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Megan", + "lastName": "Reed" + }, + "avatarUrl": "", + "userEmail": "megan.reed649@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0650-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Josiah", + "lastName": "Vargas" + }, + "avatarUrl": "", + "userEmail": "josiah.vargas650@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0651-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julie", + "lastName": "Nguyen" + }, + "avatarUrl": "", + "userEmail": "julie.nguyen651@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0652-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joyce", + "lastName": "Ellis" + }, + "avatarUrl": "", + "userEmail": "joyce.ellis652@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0653-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julie", + "lastName": "Kelly" + }, + "avatarUrl": "", + "userEmail": "julie.kelly653@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0654-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frances", + "lastName": "Alexander" + }, + "avatarUrl": "", + "userEmail": "frances.alexander654@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0655-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dennis", + "lastName": "Wallace" + }, + "avatarUrl": "", + "userEmail": "dennis.wallace655@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0656-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Coleman" + }, + "avatarUrl": "", + "userEmail": "sarah.coleman656@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0657-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Betty", + "lastName": "Graham" + }, + "avatarUrl": "", + "userEmail": "betty.graham657@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0658-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julie", + "lastName": "Mason" + }, + "avatarUrl": "", + "userEmail": "julie.mason658@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0659-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sandra", + "lastName": "Lee" + }, + "avatarUrl": "", + "userEmail": "sandra.lee659@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0660-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Olivia", + "lastName": "Jones" + }, + "avatarUrl": "", + "userEmail": "olivia.jones660@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0661-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Walker" + }, + "avatarUrl": "", + "userEmail": "robert.walker661@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0662-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Scott", + "lastName": "Hill" + }, + "avatarUrl": "", + "userEmail": "scott.hill662@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0663-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ezra", + "lastName": "Medina" + }, + "avatarUrl": "", + "userEmail": "ezra.medina663@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0664-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Debra", + "lastName": "Hernandez" + }, + "avatarUrl": "", + "userEmail": "debra.hernandez664@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0665-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ashley", + "lastName": "Bailey" + }, + "avatarUrl": "", + "userEmail": "ashley.bailey665@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0666-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Catherine", + "lastName": "Silva" + }, + "avatarUrl": "", + "userEmail": "catherine.silva666@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0667-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hannah", + "lastName": "Dixon" + }, + "avatarUrl": "", + "userEmail": "hannah.dixon667@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0668-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lisa", + "lastName": "Sanders" + }, + "avatarUrl": "", + "userEmail": "lisa.sanders668@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0669-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Dixon" + }, + "avatarUrl": "", + "userEmail": "lauren.dixon669@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0670-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carol", + "lastName": "Spencer" + }, + "avatarUrl": "", + "userEmail": "carol.spencer670@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0671-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cheryl", + "lastName": "Hayes" + }, + "avatarUrl": "", + "userEmail": "cheryl.hayes671@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0672-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nathan", + "lastName": "Harrison" + }, + "avatarUrl": "", + "userEmail": "nathan.harrison672@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0673-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Noah", + "lastName": "Parker" + }, + "avatarUrl": "", + "userEmail": "noah.parker673@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0674-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nancy", + "lastName": "Torres" + }, + "avatarUrl": "", + "userEmail": "nancy.torres674@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0675-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "John", + "lastName": "Ward" + }, + "avatarUrl": "", + "userEmail": "john.ward675@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0676-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donna", + "lastName": "Cooper" + }, + "avatarUrl": "", + "userEmail": "donna.cooper676@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0677-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Eric", + "lastName": "Black" + }, + "avatarUrl": "", + "userEmail": "eric.black677@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0678-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Oliver", + "lastName": "Warren" + }, + "avatarUrl": "", + "userEmail": "oliver.warren678@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0679-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Amy", + "lastName": "Phillips" + }, + "avatarUrl": "", + "userEmail": "amy.phillips679@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0680-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Burns" + }, + "avatarUrl": "", + "userEmail": "judith.burns680@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0681-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michael", + "lastName": "Rogers" + }, + "avatarUrl": "", + "userEmail": "michael.rogers681@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0682-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Stewart" + }, + "avatarUrl": "", + "userEmail": "michelle.stewart682@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0683-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Patrick", + "lastName": "Lopez" + }, + "avatarUrl": "", + "userEmail": "patrick.lopez683@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0684-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Walker" + }, + "avatarUrl": "", + "userEmail": "lauren.walker684@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0685-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ronald", + "lastName": "Stewart" + }, + "avatarUrl": "", + "userEmail": "ronald.stewart685@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0686-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joyce", + "lastName": "Kelley" + }, + "avatarUrl": "", + "userEmail": "joyce.kelley686@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0687-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Josiah", + "lastName": "Mcdonald" + }, + "avatarUrl": "", + "userEmail": "josiah.mcdonald687@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0688-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Steven", + "lastName": "Garza" + }, + "avatarUrl": "", + "userEmail": "steven.garza688@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0689-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Diane", + "lastName": "Johnson" + }, + "avatarUrl": "", + "userEmail": "diane.johnson689@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0690-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Peterson" + }, + "avatarUrl": "", + "userEmail": "lauren.peterson690@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0691-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frank", + "lastName": "Moreno" + }, + "avatarUrl": "", + "userEmail": "frank.moreno691@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0692-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christopher", + "lastName": "Henry" + }, + "avatarUrl": "", + "userEmail": "christopher.henry692@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0693-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Roberts" + }, + "avatarUrl": "", + "userEmail": "robert.roberts693@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0694-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Grayson", + "lastName": "Turner" + }, + "avatarUrl": "", + "userEmail": "grayson.turner694@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0695-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Betty", + "lastName": "Weaver" + }, + "avatarUrl": "", + "userEmail": "betty.weaver695@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0696-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kai", + "lastName": "Black" + }, + "avatarUrl": "", + "userEmail": "kai.black696@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0697-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Harris" + }, + "avatarUrl": "", + "userEmail": "robert.harris697@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0698-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Angela", + "lastName": "Fernandez" + }, + "avatarUrl": "", + "userEmail": "angela.fernandez698@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0699-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Reed" + }, + "avatarUrl": "", + "userEmail": "sarah.reed699@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0700-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Simmons" + }, + "avatarUrl": "", + "userEmail": "victoria.simmons700@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0701-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Thomas", + "lastName": "Mason" + }, + "avatarUrl": "", + "userEmail": "thomas.mason701@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0702-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ronald", + "lastName": "Soto" + }, + "avatarUrl": "", + "userEmail": "ronald.soto702@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0703-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrea", + "lastName": "Bailey" + }, + "avatarUrl": "", + "userEmail": "andrea.bailey703@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0704-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "David", + "lastName": "Williams" + }, + "avatarUrl": "", + "userEmail": "david.williams704@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0705-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kelly", + "lastName": "Gibson" + }, + "avatarUrl": "", + "userEmail": "kelly.gibson705@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0706-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ezra", + "lastName": "Dunn" + }, + "avatarUrl": "", + "userEmail": "ezra.dunn706@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0707-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kevin", + "lastName": "Chavez" + }, + "avatarUrl": "", + "userEmail": "kevin.chavez707@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0708-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Karen", + "lastName": "Ward" + }, + "avatarUrl": "", + "userEmail": "karen.ward708@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0709-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joseph", + "lastName": "Clark" + }, + "avatarUrl": "", + "userEmail": "joseph.clark709@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0710-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jose", + "lastName": "Holmes" + }, + "avatarUrl": "", + "userEmail": "jose.holmes710@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0711-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Diane", + "lastName": "Black" + }, + "avatarUrl": "", + "userEmail": "diane.black711@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0712-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Karen", + "lastName": "Simmons" + }, + "avatarUrl": "", + "userEmail": "karen.simmons712@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0713-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Elizabeth", + "lastName": "Clark" + }, + "avatarUrl": "", + "userEmail": "elizabeth.clark713@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0714-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Peter", + "lastName": "Nichols" + }, + "avatarUrl": "", + "userEmail": "peter.nichols714@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0715-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cynthia", + "lastName": "Henry" + }, + "avatarUrl": "", + "userEmail": "cynthia.henry715@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0716-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kenneth", + "lastName": "Myers" + }, + "avatarUrl": "", + "userEmail": "kenneth.myers716@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0717-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jennifer", + "lastName": "Lewis" + }, + "avatarUrl": "", + "userEmail": "jennifer.lewis717@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0718-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jaxon", + "lastName": "Anderson" + }, + "avatarUrl": "", + "userEmail": "jaxon.anderson718@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0719-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Brandon", + "lastName": "Mendoza" + }, + "avatarUrl": "", + "userEmail": "brandon.mendoza719@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0720-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carter", + "lastName": "Freeman" + }, + "avatarUrl": "", + "userEmail": "carter.freeman720@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0721-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Steven", + "lastName": "Hayes" + }, + "avatarUrl": "", + "userEmail": "steven.hayes721@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0722-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Owen", + "lastName": "Roberts" + }, + "avatarUrl": "", + "userEmail": "owen.roberts722@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0723-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Karen", + "lastName": "Gonzalez" + }, + "avatarUrl": "", + "userEmail": "karen.gonzalez723@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0724-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Josiah", + "lastName": "Ross" + }, + "avatarUrl": "", + "userEmail": "josiah.ross724@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0725-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Deborah", + "lastName": "Adams" + }, + "avatarUrl": "", + "userEmail": "deborah.adams725@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0726-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Larry", + "lastName": "Black" + }, + "avatarUrl": "", + "userEmail": "larry.black726@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0727-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Virginia", + "lastName": "Diaz" + }, + "avatarUrl": "", + "userEmail": "virginia.diaz727@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0728-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joseph", + "lastName": "Ramos" + }, + "avatarUrl": "", + "userEmail": "joseph.ramos728@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0729-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Douglas", + "lastName": "Johnson" + }, + "avatarUrl": "", + "userEmail": "douglas.johnson729@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0730-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Edward", + "lastName": "Owens" + }, + "avatarUrl": "", + "userEmail": "edward.owens730@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0731-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janet", + "lastName": "Miller" + }, + "avatarUrl": "", + "userEmail": "janet.miller731@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0732-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jerry", + "lastName": "Smith" + }, + "avatarUrl": "", + "userEmail": "jerry.smith732@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0733-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ryan", + "lastName": "Kennedy" + }, + "avatarUrl": "", + "userEmail": "ryan.kennedy733@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0734-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dorothy", + "lastName": "Guzman" + }, + "avatarUrl": "", + "userEmail": "dorothy.guzman734@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0735-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sharon", + "lastName": "Castro" + }, + "avatarUrl": "", + "userEmail": "sharon.castro735@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0736-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Elizabeth", + "lastName": "Owens" + }, + "avatarUrl": "", + "userEmail": "elizabeth.owens736@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0737-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hudson", + "lastName": "Edwards" + }, + "avatarUrl": "", + "userEmail": "hudson.edwards737@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0738-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carol", + "lastName": "Brown" + }, + "avatarUrl": "", + "userEmail": "carol.brown738@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0739-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cheryl", + "lastName": "Dunn" + }, + "avatarUrl": "", + "userEmail": "cheryl.dunn739@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0740-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carolyn", + "lastName": "Anderson" + }, + "avatarUrl": "", + "userEmail": "carolyn.anderson740@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0741-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sharon", + "lastName": "Romero" + }, + "avatarUrl": "", + "userEmail": "sharon.romero741@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0742-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hannah", + "lastName": "King" + }, + "avatarUrl": "", + "userEmail": "hannah.king742@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0743-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Stone" + }, + "avatarUrl": "", + "userEmail": "joan.stone743@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0744-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Aguilar" + }, + "avatarUrl": "", + "userEmail": "michelle.aguilar744@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0745-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Foster" + }, + "avatarUrl": "", + "userEmail": "sarah.foster745@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0746-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jose", + "lastName": "Woods" + }, + "avatarUrl": "", + "userEmail": "jose.woods746@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0747-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Anthony", + "lastName": "Ramos" + }, + "avatarUrl": "", + "userEmail": "anthony.ramos747@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0748-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Amy", + "lastName": "Fernandez" + }, + "avatarUrl": "", + "userEmail": "amy.fernandez748@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0749-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hudson", + "lastName": "Wells" + }, + "avatarUrl": "", + "userEmail": "hudson.wells749@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0750-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carolyn", + "lastName": "Kelley" + }, + "avatarUrl": "", + "userEmail": "carolyn.kelley750@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0751-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Isaac", + "lastName": "Munoz" + }, + "avatarUrl": "", + "userEmail": "isaac.munoz751@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0752-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jessica", + "lastName": "Gomez" + }, + "avatarUrl": "", + "userEmail": "jessica.gomez752@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0753-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Romero" + }, + "avatarUrl": "", + "userEmail": "judith.romero753@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0754-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Wright" + }, + "avatarUrl": "", + "userEmail": "michelle.wright754@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0755-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Zachary", + "lastName": "Powell" + }, + "avatarUrl": "", + "userEmail": "zachary.powell755@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0756-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lauren", + "lastName": "Nichols" + }, + "avatarUrl": "", + "userEmail": "lauren.nichols756@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0757-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lisa", + "lastName": "Ward" + }, + "avatarUrl": "", + "userEmail": "lisa.ward757@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0758-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cheryl", + "lastName": "Nichols" + }, + "avatarUrl": "", + "userEmail": "cheryl.nichols758@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0759-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Evelyn", + "lastName": "Turner" + }, + "avatarUrl": "", + "userEmail": "evelyn.turner759@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0760-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Mendez" + }, + "avatarUrl": "", + "userEmail": "jason.mendez760@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0761-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christopher", + "lastName": "Peterson" + }, + "avatarUrl": "", + "userEmail": "christopher.peterson761@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0762-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Heather", + "lastName": "Robertson" + }, + "avatarUrl": "", + "userEmail": "heather.robertson762@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0763-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Grayson", + "lastName": "Miller" + }, + "avatarUrl": "", + "userEmail": "grayson.miller763@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0764-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lisa", + "lastName": "Mason" + }, + "avatarUrl": "", + "userEmail": "lisa.mason764@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0765-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Charles", + "lastName": "Shaw" + }, + "avatarUrl": "", + "userEmail": "charles.shaw765@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0766-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christina", + "lastName": "Richardson" + }, + "avatarUrl": "", + "userEmail": "christina.richardson766@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0767-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jose", + "lastName": "Kennedy" + }, + "avatarUrl": "", + "userEmail": "jose.kennedy767@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0768-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kenneth", + "lastName": "Coleman" + }, + "avatarUrl": "", + "userEmail": "kenneth.coleman768@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0769-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jeremy", + "lastName": "Bailey" + }, + "avatarUrl": "", + "userEmail": "jeremy.bailey769@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0770-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Amy", + "lastName": "Ramirez" + }, + "avatarUrl": "", + "userEmail": "amy.ramirez770@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0771-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Patrick", + "lastName": "Owens" + }, + "avatarUrl": "", + "userEmail": "patrick.owens771@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0772-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jayden", + "lastName": "Lopez" + }, + "avatarUrl": "", + "userEmail": "jayden.lopez772@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0773-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mary", + "lastName": "Kelly" + }, + "avatarUrl": "", + "userEmail": "mary.kelly773@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0774-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samantha", + "lastName": "Mendez" + }, + "avatarUrl": "", + "userEmail": "samantha.mendez774@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0775-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janice", + "lastName": "Moore" + }, + "avatarUrl": "", + "userEmail": "janice.moore775@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0776-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Patrick", + "lastName": "Perez" + }, + "avatarUrl": "", + "userEmail": "patrick.perez776@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0777-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jeffrey", + "lastName": "Garcia" + }, + "avatarUrl": "", + "userEmail": "jeffrey.garcia777@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0778-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jonathan", + "lastName": "Jones" + }, + "avatarUrl": "", + "userEmail": "jonathan.jones778@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0779-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samantha", + "lastName": "Stevens" + }, + "avatarUrl": "", + "userEmail": "samantha.stevens779@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0780-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Richard", + "lastName": "Ortiz" + }, + "avatarUrl": "", + "userEmail": "richard.ortiz780@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0781-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Evelyn", + "lastName": "Sanders" + }, + "avatarUrl": "", + "userEmail": "evelyn.sanders781@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0782-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jacob", + "lastName": "Webb" + }, + "avatarUrl": "", + "userEmail": "jacob.webb782@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0783-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ashley", + "lastName": "Aguilar" + }, + "avatarUrl": "", + "userEmail": "ashley.aguilar783@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0784-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Catherine", + "lastName": "Tucker" + }, + "avatarUrl": "", + "userEmail": "catherine.tucker784@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0785-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lisa", + "lastName": "Reynolds" + }, + "avatarUrl": "", + "userEmail": "lisa.reynolds785@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0786-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Douglas", + "lastName": "Jenkins" + }, + "avatarUrl": "", + "userEmail": "douglas.jenkins786@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0787-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Jackson" + }, + "avatarUrl": "", + "userEmail": "sarah.jackson787@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0788-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Dunn" + }, + "avatarUrl": "", + "userEmail": "judith.dunn788@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0789-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hannah", + "lastName": "Jimenez" + }, + "avatarUrl": "", + "userEmail": "hannah.jimenez789@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0790-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Diane", + "lastName": "Adams" + }, + "avatarUrl": "", + "userEmail": "diane.adams790@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0791-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kyle", + "lastName": "Allen" + }, + "avatarUrl": "", + "userEmail": "kyle.allen791@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0792-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janice", + "lastName": "Stone" + }, + "avatarUrl": "", + "userEmail": "janice.stone792@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0793-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janice", + "lastName": "Webb" + }, + "avatarUrl": "", + "userEmail": "janice.webb793@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0794-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Maverick", + "lastName": "Martinez" + }, + "avatarUrl": "", + "userEmail": "maverick.martinez794@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0795-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Teresa", + "lastName": "Myers" + }, + "avatarUrl": "", + "userEmail": "teresa.myers795@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0796-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Roman", + "lastName": "Moore" + }, + "avatarUrl": "", + "userEmail": "roman.moore796@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0797-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kevin", + "lastName": "Rogers" + }, + "avatarUrl": "", + "userEmail": "kevin.rogers797@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0798-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Laura", + "lastName": "Graham" + }, + "avatarUrl": "", + "userEmail": "laura.graham798@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0799-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Kelley" + }, + "avatarUrl": "", + "userEmail": "michelle.kelley799@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0800-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Kelley" + }, + "avatarUrl": "", + "userEmail": "ruth.kelley800@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0801-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Parker", + "lastName": "Robertson" + }, + "avatarUrl": "", + "userEmail": "parker.robertson801@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0802-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carol", + "lastName": "Cruz" + }, + "avatarUrl": "", + "userEmail": "carol.cruz802@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0803-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joyce", + "lastName": "Martin" + }, + "avatarUrl": "", + "userEmail": "joyce.martin803@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0804-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Larry", + "lastName": "Perez" + }, + "avatarUrl": "", + "userEmail": "larry.perez804@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0805-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Laura", + "lastName": "Long" + }, + "avatarUrl": "", + "userEmail": "laura.long805@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0806-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joseph", + "lastName": "Burns" + }, + "avatarUrl": "", + "userEmail": "joseph.burns806@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0807-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Peter", + "lastName": "Howard" + }, + "avatarUrl": "", + "userEmail": "peter.howard807@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0808-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Luke", + "lastName": "Silva" + }, + "avatarUrl": "", + "userEmail": "luke.silva808@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0809-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Jordan" + }, + "avatarUrl": "", + "userEmail": "michelle.jordan809@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0810-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Owen", + "lastName": "Hughes" + }, + "avatarUrl": "", + "userEmail": "owen.hughes810@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0811-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jayden", + "lastName": "Dunn" + }, + "avatarUrl": "", + "userEmail": "jayden.dunn811@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0812-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Adam", + "lastName": "Nguyen" + }, + "avatarUrl": "", + "userEmail": "adam.nguyen812@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0813-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christopher", + "lastName": "Diaz" + }, + "avatarUrl": "", + "userEmail": "christopher.diaz813@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0814-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Linda", + "lastName": "Moreno" + }, + "avatarUrl": "", + "userEmail": "linda.moreno814@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0815-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gabriel", + "lastName": "Gonzales" + }, + "avatarUrl": "", + "userEmail": "gabriel.gonzales815@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0816-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrew", + "lastName": "Salazar" + }, + "avatarUrl": "", + "userEmail": "andrew.salazar816@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0817-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Brian", + "lastName": "Chen" + }, + "avatarUrl": "", + "userEmail": "brian.chen817@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0818-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Olivia", + "lastName": "Diaz" + }, + "avatarUrl": "", + "userEmail": "olivia.diaz818@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0819-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Wyatt", + "lastName": "Stephens" + }, + "avatarUrl": "", + "userEmail": "wyatt.stephens819@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0820-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Teresa", + "lastName": "Murray" + }, + "avatarUrl": "", + "userEmail": "teresa.murray820@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0821-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Laura", + "lastName": "Payne" + }, + "avatarUrl": "", + "userEmail": "laura.payne821@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0822-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samantha", + "lastName": "Ortiz" + }, + "avatarUrl": "", + "userEmail": "samantha.ortiz822@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0823-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donna", + "lastName": "Wagner" + }, + "avatarUrl": "", + "userEmail": "donna.wagner823@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0824-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Adam", + "lastName": "Bryant" + }, + "avatarUrl": "", + "userEmail": "adam.bryant824@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0825-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kyle", + "lastName": "Ross" + }, + "avatarUrl": "", + "userEmail": "kyle.ross825@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0826-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Catherine", + "lastName": "Torres" + }, + "avatarUrl": "", + "userEmail": "catherine.torres826@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0827-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Maverick", + "lastName": "Lewis" + }, + "avatarUrl": "", + "userEmail": "maverick.lewis827@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0828-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Edward", + "lastName": "Coleman" + }, + "avatarUrl": "", + "userEmail": "edward.coleman828@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0829-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Judith", + "lastName": "Wilson" + }, + "avatarUrl": "", + "userEmail": "judith.wilson829@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0830-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Angela", + "lastName": "Baker" + }, + "avatarUrl": "", + "userEmail": "angela.baker830@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0831-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cheryl", + "lastName": "Kennedy" + }, + "avatarUrl": "", + "userEmail": "cheryl.kennedy831@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0832-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrew", + "lastName": "Gibson" + }, + "avatarUrl": "", + "userEmail": "andrew.gibson832@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0833-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alan", + "lastName": "Martinez" + }, + "avatarUrl": "", + "userEmail": "alan.martinez833@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0834-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Aaron", + "lastName": "Silva" + }, + "avatarUrl": "", + "userEmail": "aaron.silva834@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0835-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Parker", + "lastName": "Wagner" + }, + "avatarUrl": "", + "userEmail": "parker.wagner835@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0836-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gabriel", + "lastName": "Mendez" + }, + "avatarUrl": "", + "userEmail": "gabriel.mendez836@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0837-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Scott", + "lastName": "Porter" + }, + "avatarUrl": "", + "userEmail": "scott.porter837@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0838-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samuel", + "lastName": "Meyer" + }, + "avatarUrl": "", + "userEmail": "samuel.meyer838@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0839-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cynthia", + "lastName": "Johnson" + }, + "avatarUrl": "", + "userEmail": "cynthia.johnson839@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0840-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Adam", + "lastName": "Cole" + }, + "avatarUrl": "", + "userEmail": "adam.cole840@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0841-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dorothy", + "lastName": "Palmer" + }, + "avatarUrl": "", + "userEmail": "dorothy.palmer841@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0842-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Jenkins" + }, + "avatarUrl": "", + "userEmail": "victoria.jenkins842@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0843-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Adrian", + "lastName": "Hunt" + }, + "avatarUrl": "", + "userEmail": "adrian.hunt843@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0844-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Matthew", + "lastName": "Allen" + }, + "avatarUrl": "", + "userEmail": "matthew.allen844@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0845-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janet", + "lastName": "Bennett" + }, + "avatarUrl": "", + "userEmail": "janet.bennett845@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0846-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Scott", + "lastName": "Garza" + }, + "avatarUrl": "", + "userEmail": "scott.garza846@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0847-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ethan", + "lastName": "Morris" + }, + "avatarUrl": "", + "userEmail": "ethan.morris847@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0848-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christine", + "lastName": "Foster" + }, + "avatarUrl": "", + "userEmail": "christine.foster848@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0849-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janet", + "lastName": "Munoz" + }, + "avatarUrl": "", + "userEmail": "janet.munoz849@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0850-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nicholas", + "lastName": "Thompson" + }, + "avatarUrl": "", + "userEmail": "nicholas.thompson850@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0851-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jonathan", + "lastName": "Weaver" + }, + "avatarUrl": "", + "userEmail": "jonathan.weaver851@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0852-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Charles", + "lastName": "Stone" + }, + "avatarUrl": "", + "userEmail": "charles.stone852@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0853-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Logan", + "lastName": "Howard" + }, + "avatarUrl": "", + "userEmail": "logan.howard853@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0854-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frank", + "lastName": "Stone" + }, + "avatarUrl": "", + "userEmail": "frank.stone854@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0855-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Adrian", + "lastName": "Munoz" + }, + "avatarUrl": "", + "userEmail": "adrian.munoz855@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0856-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kevin", + "lastName": "Silva" + }, + "avatarUrl": "", + "userEmail": "kevin.silva856@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0857-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cheryl", + "lastName": "Salazar" + }, + "avatarUrl": "", + "userEmail": "cheryl.salazar857@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0858-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Justin", + "lastName": "Fernandez" + }, + "avatarUrl": "", + "userEmail": "justin.fernandez858@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0859-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Evelyn", + "lastName": "Patel" + }, + "avatarUrl": "", + "userEmail": "evelyn.patel859@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0860-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gloria", + "lastName": "Schmidt" + }, + "avatarUrl": "", + "userEmail": "gloria.schmidt860@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0861-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Rogers" + }, + "avatarUrl": "", + "userEmail": "victoria.rogers861@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0862-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Noah", + "lastName": "Romero" + }, + "avatarUrl": "", + "userEmail": "noah.romero862@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0863-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janice", + "lastName": "Bell" + }, + "avatarUrl": "", + "userEmail": "janice.bell863@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0864-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Paul", + "lastName": "Woods" + }, + "avatarUrl": "", + "userEmail": "paul.woods864@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0865-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kimberly", + "lastName": "Patterson" + }, + "avatarUrl": "", + "userEmail": "kimberly.patterson865@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0866-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Morgan" + }, + "avatarUrl": "", + "userEmail": "sarah.morgan866@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0867-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Mitchell" + }, + "avatarUrl": "", + "userEmail": "sarah.mitchell867@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0868-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Linda", + "lastName": "Grant" + }, + "avatarUrl": "", + "userEmail": "linda.grant868@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0869-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ashley", + "lastName": "Perry" + }, + "avatarUrl": "", + "userEmail": "ashley.perry869@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0870-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Hughes" + }, + "avatarUrl": "", + "userEmail": "jason.hughes870@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0871-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kimberly", + "lastName": "Webb" + }, + "avatarUrl": "", + "userEmail": "kimberly.webb871@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0872-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alexander", + "lastName": "Moreno" + }, + "avatarUrl": "", + "userEmail": "alexander.moreno872@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0873-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carter", + "lastName": "Hunter" + }, + "avatarUrl": "", + "userEmail": "carter.hunter873@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0874-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Bennett" + }, + "avatarUrl": "", + "userEmail": "sarah.bennett874@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0875-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Maria", + "lastName": "Murphy" + }, + "avatarUrl": "", + "userEmail": "maria.murphy875@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0876-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Evelyn", + "lastName": "Shaw" + }, + "avatarUrl": "", + "userEmail": "evelyn.shaw876@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0877-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Stewart" + }, + "avatarUrl": "", + "userEmail": "michelle.stewart877@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0878-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mary", + "lastName": "Bailey" + }, + "avatarUrl": "", + "userEmail": "mary.bailey878@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0879-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Eric", + "lastName": "Ward" + }, + "avatarUrl": "", + "userEmail": "eric.ward879@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0880-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christopher", + "lastName": "Perry" + }, + "avatarUrl": "", + "userEmail": "christopher.perry880@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0881-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ashley", + "lastName": "Hunt" + }, + "avatarUrl": "", + "userEmail": "ashley.hunt881@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0882-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Brian", + "lastName": "Simmons" + }, + "avatarUrl": "", + "userEmail": "brian.simmons882@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0883-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "George", + "lastName": "Hunt" + }, + "avatarUrl": "", + "userEmail": "george.hunt883@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0884-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lisa", + "lastName": "Ferguson" + }, + "avatarUrl": "", + "userEmail": "lisa.ferguson884@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0885-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Leonardo", + "lastName": "Fox" + }, + "avatarUrl": "", + "userEmail": "leonardo.fox885@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0886-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Teresa", + "lastName": "Stephens" + }, + "avatarUrl": "", + "userEmail": "teresa.stephens886@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0887-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hannah", + "lastName": "Howard" + }, + "avatarUrl": "", + "userEmail": "hannah.howard887@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0888-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Daniel", + "lastName": "Patel" + }, + "avatarUrl": "", + "userEmail": "daniel.patel888@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0889-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Paul", + "lastName": "Martinez" + }, + "avatarUrl": "", + "userEmail": "paul.martinez889@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0890-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dorothy", + "lastName": "Jordan" + }, + "avatarUrl": "", + "userEmail": "dorothy.jordan890@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0891-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lucas", + "lastName": "Woods" + }, + "avatarUrl": "", + "userEmail": "lucas.woods891@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0892-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ezra", + "lastName": "Rivera" + }, + "avatarUrl": "", + "userEmail": "ezra.rivera892@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0893-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Linda", + "lastName": "Parker" + }, + "avatarUrl": "", + "userEmail": "linda.parker893@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0894-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jeffrey", + "lastName": "Robinson" + }, + "avatarUrl": "", + "userEmail": "jeffrey.robinson894@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0895-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Elijah", + "lastName": "Jenkins" + }, + "avatarUrl": "", + "userEmail": "elijah.jenkins895@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0896-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sandra", + "lastName": "Johnson" + }, + "avatarUrl": "", + "userEmail": "sandra.johnson896@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0897-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jack", + "lastName": "King" + }, + "avatarUrl": "", + "userEmail": "jack.king897@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0898-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Gabriel", + "lastName": "Meyer" + }, + "avatarUrl": "", + "userEmail": "gabriel.meyer898@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0899-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Wood" + }, + "avatarUrl": "", + "userEmail": "robert.wood899@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0900-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Thomas", + "lastName": "Taylor" + }, + "avatarUrl": "", + "userEmail": "thomas.taylor900@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0901-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kimberly", + "lastName": "Burns" + }, + "avatarUrl": "", + "userEmail": "kimberly.burns901@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0902-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Charles", + "lastName": "Simpson" + }, + "avatarUrl": "", + "userEmail": "charles.simpson902@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0903-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carter", + "lastName": "Carter" + }, + "avatarUrl": "", + "userEmail": "carter.carter903@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0904-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jack", + "lastName": "Sanchez" + }, + "avatarUrl": "", + "userEmail": "jack.sanchez904@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0905-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Oliver", + "lastName": "Martin" + }, + "avatarUrl": "", + "userEmail": "oliver.martin905@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0906-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samantha", + "lastName": "Cooper" + }, + "avatarUrl": "", + "userEmail": "samantha.cooper906@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0907-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hannah", + "lastName": "Hall" + }, + "avatarUrl": "", + "userEmail": "hannah.hall907@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0908-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alexander", + "lastName": "Allen" + }, + "avatarUrl": "", + "userEmail": "alexander.allen908@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0909-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Noah", + "lastName": "Bennett" + }, + "avatarUrl": "", + "userEmail": "noah.bennett909@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0910-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Isaac", + "lastName": "Butler" + }, + "avatarUrl": "", + "userEmail": "isaac.butler910@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0911-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donald", + "lastName": "Coleman" + }, + "avatarUrl": "", + "userEmail": "donald.coleman911@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0912-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "David", + "lastName": "Coleman" + }, + "avatarUrl": "", + "userEmail": "david.coleman912@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0913-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jason", + "lastName": "Kelley" + }, + "avatarUrl": "", + "userEmail": "jason.kelley913@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0914-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nicholas", + "lastName": "Torres" + }, + "avatarUrl": "", + "userEmail": "nicholas.torres914@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0915-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Maria", + "lastName": "Peterson" + }, + "avatarUrl": "", + "userEmail": "maria.peterson915@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0916-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ethan", + "lastName": "Green" + }, + "avatarUrl": "", + "userEmail": "ethan.green916@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0917-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Anthony", + "lastName": "Russell" + }, + "avatarUrl": "", + "userEmail": "anthony.russell917@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0918-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alexander", + "lastName": "Turner" + }, + "avatarUrl": "", + "userEmail": "alexander.turner918@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0919-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Adam", + "lastName": "Cox" + }, + "avatarUrl": "", + "userEmail": "adam.cox919@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0920-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christina", + "lastName": "Hicks" + }, + "avatarUrl": "", + "userEmail": "christina.hicks920@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0921-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frank", + "lastName": "Washington" + }, + "avatarUrl": "", + "userEmail": "frank.washington921@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0922-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cayden", + "lastName": "Spencer" + }, + "avatarUrl": "", + "userEmail": "cayden.spencer922@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0923-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Parker", + "lastName": "Martin" + }, + "avatarUrl": "", + "userEmail": "parker.martin923@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0924-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cheryl", + "lastName": "Wells" + }, + "avatarUrl": "", + "userEmail": "cheryl.wells924@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0925-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mark", + "lastName": "Carter" + }, + "avatarUrl": "", + "userEmail": "mark.carter925@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0926-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lisa", + "lastName": "Ortiz" + }, + "avatarUrl": "", + "userEmail": "lisa.ortiz926@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0927-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alexander", + "lastName": "Romero" + }, + "avatarUrl": "", + "userEmail": "alexander.romero927@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0928-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Isaac", + "lastName": "Schmidt" + }, + "avatarUrl": "", + "userEmail": "isaac.schmidt928@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0929-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Mason", + "lastName": "Reyes" + }, + "avatarUrl": "", + "userEmail": "mason.reyes929@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0930-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Laura", + "lastName": "Reynolds" + }, + "avatarUrl": "", + "userEmail": "laura.reynolds930@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0931-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Kelly" + }, + "avatarUrl": "", + "userEmail": "michelle.kelly931@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0932-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Olivia", + "lastName": "Hunter" + }, + "avatarUrl": "", + "userEmail": "olivia.hunter932@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0933-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hannah", + "lastName": "Grant" + }, + "avatarUrl": "", + "userEmail": "hannah.grant933@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0934-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Steven", + "lastName": "Fisher" + }, + "avatarUrl": "", + "userEmail": "steven.fisher934@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0935-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Dylan", + "lastName": "Clark" + }, + "avatarUrl": "", + "userEmail": "dylan.clark935@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0936-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Tran" + }, + "avatarUrl": "", + "userEmail": "ruth.tran936@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0937-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jeremy", + "lastName": "Jackson" + }, + "avatarUrl": "", + "userEmail": "jeremy.jackson937@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0938-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Donald", + "lastName": "Stevens" + }, + "avatarUrl": "", + "userEmail": "donald.stevens938@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0939-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Diane", + "lastName": "Hunter" + }, + "avatarUrl": "", + "userEmail": "diane.hunter939@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0940-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hudson", + "lastName": "Jones" + }, + "avatarUrl": "", + "userEmail": "hudson.jones940@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0941-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Aiden", + "lastName": "Burns" + }, + "avatarUrl": "", + "userEmail": "aiden.burns941@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0942-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Sarah", + "lastName": "Reyes" + }, + "avatarUrl": "", + "userEmail": "sarah.reyes942@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0943-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Joan", + "lastName": "Ferguson" + }, + "avatarUrl": "", + "userEmail": "joan.ferguson943@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0944-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrea", + "lastName": "Alexander" + }, + "avatarUrl": "", + "userEmail": "andrea.alexander944@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0945-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Matthew", + "lastName": "Dunn" + }, + "avatarUrl": "", + "userEmail": "matthew.dunn945@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0946-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "James", + "lastName": "Cooper" + }, + "avatarUrl": "", + "userEmail": "james.cooper946@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0947-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Laura", + "lastName": "Hunter" + }, + "avatarUrl": "", + "userEmail": "laura.hunter947@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0948-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carolyn", + "lastName": "Diaz" + }, + "avatarUrl": "", + "userEmail": "carolyn.diaz948@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0949-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Herrera" + }, + "avatarUrl": "", + "userEmail": "michelle.herrera949@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0950-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Kyle", + "lastName": "Martinez" + }, + "avatarUrl": "", + "userEmail": "kyle.martinez950@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0951-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Henry", + "lastName": "Mason" + }, + "avatarUrl": "", + "userEmail": "henry.mason951@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0952-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Andrew", + "lastName": "Robinson" + }, + "avatarUrl": "", + "userEmail": "andrew.robinson952@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0953-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "John", + "lastName": "Munoz" + }, + "avatarUrl": "", + "userEmail": "john.munoz953@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0954-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ronald", + "lastName": "Fisher" + }, + "avatarUrl": "", + "userEmail": "ronald.fisher954@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0955-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jerry", + "lastName": "Robinson" + }, + "avatarUrl": "", + "userEmail": "jerry.robinson955@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0956-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jerry", + "lastName": "Woods" + }, + "avatarUrl": "", + "userEmail": "jerry.woods956@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0957-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jack", + "lastName": "Black" + }, + "avatarUrl": "", + "userEmail": "jack.black957@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0958-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Lucas", + "lastName": "Meyer" + }, + "avatarUrl": "", + "userEmail": "lucas.meyer958@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0959-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Stone" + }, + "avatarUrl": "", + "userEmail": "michelle.stone959@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0960-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "George", + "lastName": "Woods" + }, + "avatarUrl": "", + "userEmail": "george.woods960@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0961-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Grayson", + "lastName": "Graham" + }, + "avatarUrl": "", + "userEmail": "grayson.graham961@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0962-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Samuel", + "lastName": "Hunt" + }, + "avatarUrl": "", + "userEmail": "samuel.hunt962@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0963-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Adrian", + "lastName": "Burns" + }, + "avatarUrl": "", + "userEmail": "adrian.burns963@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0964-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nancy", + "lastName": "Ellis" + }, + "avatarUrl": "", + "userEmail": "nancy.ellis964@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0965-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frank", + "lastName": "Taylor" + }, + "avatarUrl": "", + "userEmail": "frank.taylor965@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0966-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Paul", + "lastName": "Hill" + }, + "avatarUrl": "", + "userEmail": "paul.hill966@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0967-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Freeman" + }, + "avatarUrl": "", + "userEmail": "robert.freeman967@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0968-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Jack", + "lastName": "Ruiz" + }, + "avatarUrl": "", + "userEmail": "jack.ruiz968@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0969-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Larry", + "lastName": "Roberts" + }, + "avatarUrl": "", + "userEmail": "larry.roberts969@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0970-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Frank", + "lastName": "Gonzalez" + }, + "avatarUrl": "", + "userEmail": "frank.gonzalez970@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0971-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Carolyn", + "lastName": "Payne" + }, + "avatarUrl": "", + "userEmail": "carolyn.payne971@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0972-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Nathan", + "lastName": "Schmidt" + }, + "avatarUrl": "", + "userEmail": "nathan.schmidt972@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0973-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ryan", + "lastName": "Johnson" + }, + "avatarUrl": "", + "userEmail": "ryan.johnson973@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0974-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alexander", + "lastName": "White" + }, + "avatarUrl": "", + "userEmail": "alexander.white974@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0975-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Ruth", + "lastName": "Perez" + }, + "avatarUrl": "", + "userEmail": "ruth.perez975@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0976-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Janet", + "lastName": "Meyer" + }, + "avatarUrl": "", + "userEmail": "janet.meyer976@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0977-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Julie", + "lastName": "Edwards" + }, + "avatarUrl": "", + "userEmail": "julie.edwards977@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0978-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Marie", + "lastName": "Rodriguez" + }, + "avatarUrl": "", + "userEmail": "marie.rodriguez978@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0979-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Thomas", + "lastName": "Perry" + }, + "avatarUrl": "", + "userEmail": "thomas.perry979@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0980-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Karen", + "lastName": "Edwards" + }, + "avatarUrl": "", + "userEmail": "karen.edwards980@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0981-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Elizabeth", + "lastName": "Martin" + }, + "avatarUrl": "", + "userEmail": "elizabeth.martin981@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0982-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Olivia", + "lastName": "Anderson" + }, + "avatarUrl": "", + "userEmail": "olivia.anderson982@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0983-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Michelle", + "lastName": "Wright" + }, + "avatarUrl": "", + "userEmail": "michelle.wright983@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0984-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Rachel", + "lastName": "White" + }, + "avatarUrl": "", + "userEmail": "rachel.white984@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0985-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cheryl", + "lastName": "Anderson" + }, + "avatarUrl": "", + "userEmail": "cheryl.anderson985@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0986-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Alexander", + "lastName": "Soto" + }, + "avatarUrl": "", + "userEmail": "alexander.soto986@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0987-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Cayden", + "lastName": "White" + }, + "avatarUrl": "", + "userEmail": "cayden.white987@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0988-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "James", + "lastName": "Palmer" + }, + "avatarUrl": "", + "userEmail": "james.palmer988@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0989-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Virginia", + "lastName": "Johnson" + }, + "avatarUrl": "", + "userEmail": "virginia.johnson989@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0990-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Eric", + "lastName": "Owens" + }, + "avatarUrl": "", + "userEmail": "eric.owens990@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0991-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Larry", + "lastName": "Davis" + }, + "avatarUrl": "", + "userEmail": "larry.davis991@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0992-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Perry" + }, + "avatarUrl": "", + "userEmail": "robert.perry992@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0993-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Hannah", + "lastName": "Ruiz" + }, + "avatarUrl": "", + "userEmail": "hannah.ruiz993@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0994-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "William", + "lastName": "Thomas" + }, + "avatarUrl": "", + "userEmail": "william.thomas994@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0995-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Olivia", + "lastName": "Munoz" + }, + "avatarUrl": "", + "userEmail": "olivia.munoz995@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0996-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Tyler", + "lastName": "Chen" + }, + "avatarUrl": "", + "userEmail": "tyler.chen996@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0997-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Rachel", + "lastName": "Carter" + }, + "avatarUrl": "", + "userEmail": "rachel.carter997@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0998-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Christina", + "lastName": "Rose" + }, + "avatarUrl": "", + "userEmail": "christina.rose998@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-0999-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Reynolds" + }, + "avatarUrl": "", + "userEmail": "victoria.reynolds999@apple.dev" + }, + { + "__typename": "WorkspaceMember", + "id": "32323232-1000-4000-8000-000000000000", + "name": { + "__typename": "FullName", + "firstName": "Richard", + "lastName": "Palmer" + }, + "avatarUrl": "", + "userEmail": "richard.palmer1000@apple.dev" + } + ], + "agents": [], + "apiKeys": [] + } +]; diff --git a/packages/twenty-front/src/testing/mock-data/notes.ts b/packages/twenty-front/src/testing/mock-data/notes.ts deleted file mode 100644 index 327b462a9d..0000000000 --- a/packages/twenty-front/src/testing/mock-data/notes.ts +++ /dev/null @@ -1,130 +0,0 @@ -import { type Note } from '@/activities/types/Note'; -import { type NoteTarget } from '@/activities/types/NoteTarget'; - -type MockedNote = Partial & { __typename?: string }; - -export const mockedNotes: Array = [ - { - id: '3ecaa1be-aac7-463a-a38e-64078dd451d5', - createdAt: '2023-04-26T10:12:42.33625+00:00', - updatedAt: '2023-04-26T10:23:42.33625+00:00', - title: 'My very first note', - bodyV2: { - blocknote: null, - markdown: null, - }, - noteTargets: [ - { - id: '89bb825c-171e-4bcc-9cf7-43448d6fb300', - createdAt: '2023-04-26T10:12:42.33625+00:00', - updatedAt: '2023-04-26T10:23:42.33625+00:00', - targetObjectNameSingular: 'company', - personId: null, - companyId: '89bb825c-171e-4bcc-9cf7-43448d6fb280', - company: { - __typename: 'Company', - id: '89bb825c-171e-4bcc-9cf7-43448d6fb280', - name: 'Airbnb', - domainName: 'airbnb.com', - }, - person: null, - noteId: '89bb825c-171e-4bcc-9cf7-43448d6fb230', - note: { - __typename: 'Activity', - id: '89bb825c-171e-4bcc-9cf7-43448d6fb230', - createdAt: '2023-04-26T10:12:42.33625+00:00', - updatedAt: '2023-04-26T10:23:42.33625+00:00', - }, - __typename: 'NoteTarget', - }, - { - id: '89bb825c-171e-4bcc-9cf7-43448d6fb301', - createdAt: new Date().toISOString(), - updatedAt: new Date().toISOString(), - targetObjectNameSingular: 'company', - personId: null, - companyId: 'b396e6b9-dc5c-4643-bcff-61b6cf7523ae', - company: { - __typename: 'Company', - id: '89bb825c-171e-4bcc-9cf7-43448d6fb278', - name: 'Aircall', - domainName: 'aircall.io', - }, - person: null, - noteId: 'b396e6b9-dc5c-4643-bcff-61b6cf7523ae', - note: { - __typename: 'Note', - id: '89bb825c-171e-4bcc-9cf7-43448d6fb231', - createdAt: new Date().toISOString(), - updatedAt: new Date().toISOString(), - }, - __typename: 'NoteTarget', - }, - ] as Array, - }, - { - id: '89bb825c-171e-4bcc-9cf7-43448d6fb278a', - createdAt: new Date().toISOString(), - updatedAt: new Date().toISOString(), - title: 'Another note', - bodyV2: { - blocknote: null, - markdown: null, - }, - noteTargets: [ - { - id: '89bb825c-171e-4bcc-9cf7-43448d6fb278t', - createdAt: '2023-04-26T10:12:42.33625+00:00', - updatedAt: '2023-04-26T10:23:42.33625+00:00', - targetObjectNameSingular: 'person', - personId: '7dfbc3f7-6e5e-4128-957e-8d86808cdf6b', // Alexandre - person: { - __typename: 'Person', - id: '7dfbc3f7-6e5e-4128-957e-8d86808cdf6b', - name: { - firstName: 'Alexandre', - lastName: 'Test', - }, - avatarUrl: '', - }, - company: null, - companyId: null, - noteId: '89bb825c-171e-4bcc-9cf7-43448d6fb278a', - note: { - __typename: 'Note', - id: '89bb825c-171e-4bcc-9cf7-43448d6fb278a', - createdAt: '2023-04-26T10:12:42.33625+00:00', - updatedAt: '2023-04-26T10:23:42.33625+00:00', - }, - __typename: 'NoteTarget', - }, - { - id: '89bb825c-171e-4bcc-9cf7-43448d6fb279t', - createdAt: new Date().toISOString(), - updatedAt: new Date().toISOString(), - personId: '7dfbc3f7-6e5e-4128-957e-8d86808cdf6d', // Jean d'Eau - companyId: null, - targetObjectNameSingular: 'person', - company: null, - person: { - __typename: 'Person', - id: '7dfbc3f7-6e5e-4128-957e-8d86808cdf6d', - name: { - firstName: 'Jean', - lastName: "d'Eau", - }, - avatarUrl: '', - }, - noteId: '89bb825c-171e-4bcc-9cf7-43448d6fb278a', - note: { - __typename: 'Note', - id: '89bb825c-171e-4bcc-9cf7-43448d6fb278a', - createdAt: new Date().toISOString(), - updatedAt: new Date().toISOString(), - }, - __typename: 'NoteTarget', - }, - ] as Array, - __typename: 'Note', - }, -]; diff --git a/packages/twenty-front/src/testing/mock-data/people.ts b/packages/twenty-front/src/testing/mock-data/people.ts deleted file mode 100644 index 353d537028..0000000000 --- a/packages/twenty-front/src/testing/mock-data/people.ts +++ /dev/null @@ -1,1811 +0,0 @@ -import { getRecordsFromRecordConnection } from '@/object-record/cache/utils/getRecordsFromRecordConnection'; -import { type RecordGqlConnectionEdgesRequired } from '@/object-record/graphql/types/RecordGqlConnectionEdgesRequired'; -import { type ObjectRecord } from '@/object-record/types/ObjectRecord'; - -import { type FieldMetadataType } from 'twenty-shared/types'; -import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; - -export const peopleQueryResult = { - people: { - __typename: 'PersonConnection', - totalCount: 16, - pageInfo: { - __typename: 'PageInfo', - hasNextPage: false, - hasPreviousPage: false, - startCursor: - 'WzAsICJkYTNjMmM0Yi1kYTAxLTRiODEtOTczNC0yMjYwNjllYjRjZDAiXQ==', - endCursor: 'WzE1LCAiMjAyMDIwMjAtMmQ0MC00ZTQ5LThkZjQtOWM2YTA0OTE5MWRmIl0=', - }, - edges: [ - { - __typename: 'PersonEdge', - cursor: 'WzAsICJkYTNjMmM0Yi1kYTAxLTRiODEtOTczNC0yMjYwNjllYjRjZDAiXQ==', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:52:46.814Z', - city: 'ASd', - phones: { - primaryPhoneNumber: '781234562', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: 'da3c2c4b-da01-4b81-9734-226069eb4cd0', - jobTitle: '', - position: 0, - email: 'asd.com', - avatarUrl: null, - emails: { - primaryEmail: 'asd.com', - additionalEmails: [], - }, - intro: '', - performanceRating: null, - updatedAt: '2025-01-02T09:52:46.814Z', - whatsapp: { - primaryPhoneNumber: '', - primaryPhoneCountryCode: '', - primaryPhoneCallingCode: '', - additionalPhones: [], - }, - workPreference: null, - name: { - __typename: 'FullName', - firstName: 'Test', - lastName: 'Test', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 1, - id: '20202020-3ec3-4fe3-8997-b76aa0bfa408', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Linkedin', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: 'Eutaw Street', - addressStreet2: null, - addressCity: 'Dublin', - addressState: null, - addressCountry: 'Ireland', - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://linkedin.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - testSelect: { - __typename: 'Select', - value: 'Option 1', - label: 'Option 1', - }, - testMultiSelect: { - __typename: 'MultiSelect', - values: [ - { - __typename: 'Select', - value: 'Option 1', - label: 'Option 1', - }, - ], - }, - testRating: { - __typename: 'Rating', - value: 3, - }, - testJson: { - __typename: 'Json', - value: { - key: 'value', - }, - }, - testActor: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzEsICIyMDIwMjAyMC0xYzBlLTQ5NGMtYTFiNi04NWIxYzZmZWZhYTUiXQ==', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-01T09:50:00.000Z', - city: 'Seattle', - phones: { - primaryPhoneNumber: '781234562', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-1c0e-494c-a1b6-85b1c6fefaa5', - jobTitle: '', - position: 1, - email: 'christoph.calisto@linkedin.com', - avatarUrl: null, - emails: { - primaryEmail: 'christoph.calisto@linkedin.com', - additionalEmails: [], - }, - intro: '', - performanceRating: null, - updatedAt: '2025-01-01T09:50:00.000Z', - whatsapp: { - primaryPhoneNumber: '', - primaryPhoneCountryCode: '', - primaryPhoneCallingCode: '', - additionalPhones: [], - }, - workPreference: null, - name: { - __typename: 'FullName', - firstName: 'Christoph', - lastName: 'Callisto', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - context: null, - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 1, - id: '20202020-3ec3-4fe3-8997-b76aa0bfa408', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Linkedin', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: 'Eutaw Street', - addressStreet2: null, - addressCity: 'Dublin', - addressState: null, - addressCountry: 'Ireland', - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://linkedin.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - testSelect: { - __typename: 'Select', - value: 'Option 1', - label: 'Option 1', - }, - testMultiSelect: { - __typename: 'MultiSelect', - values: [ - { - __typename: 'Select', - value: 'Option 1', - label: 'Option 1', - }, - ], - }, - testRating: { - __typename: 'Rating', - value: 3, - }, - testJson: { - __typename: 'Json', - value: { - key: 'value', - }, - }, - testActor: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzIsICIyMDIwMjAyMC1hYzczLTQ3OTctODI0ZS04N2ExZjVhZWE5ZTAiXQ==', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'Los Angeles', - phones: { - primaryPhoneNumber: '781234576', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-ac73-4797-824e-87a1f5aea9e0', - jobTitle: '', - position: 2, - email: 'sylvie.palmer@linkedin.com', - name: { - __typename: 'FullName', - firstName: 'Sylvie', - lastName: 'Palmer', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 1, - id: '20202020-3ec3-4fe3-8997-b76aa0bfa408', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Linkedin', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: 'Eutaw Street', - addressStreet2: null, - addressCity: 'Dublin', - addressState: null, - addressCountry: 'Ireland', - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://linkedin.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzMsICIyMDIwMjAyMC1mNTE3LTQyZmQtODBhZS0xNDE3M2IzYjcwYWUiXQ==', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'Seattle', - phones: { - primaryPhoneNumber: '781234545', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-f517-42fd-80ae-14173b3b70ae', - jobTitle: '', - position: 3, - email: 'christopher.gonzalez@anthropic.com', - name: { - __typename: 'FullName', - firstName: 'Christopher', - lastName: 'Gonzalez', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 3, - id: '20202020-0713-40a5-8216-82802401d33e', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Anthropic', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: '548 Market Street', - addressStreet2: null, - addressCity: 'San Francisco', - addressState: null, - addressCountry: 'United States', - addressPostcode: '94104', - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://anthropic.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzQsICIyMDIwMjAyMC1lZWUxLTQ2OTAtYWQyYy04NjE5ZTViNTZhMmUiXQ==', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'Los Angeles', - phones: { - primaryPhoneNumber: '781234587', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-eee1-4690-ad2c-8619e5b56a2e', - jobTitle: '', - position: 4, - email: 'ashley.parker@anthropic.com', - name: { - __typename: 'FullName', - firstName: 'Ashley', - lastName: 'Parker', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 3, - id: '20202020-0713-40a5-8216-82802401d33e', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Anthropic', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: '548 Market Street', - addressStreet2: null, - addressCity: 'San Francisco', - addressState: null, - addressCountry: 'United States', - addressPostcode: '94104', - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://anthropic.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzUsICIyMDIwMjAyMC02Nzg0LTQ0NDktYWZkZi1kYzYyY2I4NzAyZjIiXQ==', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'Seattle', - phones: { - primaryPhoneNumber: '781234599', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-6784-4449-afdf-dc62cb8702f2', - jobTitle: '', - position: 5, - email: 'nicholas.wright@microsoft.com', - name: { - __typename: 'FullName', - firstName: 'Nicholas', - lastName: 'Wright', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 4, - id: '20202020-ed89-413a-b31a-962986e67bb4', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Microsoft', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: null, - addressStreet2: null, - addressCity: null, - addressState: null, - addressCountry: null, - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://microsoft.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzYsICIyMDIwMjAyMC00OTBmLTQ0NjYtODM5MS03MzNjZmQ2NmEwYzgiXQ==', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'New York', - phones: { - primaryPhoneNumber: '781234572', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-490f-4466-8391-733cfd66a0c8', - jobTitle: '', - position: 6, - email: 'isabella.scott@microsoft.com', - name: { - __typename: 'FullName', - firstName: 'Isabella', - lastName: 'Scott', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 4, - id: '20202020-ed89-413a-b31a-962986e67bb4', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Microsoft', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: null, - addressStreet2: null, - addressCity: null, - addressState: null, - addressCountry: null, - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://microsoft.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzcsICIyMDIwMjAyMC04MGYxLTRkZmYtYjU3MC1hNzQ5NDI1MjhkZTMiXQ==', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'Seattle', - phones: { - primaryPhoneNumber: '781234582', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-80f1-4dff-b570-a74942528de3', - jobTitle: '', - position: 7, - email: 'matthew.green@microsoft.com', - name: { - __typename: 'FullName', - firstName: 'Matthew', - lastName: 'Green', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 4, - id: '20202020-ed89-413a-b31a-962986e67bb4', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Microsoft', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: null, - addressStreet2: null, - addressCity: null, - addressState: null, - addressCountry: null, - addressPostcode: null, - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://microsoft.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzgsICIyMDIwMjAyMC0zMzhiLTQ2ZGYtODgxMS1mYTA4YzdkMTlkMzUiXQ==', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'New York', - phones: { - primaryPhoneNumber: '781234569', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-338b-46df-8811-fa08c7d19d35', - jobTitle: '', - position: 8, - email: 'elizabeth.baker@airbnb.com', - name: { - __typename: 'FullName', - firstName: 'Elizabeth', - lastName: 'Baker', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 5, - id: '20202020-171e-4bcc-9cf7-43448d6fb278', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Airbnb', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: '888 Brannan St', - addressStreet2: null, - addressCity: 'San Francisco', - addressState: 'CA', - addressCountry: 'United States', - addressPostcode: '94103', - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://airbnb.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzksICIyMDIwMjAyMC02NGFkLTRiMGUtYmJmZC1lOWZkNzk1YjcwMTYiXQ==', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'San Francisco', - phones: { - primaryPhoneNumber: '781234962', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-64ad-4b0e-bbfd-e9fd795b7016', - jobTitle: '', - position: 9, - email: 'christopher.nelson@airbnb.com', - name: { - __typename: 'FullName', - firstName: 'Christopher', - lastName: 'Nelson', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 5, - id: '20202020-171e-4bcc-9cf7-43448d6fb278', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Airbnb', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: '888 Brannan St', - addressStreet2: null, - addressCity: 'San Francisco', - addressState: 'CA', - addressCountry: 'United States', - addressPostcode: '94103', - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://airbnb.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzEwLCAiMjAyMDIwMjAtNWQ1NC00MWI3LWJhMzYtZjBkMjBlMTQxN2FlIl0=', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'New York', - phones: { - primaryPhoneNumber: '781234502', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-5d54-41b7-ba36-f0d20e1417ae', - jobTitle: '', - position: 10, - email: 'avery.carter@airbnb.com', - name: { - __typename: 'FullName', - firstName: 'Avery', - lastName: 'Carter', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 5, - id: '20202020-171e-4bcc-9cf7-43448d6fb278', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Airbnb', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: '888 Brannan St', - addressStreet2: null, - addressCity: 'San Francisco', - addressState: 'CA', - addressCountry: 'United States', - addressPostcode: '94103', - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://airbnb.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzExLCAiMjAyMDIwMjAtNjIzZC00MWZlLTkyZTctZGQ0NWI3YzU2OGUxIl0=', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'Los Angeles', - phones: { - primaryPhoneNumber: '781234563', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-623d-41fe-92e7-dd45b7c568e1', - jobTitle: '', - position: 11, - email: 'ethan.mitchell@google.com', - name: { - __typename: 'FullName', - firstName: 'Ethan', - lastName: 'Mitchell', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 6, - id: '20202020-c21e-4ec2-873b-de4264d89025', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Google', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: '760 Market St', - addressStreet2: 'Floor 10', - addressCity: 'San Francisco', - addressState: null, - addressCountry: 'United States', - addressPostcode: '94102', - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://google.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzEyLCAiMjAyMDIwMjAtMmQ0MC00ZTQ5LThkZjQtOWM2YTA0OTE5MGVmIl0=', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'Seattle', - phones: { - primaryPhoneNumber: '781234542', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-2d40-4e49-8df4-9c6a049190ef', - jobTitle: '', - position: 12, - email: 'madison.perez@google.com', - name: { - __typename: 'FullName', - firstName: 'Madison', - lastName: 'Perez', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 6, - id: '20202020-c21e-4ec2-873b-de4264d89025', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Google', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: '760 Market St', - addressStreet2: 'Floor 10', - addressCity: 'San Francisco', - addressState: null, - addressCountry: 'United States', - addressPostcode: '94102', - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://google.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzEzLCAiMjAyMDIwMjAtMmQ0MC00ZTQ5LThkZjQtOWM2YTA0OTE5MGRmIl0=', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'Seattle', - phones: { - primaryPhoneNumber: '782234562', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-2d40-4e49-8df4-9c6a049190df', - jobTitle: '', - position: 13, - email: 'bertrand.voulzy@google.com', - name: { - __typename: 'FullName', - firstName: 'Bertrand', - lastName: 'Voulzy', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 6, - id: '20202020-c21e-4ec2-873b-de4264d89025', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Google', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: '760 Market St', - addressStreet2: 'Floor 10', - addressCity: 'San Francisco', - addressState: null, - addressCountry: 'United States', - addressPostcode: '94102', - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://google.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzE0LCAiMjAyMDIwMjAtMmQ0MC00ZTQ5LThkZjQtOWM2YTA0OTE5MWRlIl0=', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'Seattle', - phones: { - primaryPhoneNumber: '781274562', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-2d40-4e49-8df4-9c6a049191de', - jobTitle: '', - position: 14, - email: 'louis.duss@google.com', - name: { - __typename: 'FullName', - firstName: 'Louis', - lastName: 'Duss', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 6, - id: '20202020-c21e-4ec2-873b-de4264d89025', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Google', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: '760 Market St', - addressStreet2: 'Floor 10', - addressCity: 'San Francisco', - addressState: null, - addressCountry: 'United States', - addressPostcode: '94102', - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://google.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - { - __typename: 'PersonEdge', - cursor: 'WzE1LCAiMjAyMDIwMjAtMmQ0MC00ZTQ5LThkZjQtOWM2YTA0OTE5MWRmIl0=', - node: { - __typename: 'Person', - deletedAt: null, - createdAt: '2025-01-02T09:48:36.193Z', - city: 'Seattle', - phones: { - primaryPhoneNumber: '781239562', - primaryPhoneCountryCode: 'FR', - primaryPhoneCallingCode: '+33', - additionalPhones: [], - }, - id: '20202020-2d40-4e49-8df4-9c6a049191df', - jobTitle: '', - position: 15, - email: 'lorie.vladim@google.com', - name: { - __typename: 'FullName', - firstName: 'Lorie', - lastName: 'Vladim', - }, - noteTargets: { - __typename: 'NoteTargetConnection', - edges: [], - }, - taskTargets: { - __typename: 'TaskTargetConnection', - edges: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: null, - name: '', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - company: { - __typename: 'Company', - employees: null, - idealCustomerProfile: false, - position: 6, - id: '20202020-c21e-4ec2-873b-de4264d89025', - updatedAt: '2025-01-02T10:48:36.193Z', - accountOwnerId: null, - name: 'Google', - createdAt: '2025-01-02T09:48:36.193Z', - address: { - __typename: 'Address', - addressStreet1: '760 Market St', - addressStreet2: 'Floor 10', - addressCity: 'San Francisco', - addressState: null, - addressCountry: 'United States', - addressPostcode: '94102', - addressLat: null, - addressLng: null, - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://google.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - createdBy: { - __typename: 'Actor', - source: 'MANUAL', - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - name: 'Tim Apple', - }, - xLink: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - }, - }, - }, - ], - }, -} satisfies { people: RecordGqlConnectionEdgesRequired }; - -export const allMockPersonRecords = getRecordsFromRecordConnection({ - recordConnection: peopleQueryResult.people, -}) as ObjectRecord[]; - -export const getPeopleRecordConnectionMock = () => { - const peopleMock = peopleQueryResult.people.edges.map((edge) => edge.node); - - return peopleMock; -}; - -export const getMockPersonObjectMetadataItem = () => { - const personObjectMetadataItem = getMockObjectMetadataItemOrThrow('person'); - - return personObjectMetadataItem; -}; - -export const getMockPersonFieldMetadataItem = ( - fieldMetadataType: FieldMetadataType, - objectMetadataItem = getMockPersonObjectMetadataItem(), -) => { - const result = objectMetadataItem.fields.find( - (field) => field.type === fieldMetadataType, - ); - if (!result) { - throw new Error( - `Person fieldmetadata item type ${fieldMetadataType} not found`, - ); - } - - return result; -}; - -export const getMockPersonRecord = ( - overrides?: Partial, - index = 0, -) => { - return { - ...allMockPersonRecords[index], - ...overrides, - }; -}; - -export const mockedEmptyPersonData = { - id: 'ce7f0a37-88d7-4cd8-8b41-6721c57195b5', - firstName: '', - lastName: '', - phone: null, - email: null, - city: null, - createdBy: null, - displayName: null, - avatarUrl: null, - createdAt: null, - jobTitle: null, - linkedinUrl: null, - xUrl: null, - _activityCount: null, - company: null, - deletedAt: null, - __typename: 'Person', -}; diff --git a/packages/twenty-front/src/testing/mock-data/roles.ts b/packages/twenty-front/src/testing/mock-data/roles.ts deleted file mode 100644 index 75739e638d..0000000000 --- a/packages/twenty-front/src/testing/mock-data/roles.ts +++ /dev/null @@ -1,82 +0,0 @@ -import { PermissionFlagType, type Role } from '~/generated-metadata/graphql'; -import { mockWorkspaceMembers } from '~/testing/mock-data/workspace-members'; - -const rolesMock: Role[] = [ - { - __typename: 'Role', - id: '1', - label: 'Admin', - description: 'Full access to all workspace features and settings', - icon: 'IconSettings', - canDestroyAllObjectRecords: true, - canReadAllObjectRecords: true, - canSoftDeleteAllObjectRecords: true, - canUpdateAllObjectRecords: true, - canUpdateAllSettings: true, - canAccessAllTools: true, - isEditable: false, - canBeAssignedToUsers: true, - canBeAssignedToAgents: true, - canBeAssignedToApiKeys: true, - agents: [], - apiKeys: [], - workspaceMembers: [mockWorkspaceMembers[0]], - permissionFlags: [ - { - __typename: 'PermissionFlag', - id: '94257a55-3211-489c-92d3-9e68061da400', - flag: PermissionFlagType.WORKSPACE_MEMBERS, - roleId: '1', - }, - ], - objectPermissions: [ - { - __typename: 'ObjectPermission', - objectMetadataId: 'fac890af-68c5-4718-a16b-7401b1868429', - canReadObjectRecords: true, - canUpdateObjectRecords: true, - canSoftDeleteObjectRecords: true, - canDestroyObjectRecords: true, - }, - ], - rowLevelPermissionPredicateGroups: [], - rowLevelPermissionPredicates: [], - }, - { - __typename: 'Role', - id: '2', - label: 'Guest', - description: 'Limited access with read-only permissions', - icon: 'IconUser', - canDestroyAllObjectRecords: false, - canReadAllObjectRecords: false, - canSoftDeleteAllObjectRecords: false, - canUpdateAllObjectRecords: false, - canUpdateAllSettings: false, - canAccessAllTools: false, - isEditable: true, - canBeAssignedToUsers: true, - canBeAssignedToAgents: true, - canBeAssignedToApiKeys: true, - agents: [], - apiKeys: [], - workspaceMembers: [mockWorkspaceMembers[1]], - permissionFlags: [], - objectPermissions: [ - { - __typename: 'ObjectPermission', - objectMetadataId: 'fac890af-68c5-4718-a16b-7401b1868429', - canReadObjectRecords: false, - canUpdateObjectRecords: false, - canSoftDeleteObjectRecords: false, - canDestroyObjectRecords: false, - }, - ], - rowLevelPermissionPredicateGroups: [], - rowLevelPermissionPredicates: [], - }, -]; - -export const getRolesMock = () => { - return rolesMock; -}; diff --git a/packages/twenty-front/src/testing/mock-data/tasks.ts b/packages/twenty-front/src/testing/mock-data/tasks.ts deleted file mode 100644 index fa21212f03..0000000000 --- a/packages/twenty-front/src/testing/mock-data/tasks.ts +++ /dev/null @@ -1,90 +0,0 @@ -import { type Task } from '@/activities/types/Task'; -import { type TaskTarget } from '@/activities/types/TaskTarget'; -import { type WorkspaceMember } from '@/workspace-member/types/WorkspaceMember'; - -type MockedTask = Task & { __typename?: string }; - -const workspaceMember: WorkspaceMember = { - __typename: 'WorkspaceMember', - id: '374fe3a5-df1e-4119-afe0-2a62a2ba481e', - name: { - firstName: 'Charles', - lastName: 'Test', - }, - avatarUrl: '', - locale: 'en', - createdAt: '2023-04-26T10:23:42.33625+00:00', - updatedAt: '2023-04-26T10:23:42.33625+00:00', - userId: 'e2409670-1088-46b4-858e-f20a598d9d0f', - userEmail: 'charles@test.com', - colorScheme: 'Light', -}; - -export const mockedTasks: Array = [ - { - id: '3ecaa1be-aac7-463a-a38e-64078dd451d5', - createdAt: '2023-04-26T10:12:42.33625+00:00', - updatedAt: '2023-04-26T10:23:42.33625+00:00', - title: 'My very first task', - bodyV2: { - blocknote: null, - markdown: null, - }, - dueAt: '2023-04-26T10:12:42.33625+00:00', - status: 'TODO', - assignee: workspaceMember, - assigneeId: workspaceMember.id, - taskTargets: [ - { - id: '89bb825c-171e-4bcc-9cf7-43448d6fb300', - createdAt: '2023-04-26T10:12:42.33625+00:00', - updatedAt: '2023-04-26T10:23:42.33625+00:00', - targetObjectNameSingular: 'company', - personId: null, - companyId: '89bb825c-171e-4bcc-9cf7-43448d6fb280', - company: { - __typename: 'Company', - id: '89bb825c-171e-4bcc-9cf7-43448d6fb280', - name: 'Airbnb', - domainName: { - primaryLinkLabel: '', - primaryLinkUrl: 'https://www.airbnb.com', - }, - }, - person: null, - taskId: '89bb825c-171e-4bcc-9cf7-43448d6fb230', - task: { - __typename: 'Task', - id: '89bb825c-171e-4bcc-9cf7-43448d6fb230', - createdAt: '2023-04-26T10:12:42.33625+00:00', - updatedAt: '2023-04-26T10:23:42.33625+00:00', - }, - __typename: 'TaskTarget', - }, - { - id: '89bb825c-171e-4bcc-9cf7-43448d6fb301', - createdAt: new Date().toISOString(), - updatedAt: new Date().toISOString(), - targetObjectNameSingular: 'company', - personId: null, - companyId: 'b396e6b9-dc5c-4643-bcff-61b6cf7523ae', - company: { - __typename: 'Company', - id: '89bb825c-171e-4bcc-9cf7-43448d6fb278', - name: 'Aircall', - domainName: 'aircall.io', - }, - person: null, - taskId: 'b396e6b9-dc5c-4643-bcff-61b6cf7523ae', - task: { - __typename: 'Task', - id: '89bb825c-171e-4bcc-9cf7-43448d6fb231', - createdAt: new Date().toISOString(), - updatedAt: new Date().toISOString(), - }, - __typename: 'TaskTarget', - }, - ] as Array, - __typename: 'Task', - }, -]; diff --git a/packages/twenty-front/src/testing/mock-data/timeline-activities.ts b/packages/twenty-front/src/testing/mock-data/timeline-activities.ts deleted file mode 100644 index e633896c3a..0000000000 --- a/packages/twenty-front/src/testing/mock-data/timeline-activities.ts +++ /dev/null @@ -1,142 +0,0 @@ -import { type TimelineActivity } from '@/activities/timeline-activities/types/TimelineActivity'; - -export const mockedTimelineActivities: Array = [ - { - properties: null, - updatedAt: '2023-04-26T10:12:42.33625+00:00', - id: '79f84835-b2f9-4ab5-8ab9-17dbcc45dda3', - linkedObjectMetadataId: 'e7a5e974-affc-40d5-be9f-2ba2783c21be', - linkedRecordCachedName: '', - linkedRecordId: 'ce40eca0-8f4b-4bba-ba91-5cbd870c64d3', - name: 'calendarEvent.linked', - createdAt: '2023-04-26T10:12:42.33625+00:00', - workspaceMember: { - __typename: 'WorkspaceMember', - id: '20202020-0687-4c41-b707-ed1bfca972a7', - avatarUrl: '', - locale: 'en', - name: { - __typename: 'FullName', - firstName: 'Tim', - lastName: 'Apple', - }, - userEmail: 'tim@apple.com', - colorScheme: 'Light', - }, - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - deletedAt: null, - __typename: 'TimelineActivity', - }, - { - properties: null, - updatedAt: '2023-04-26T10:12:42.33625+00:00', - id: '79f84835-b2f9-4ab5-8ab9-17dbcc45dda3', - linkedObjectMetadataId: '3385d352-10a0-428f-9863-e52e7164b26c', - linkedRecordCachedName: '', - linkedRecordId: 'ce40eca0-8f4b-4bba-ba91-5cbd870c64d5', - name: 'message.linked', - createdAt: '2023-04-26T10:12:42.33625+00:00', - workspaceMember: { - __typename: 'WorkspaceMember', - id: '20202020-0687-4c41-b707-ed1bfca972a7', - avatarUrl: '', - locale: 'en', - name: { - __typename: 'FullName', - firstName: 'Tim', - lastName: 'Apple', - }, - userEmail: 'tim@apple.com', - colorScheme: 'Light', - }, - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - deletedAt: null, - __typename: 'TimelineActivity', - }, - { - properties: null, - updatedAt: '2023-04-26T10:12:42.33625+00:00', - id: '79f84835-b2f9-4ab5-8ab9-17dbcc45dda3', - linkedObjectMetadataId: '25e10253-f0e1-4a6d-90e3-ad62a4b20292', - linkedRecordCachedName: 'New Task', - linkedRecordId: 'ce40eca0-8f4b-4bba-ba91-5cbd870c64d2', - name: 'linked-task.created', - createdAt: '2023-04-26T10:12:42.33625+00:00', - workspaceMember: { - __typename: 'WorkspaceMember', - id: '20202020-0687-4c41-b707-ed1bfca972a7', - avatarUrl: '', - locale: 'en', - name: { - __typename: 'FullName', - firstName: 'Tim', - lastName: 'Apple', - }, - userEmail: 'tim@apple.com', - colorScheme: 'Light', - }, - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - deletedAt: null, - __typename: 'TimelineActivity', - }, - { - properties: { - diff: { - address: { - after: 'TEST', - before: '', - }, - }, - }, - updatedAt: '2023-04-26T10:12:42.33625+00:00', - id: '79f84835-b2f9-4ab5-8ab9-17dbcc45dda3', - linkedObjectMetadataId: '1ad72a42-6ab4-4474-a62a-a57cae3c0298', - linkedRecordCachedName: 'Test', - linkedRecordId: 'ce40eca0-8f4b-4bba-ba91-5cbd870c64d0', - name: 'company.updated', - createdAt: '2023-04-26T10:12:42.33625+00:00', - workspaceMember: { - __typename: 'WorkspaceMember', - id: '20202020-463f-435b-828c-107e007a2711', - avatarUrl: '', - locale: 'en', - name: { - __typename: 'FullName', - firstName: 'Jane', - lastName: 'Doe', - }, - userEmail: 'jane@doe.com', - colorScheme: 'Light', - }, - workspaceMemberId: '20202020-463f-435b-828c-107e007a2711', - deletedAt: null, - __typename: 'TimelineActivity', - }, - { - properties: - '{"after": {"id": "ce40eca0-8f4b-4bba-ba91-5cbd870c64d0", "name": "", "xLink": {"primaryLinkUrl": "", "primaryLinkLabel": ""}, "events": {"edges": [], "__typename": "eventConnection"}, "people": {"edges": [], "__typename": "personConnection"}, "address": "", "position": 0.5, "createdAt": "2024-03-24T21:33:45.765295", "employees": null, "favorites": {"edges": [], "__typename": "favoriteConnection"}, "updatedAt": "2024-03-24T21:33:45.765295", "__typename": "company", "domainName": "", "attachments": {"edges": [], "__typename": "attachmentConnection"}, "accountOwner": null, "linkedinLink": {"url": "", "label": ""}, "opportunities": {"edges": [], "__typename": "opportunityConnection"}, "accountOwnerId": null, "activityTargets": {"edges": [], "__typename": "activityTargetConnection"}, "idealCustomerProfile": false, "annualRecurringRevenue": {"amountMicros": null, "currencyCode": ""}}}', - updatedAt: '2023-05-26T10:12:42.33625+00:00', - id: '1ad72a42-6ab4-4474-a62a-a57cae3c0298', - name: 'company.created', - linkedObjectMetadataId: '1ad72a42-6ab4-4474-a62a-a57cae3c0298', - linkedRecordCachedName: 'Test', - linkedRecordId: 'ce40eca0-8f4b-4bba-ba91-5cbd870c64d0', - createdAt: '2022-05-26T10:12:42.33625+00:00', - workspaceMember: { - __typename: 'WorkspaceMember', - id: '20202020-0687-4c41-b707-ed1bfca972a7', - avatarUrl: '', - locale: 'en', - name: { - __typename: 'FullName', - firstName: 'Tim', - lastName: 'Apple', - }, - userEmail: 'tim@apple.com', - colorScheme: 'Light', - }, - workspaceMemberId: '20202020-0687-4c41-b707-ed1bfca972a7', - deletedAt: null, - __typename: 'TimelineActivity', - }, -]; diff --git a/packages/twenty-front/src/testing/utils/generateMockRecord.ts b/packages/twenty-front/src/testing/utils/generateMockRecord.ts new file mode 100644 index 0000000000..55ff77e1f2 --- /dev/null +++ b/packages/twenty-front/src/testing/utils/generateMockRecord.ts @@ -0,0 +1,16 @@ +import { type ObjectRecord } from '@/object-record/types/ObjectRecord'; +import { prefillRecord } from '@/object-record/utils/prefillRecord'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; + +export const generateMockRecord = ({ + objectNameSingular, + input, +}: { + objectNameSingular: string; + input: Record; +}): ObjectRecord => { + const objectMetadataItem = + getMockObjectMetadataItemOrThrow(objectNameSingular); + + return prefillRecord({ objectMetadataItem, input }); +}; diff --git a/packages/twenty-front/src/testing/utils/generateMockRecordConnection.ts b/packages/twenty-front/src/testing/utils/generateMockRecordConnection.ts index 18957d860e..782a512ff4 100644 --- a/packages/twenty-front/src/testing/utils/generateMockRecordConnection.ts +++ b/packages/twenty-front/src/testing/utils/generateMockRecordConnection.ts @@ -1,7 +1,7 @@ import { getRecordConnectionFromRecords } from '@/object-record/cache/utils/getRecordConnectionFromRecords'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; -import { generateMockRecord } from '~/testing/utils/generateMockRecordNode'; +import { generateMockRecord } from '~/testing/utils/generateMockRecord'; export const generateMockRecordConnection = ({ objectNameSingular, diff --git a/packages/twenty-front/src/testing/utils/generateMockRecordNode.ts b/packages/twenty-front/src/testing/utils/generateMockRecordNode.ts index 6fa4d5f012..569171aac5 100644 --- a/packages/twenty-front/src/testing/utils/generateMockRecordNode.ts +++ b/packages/twenty-front/src/testing/utils/generateMockRecordNode.ts @@ -1,23 +1,9 @@ import { getRecordNodeFromRecord } from '@/object-record/cache/utils/getRecordNodeFromRecord'; import { generateDepthRecordGqlFieldsFromObject } from '@/object-record/graphql/record-gql-fields/utils/generateDepthRecordGqlFieldsFromObject'; -import { type ObjectRecord } from '@/object-record/types/ObjectRecord'; -import { prefillRecord } from '@/object-record/utils/prefillRecord'; +import { generateMockRecord } from '~/testing/utils/generateMockRecord'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; -export const generateMockRecord = ({ - objectNameSingular, - input, -}: { - objectNameSingular: string; - input: Record; -}): ObjectRecord => { - const objectMetadataItem = - getMockObjectMetadataItemOrThrow(objectNameSingular); - - return prefillRecord({ objectMetadataItem, input }); -}; - export const generateMockRecordNode = ({ objectNameSingular, input, diff --git a/packages/twenty-front/src/testing/utils/generatedMockObjectMetadataItems.ts b/packages/twenty-front/src/testing/utils/generatedMockObjectMetadataItems.ts index 88f64b5c79..9ca056e6ef 100644 --- a/packages/twenty-front/src/testing/utils/generatedMockObjectMetadataItems.ts +++ b/packages/twenty-front/src/testing/utils/generatedMockObjectMetadataItems.ts @@ -1,34 +1,15 @@ -import { type FieldMetadataItem } from '@/object-metadata/types/FieldMetadataItem'; import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem'; -import { objectMetadataItemSchema } from '@/object-metadata/validation-schemas/objectMetadataItemSchema'; +import { enrichObjectMetadataItemsWithPermissions } from '@/object-metadata/utils/enrichObjectMetadataItemsWithPermissions'; +import { mapPaginatedObjectMetadataItemsToObjectMetadataItems } from '@/object-metadata/utils/mapPaginatedObjectMetadataItemsToObjectMetadataItems'; +import { type ObjectMetadataItemsQuery } from '~/generated-metadata/graphql'; import { mockedStandardObjectMetadataQueryResult } from '~/testing/mock-data/generated/metadata/objects/mock-objects-metadata'; export const generatedMockObjectMetadataItems: ObjectMetadataItem[] = - mockedStandardObjectMetadataQueryResult.objects.edges.map((edge) => { - const labelIdentifierFieldMetadataId = - objectMetadataItemSchema.shape.labelIdentifierFieldMetadataId.parse( - edge.node.labelIdentifierFieldMetadataId, - ); - - const { fieldsList, indexMetadataList, ...objectWithoutFieldsList } = - edge.node; - - const fields = fieldsList.map( - (field) => field as unknown as FieldMetadataItem, - ); - - return { - ...objectWithoutFieldsList, - fields, - readableFields: fields, - updatableFields: fields, - labelIdentifierFieldMetadataId, - indexMetadatas: indexMetadataList.map( - ({ indexFieldMetadataList, ...index }) => ({ - ...index, - indexFieldMetadatas: indexFieldMetadataList, - }), - ), - }; + enrichObjectMetadataItemsWithPermissions({ + objectMetadataItems: mapPaginatedObjectMetadataItemsToObjectMetadataItems({ + pagedObjectMetadataItems: + mockedStandardObjectMetadataQueryResult as unknown as ObjectMetadataItemsQuery, + }), + objectPermissionsByObjectMetadataId: {}, });