From 8a7a19f31258183b5f1646e96730be2a2c71fce0 Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Thu, 26 Feb 2026 14:31:54 +0100 Subject: [PATCH] Improve test tooling (#18259) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Unifies test mocking tooling across Jest and Storybook, replaces handcrafted mock data with auto-generated server-fetched data, and restructures the mock data generation script for maintainability. ### Mock data generation - Split `generate-mock-data.ts` into three focused modules under `scripts/mock-data/`: - `utils.ts` — shared authentication, GraphQL client, and file writer - `generate-metadata.ts` — fetches object metadata from `/metadata` - `generate-record-data.ts` — fetches record data from `/graphql` using metadata-driven dynamic queries - The orchestrator (`generate-mock-data.ts`) authenticates once and passes the token to both generators - Company records are now fetched from the actual server (limited to 10 records) instead of being handcrafted - Generated files are organized under `generated/metadata/objects/` and `generated/data/companies/` ### Unified test utilities - Consolidated Jest and MSW mocking into shared utilities that compose production code (`prefillRecord`, `getRecordNodeFromRecord`, `getRecordConnectionFromRecords`) with mock metadata - Renamed `generateEmptyJestRecordNode` → `generateMockRecordNode` and moved to `testing/utils/` - Extracted `generateMockRecordConnection` into its own file - Removed `sanitizeInputForPrefill` workaround (no longer needed with correctly shaped generated data) --- packages/twenty-front/.prettierignore | 3 +- .../twenty-front/.storybook/vitest.setup.ts | 4 + packages/twenty-front/project.json | 2 +- .../scripts/generate-mock-data.ts | 278 +- .../scripts/mock-data/generate-metadata.ts | 160 + .../scripts/mock-data/generate-record-data.ts | 85 + .../twenty-front/scripts/mock-data/utils.ts | 134 + .../useEmailThreadInCommandMenu.test.tsx | 10 +- .../useFindManyObjectMetadataItems.ts | 2 +- .../hooks/useLoadMockedObjectMetadataItems.ts | 5 +- .../utils/mapFieldMetadataToGraphQLQuery.ts | 7 +- ...nerateActivityTargetGqlFields.test.ts.snap | 2 +- .../hooks/__tests__/useFindOneRecord.test.tsx | 4 +- .../__tests__/useToggleEditOnlyInput.test.tsx | 4 +- .../RelationManyToOneFieldInput.stories.tsx | 27 +- .../RelationOneToManyFieldInput.stories.tsx | 17 +- ...omputeViewRecordGqlOperationFilter.test.ts | 4 +- ...RecordIndexFiltersToContextStoreEffect.tsx | 17 +- .../useMultipleRecordPickerPerformSearch.ts | 4 + .../__stories__/RecordTable.stories.tsx | 11 +- .../SignInBackgroundMockColumnDefinitions.ts | 4 +- .../layout/page/components/DefaultLayout.tsx | 12 +- .../src/pages/not-found/NotFound.tsx | 12 +- .../decorators/WorkflowStepDecorator.tsx | 116 +- .../twenty-front/src/testing/graphqlMocks.ts | 190 +- .../src/testing/mock-data/companies.ts | 794 +- .../src/testing/mock-data/favorite.ts | 6 +- .../data/companies/mock-companies-data.ts | 2165 + .../objects/mock-objects-metadata.ts} | 40409 ++++++++-------- .../src/testing/mock-data/workflow.ts | 50 +- .../utils/generateMockRecordConnection.ts | 28 + .../generateMockRecordNode.ts} | 43 +- .../utils/generatedMockObjectMetadataItems.ts | 2 +- 33 files changed, 23068 insertions(+), 21543 deletions(-) create mode 100644 packages/twenty-front/scripts/mock-data/generate-metadata.ts create mode 100644 packages/twenty-front/scripts/mock-data/generate-record-data.ts create mode 100644 packages/twenty-front/scripts/mock-data/utils.ts create mode 100644 packages/twenty-front/src/testing/mock-data/generated/data/companies/mock-companies-data.ts rename packages/twenty-front/src/testing/mock-data/generated/{mock-metadata-query-result.ts => metadata/objects/mock-objects-metadata.ts} (74%) create mode 100644 packages/twenty-front/src/testing/utils/generateMockRecordConnection.ts rename packages/twenty-front/src/testing/{jest/generateEmptyJestRecordNode.ts => utils/generateMockRecordNode.ts} (65%) diff --git a/packages/twenty-front/.prettierignore b/packages/twenty-front/.prettierignore index 119b3bd008..3cd786f417 100644 --- a/packages/twenty-front/.prettierignore +++ b/packages/twenty-front/.prettierignore @@ -1,2 +1,3 @@ src/generated -src/generated-metadata \ No newline at end of file +src/generated-metadata +src/testing/mock-data/generated \ No newline at end of file diff --git a/packages/twenty-front/.storybook/vitest.setup.ts b/packages/twenty-front/.storybook/vitest.setup.ts index b5c33e4c70..d950bb48cd 100644 --- a/packages/twenty-front/.storybook/vitest.setup.ts +++ b/packages/twenty-front/.storybook/vitest.setup.ts @@ -1,6 +1,10 @@ import { setProjectAnnotations } from '@storybook/react-vite'; import * as projectAnnotations from './preview'; +// Pre-warm the dynamic import used by WorkflowStepDecorator so the +// module is cached before any test runs (avoids flaky timeouts in CI). +import('~/testing/utils/generatedMockObjectMetadataItems'); + // This is an important step to apply the right configuration when testing your stories. // More info at: https://storybook.js.org/docs/api/portable-stories/portable-stories-vitest#setprojectannotations setProjectAnnotations([projectAnnotations]); diff --git a/packages/twenty-front/project.json b/packages/twenty-front/project.json index 425e017ff5..2f504e9267 100644 --- a/packages/twenty-front/project.json +++ b/packages/twenty-front/project.json @@ -259,7 +259,7 @@ "executor": "nx:run-commands", "options": { "cwd": "{projectRoot}", - "command": "dotenv npx tsx scripts/generate-mock-data.ts" + "command": "dotenv npx vite-node scripts/generate-mock-data.ts" } }, "chromatic": { diff --git a/packages/twenty-front/scripts/generate-mock-data.ts b/packages/twenty-front/scripts/generate-mock-data.ts index 8507c5a352..7f0ff34d7b 100644 --- a/packages/twenty-front/scripts/generate-mock-data.ts +++ b/packages/twenty-front/scripts/generate-mock-data.ts @@ -1,281 +1,15 @@ /* eslint-disable no-console */ -import * as fs from 'fs'; -import * as path from 'path'; -import { fileURLToPath } from 'url'; - -process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'; - -const SERVER_BASE_URL = - process.env.REACT_APP_SERVER_BASE_URL ?? 'http://localhost:3000'; -const AUTH_EMAIL = 'tim@apple.dev'; -const AUTH_PASSWORD = 'tim@apple.dev'; -const WORKSPACE_SUBDOMAIN = 'apple'; - -const serverUrl = new URL(SERVER_BASE_URL); -const WORKSPACE_ORIGIN = `${serverUrl.protocol}//${WORKSPACE_SUBDOMAIN}.${serverUrl.host}`; - -const currentDir = path.dirname(fileURLToPath(import.meta.url)); - -const OUTPUT_DIR = path.resolve( - currentDir, - '../src/testing/mock-data/generated', -); - -const graphqlRequest = async ( - endpoint: string, - query: string, - token?: string, -): Promise => { - const headers: Record = { - 'Content-Type': 'application/json', - Origin: WORKSPACE_ORIGIN, - }; - - if (token !== undefined) { - headers['Authorization'] = `Bearer ${token}`; - } - - const response = await fetch(`${SERVER_BASE_URL}${endpoint}`, { - method: 'POST', - headers, - body: JSON.stringify({ query }), - }); - - const json = (await response.json()) as { - data?: unknown; - errors?: { message: string }[]; - }; - - if ( - json.errors !== undefined && - json.errors !== null && - json.errors.length > 0 - ) { - const errorDetails = json.errors.map((error) => error.message).join(', '); - throw new Error(`GraphQL error on ${endpoint}: ${errorDetails}`); - } - - return json.data; -}; - -const authenticate = async (): Promise => { - console.log( - `Authenticating as ${AUTH_EMAIL} on workspace ${WORKSPACE_SUBDOMAIN}...`, - ); - - const loginData = (await graphqlRequest( - '/metadata', - `mutation GetLoginTokenFromCredentials { - getLoginTokenFromCredentials( - email: "${AUTH_EMAIL}", - password: "${AUTH_PASSWORD}", - origin: "${WORKSPACE_ORIGIN}" - ) { - loginToken { token } - } - }`, - )) as { - getLoginTokenFromCredentials: { loginToken: { token: string } }; - }; - - const loginToken = loginData.getLoginTokenFromCredentials.loginToken.token; - - const authData = (await graphqlRequest( - '/metadata', - `mutation GetAuthTokensFromLoginToken { - getAuthTokensFromLoginToken( - loginToken: "${loginToken}", - origin: "${WORKSPACE_ORIGIN}" - ) { - tokens { - accessOrWorkspaceAgnosticToken { token } - } - } - }`, - )) as { - getAuthTokensFromLoginToken: { - tokens: { accessOrWorkspaceAgnosticToken: { token: string } }; - }; - }; - - const accessToken = - authData.getAuthTokensFromLoginToken.tokens.accessOrWorkspaceAgnosticToken - .token; - - console.log('Authenticated successfully.'); - return accessToken; -}; - -// Apollo Client automatically adds __typename to every object level; -// raw fetch does not, so we include it explicitly here. -const METADATA_QUERY = ` - query ObjectMetadataItems { - objects(paging: { first: 1000 }) { - __typename - edges { - __typename - node { - __typename - id - universalIdentifier - nameSingular - namePlural - labelSingular - labelPlural - description - icon - isCustom - isRemote - isActive - isSystem - isUIReadOnly - createdAt - updatedAt - labelIdentifierFieldMetadataId - imageIdentifierFieldMetadataId - applicationId - shortcut - isLabelSyncedWithName - isSearchable - duplicateCriteria - indexMetadataList { - __typename - id - createdAt - updatedAt - name - indexWhereClause - indexType - isUnique - isCustom - indexFieldMetadataList { - __typename - id - fieldMetadataId - createdAt - updatedAt - order - } - } - fieldsList { - __typename - id - universalIdentifier - type - name - label - description - icon - isCustom - isActive - isSystem - isUIReadOnly - isNullable - isUnique - createdAt - updatedAt - defaultValue - options - settings - isLabelSyncedWithName - morphId - applicationId - relation { - __typename - type - sourceObjectMetadata { - __typename - id - nameSingular - namePlural - } - targetObjectMetadata { - __typename - id - nameSingular - namePlural - } - sourceFieldMetadata { - __typename - id - name - } - targetFieldMetadata { - __typename - id - name - } - } - morphRelations { - __typename - type - sourceObjectMetadata { - __typename - id - nameSingular - namePlural - } - targetObjectMetadata { - __typename - id - nameSingular - namePlural - } - sourceFieldMetadata { - __typename - id - name - } - targetFieldMetadata { - __typename - id - name - } - } - } - } - } - pageInfo { - __typename - hasNextPage - hasPreviousPage - startCursor - endCursor - } - } - } -`; +import { generateMetadata } from './mock-data/generate-metadata.js'; +import { generateRecordData } from './mock-data/generate-record-data.js'; +import { authenticate } from './mock-data/utils.js'; const main = async () => { - console.log(`Server: ${SERVER_BASE_URL}`); - console.log(`Output: ${OUTPUT_DIR}`); - console.log(''); - const token = await authenticate(); - console.log('Fetching object metadata from /metadata ...'); - const metadata = await graphqlRequest('/metadata', METADATA_QUERY, token); + const metadata = await generateMetadata(token); + await generateRecordData(token, metadata); - fs.mkdirSync(OUTPUT_DIR, { recursive: true }); - - const filePath = path.join(OUTPUT_DIR, 'mock-metadata-query-result.ts'); - const content = [ - '/* eslint-disable */', - '// @ts-nocheck', - "import { ObjectMetadataItemsQuery } from '~/generated-metadata/graphql';", - '', - '// This file was automatically generated by scripts/generate-mock-data.ts', - '// Do not edit this file manually.', - '', - '// prettier-ignore', - 'export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery =', - JSON.stringify(metadata, null, 2) + ';', - '', - ].join('\n'); - - fs.writeFileSync(filePath, content, 'utf-8'); - console.log(`Written: ${filePath}`); - console.log('Done!'); + console.log('All mock data generated!'); }; main().catch((error) => { diff --git a/packages/twenty-front/scripts/mock-data/generate-metadata.ts b/packages/twenty-front/scripts/mock-data/generate-metadata.ts new file mode 100644 index 0000000000..9c2a1b9ff1 --- /dev/null +++ b/packages/twenty-front/scripts/mock-data/generate-metadata.ts @@ -0,0 +1,160 @@ +/* eslint-disable no-console */ +import { graphqlRequest, writeGeneratedFile } from './utils.js'; + +// Apollo Client automatically adds __typename to every object level; +// raw fetch does not, so we include it explicitly here. +const METADATA_QUERY = ` + query ObjectMetadataItems { + objects(paging: { first: 1000 }) { + __typename + edges { + __typename + node { + __typename + id + universalIdentifier + nameSingular + namePlural + labelSingular + labelPlural + description + icon + isCustom + isRemote + isActive + isSystem + isUIReadOnly + createdAt + updatedAt + labelIdentifierFieldMetadataId + imageIdentifierFieldMetadataId + applicationId + shortcut + isLabelSyncedWithName + isSearchable + duplicateCriteria + indexMetadataList { + __typename + id + createdAt + updatedAt + name + indexWhereClause + indexType + isUnique + isCustom + indexFieldMetadataList { + __typename + id + fieldMetadataId + createdAt + updatedAt + order + } + } + fieldsList { + __typename + id + universalIdentifier + type + name + label + description + icon + isCustom + isActive + isSystem + isUIReadOnly + isNullable + isUnique + createdAt + updatedAt + defaultValue + options + settings + isLabelSyncedWithName + morphId + applicationId + relation { + __typename + type + sourceObjectMetadata { + __typename + id + nameSingular + namePlural + } + targetObjectMetadata { + __typename + id + nameSingular + namePlural + } + sourceFieldMetadata { + __typename + id + name + } + targetFieldMetadata { + __typename + id + name + } + } + morphRelations { + __typename + type + sourceObjectMetadata { + __typename + id + nameSingular + namePlural + } + targetObjectMetadata { + __typename + id + nameSingular + namePlural + } + sourceFieldMetadata { + __typename + id + name + } + targetFieldMetadata { + __typename + id + name + } + } + } + } + } + pageInfo { + __typename + hasNextPage + hasPreviousPage + startCursor + endCursor + } + } + } +`; + +export const generateMetadata = async (token: string) => { + console.log('Fetching object metadata from /metadata ...'); + + const metadata = await graphqlRequest('/metadata', METADATA_QUERY, token); + + writeGeneratedFile( + 'metadata/objects/mock-objects-metadata.ts', + 'mockedStandardObjectMetadataQueryResult', + 'ObjectMetadataItemsQuery', + "import { ObjectMetadataItemsQuery } from '~/generated-metadata/graphql';", + metadata, + ); + + return metadata as { + objects: { edges: { node: Record }[] }; + }; +}; diff --git a/packages/twenty-front/scripts/mock-data/generate-record-data.ts b/packages/twenty-front/scripts/mock-data/generate-record-data.ts new file mode 100644 index 0000000000..601b81bbe1 --- /dev/null +++ b/packages/twenty-front/scripts/mock-data/generate-record-data.ts @@ -0,0 +1,85 @@ +/* eslint-disable no-console */ +import { print } from 'graphql'; + +import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem'; +import { generateDepthRecordGqlFieldsFromObject } from '@/object-record/graphql/record-gql-fields/utils/generateDepthRecordGqlFieldsFromObject'; +import { generateFindManyRecordsQuery } from '@/object-record/utils/generateFindManyRecordsQuery'; + +import { graphqlRequest, writeGeneratedFile } from './utils.js'; + +const RECORDS_LIMIT = 10; + +// 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 => + query.replace(/\{(?!\s*__typename\b)/g, '{\n__typename'); + +const toObjectMetadataItems = (rawMetadata: { + objects: { edges: { node: Record }[] }; +}): ObjectMetadataItem[] => + rawMetadata.objects.edges.map((edge) => { + const { fieldsList, indexMetadataList, ...rest } = edge.node; + + return { + ...rest, + fields: fieldsList, + readableFields: fieldsList, + updatableFields: fieldsList, + indexMetadatas: ((indexMetadataList as unknown[]) ?? []).map( + (index: any) => ({ + ...index, + indexFieldMetadatas: index.indexFieldMetadataList ?? [], + }), + ), + } as unknown as ObjectMetadataItem; + }); + +export const generateRecordData = async ( + token: string, + rawMetadata: { objects: { edges: { node: Record }[] } }, +) => { + const objectMetadataItems = toObjectMetadataItems(rawMetadata); + + const companyObject = objectMetadataItems.find( + (item) => item.nameSingular === 'company', + ); + + if (!companyObject) { + throw new Error('Company object metadata not found'); + } + + const recordGqlFields = generateDepthRecordGqlFieldsFromObject({ + objectMetadataItems, + objectMetadataItem: companyObject, + depth: 1, + }); + + const queryDocument = generateFindManyRecordsQuery({ + objectMetadataItem: companyObject, + objectMetadataItems, + recordGqlFields, + objectPermissionsByObjectMetadataId: {}, + }); + + const query = addTypenamesToSelections(print(queryDocument)); + + console.log( + `Fetching ${companyObject.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); + + console.log(` Got ${records.length} ${companyObject.namePlural}.`); + + writeGeneratedFile( + 'data/companies/mock-companies-data.ts', + 'mockedCompanyRecords', + 'Record[]', + '', + records, + ); +}; diff --git a/packages/twenty-front/scripts/mock-data/utils.ts b/packages/twenty-front/scripts/mock-data/utils.ts new file mode 100644 index 0000000000..0d56666ed9 --- /dev/null +++ b/packages/twenty-front/scripts/mock-data/utils.ts @@ -0,0 +1,134 @@ +/* eslint-disable no-console */ +import * as fs from 'fs'; +import * as path from 'path'; +import { fileURLToPath } from 'url'; + +process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'; + +const SERVER_BASE_URL = + process.env.REACT_APP_SERVER_BASE_URL ?? 'http://localhost:3000'; +const AUTH_EMAIL = 'jane.austen@apple.dev'; +const AUTH_PASSWORD = 'tim@apple.dev'; +const WORKSPACE_SUBDOMAIN = 'apple'; + +const serverUrl = new URL(SERVER_BASE_URL); +export const WORKSPACE_ORIGIN = `${serverUrl.protocol}//${WORKSPACE_SUBDOMAIN}.${serverUrl.host}`; + +const currentDir = path.dirname(fileURLToPath(import.meta.url)); +export const GENERATED_DIR = path.resolve( + currentDir, + '../../src/testing/mock-data/generated', +); + +export const graphqlRequest = async ( + endpoint: string, + query: string, + token?: string, + variables?: Record, +): Promise => { + const headers: Record = { + 'Content-Type': 'application/json', + Origin: WORKSPACE_ORIGIN, + }; + + if (token !== undefined) { + headers['Authorization'] = `Bearer ${token}`; + } + + const response = await fetch(`${SERVER_BASE_URL}${endpoint}`, { + method: 'POST', + headers, + body: JSON.stringify({ query, variables }), + }); + + const json = (await response.json()) as { + data?: unknown; + errors?: { message: string }[]; + }; + + if ( + json.errors !== undefined && + json.errors !== null && + json.errors.length > 0 + ) { + const errorDetails = json.errors.map((error) => error.message).join(', '); + throw new Error(`GraphQL error on ${endpoint}: ${errorDetails}`); + } + + return json.data; +}; + +export const authenticate = async (): Promise => { + console.log( + `Authenticating as ${AUTH_EMAIL} on workspace ${WORKSPACE_SUBDOMAIN}...`, + ); + + const loginData = (await graphqlRequest( + '/metadata', + `mutation GetLoginTokenFromCredentials { + getLoginTokenFromCredentials( + email: "${AUTH_EMAIL}", + password: "${AUTH_PASSWORD}", + origin: "${WORKSPACE_ORIGIN}" + ) { + loginToken { token } + } + }`, + )) as { + getLoginTokenFromCredentials: { loginToken: { token: string } }; + }; + + const loginToken = loginData.getLoginTokenFromCredentials.loginToken.token; + + const authData = (await graphqlRequest( + '/metadata', + `mutation GetAuthTokensFromLoginToken { + getAuthTokensFromLoginToken( + loginToken: "${loginToken}", + origin: "${WORKSPACE_ORIGIN}" + ) { + tokens { + accessOrWorkspaceAgnosticToken { token } + } + } + }`, + )) as { + getAuthTokensFromLoginToken: { + tokens: { accessOrWorkspaceAgnosticToken: { token: string } }; + }; + }; + + const accessToken = + authData.getAuthTokensFromLoginToken.tokens.accessOrWorkspaceAgnosticToken + .token; + + console.log('Authenticated successfully.'); + return accessToken; +}; + +export const writeGeneratedFile = ( + relativePath: string, + exportName: string, + typeName: string, + typeImport: string, + data: unknown, +) => { + const filePath = path.join(GENERATED_DIR, relativePath); + fs.mkdirSync(path.dirname(filePath), { recursive: true }); + + const content = [ + '/* eslint-disable */', + '// @ts-nocheck', + typeImport, + '', + '// This file was automatically generated — do not edit manually.', + '', + '// prettier-ignore', + `export const ${exportName}: ${typeName} =`, + JSON.stringify(data, null, 2) + ';', + '', + ].join('\n'); + + fs.writeFileSync(filePath, content, 'utf-8'); + console.log(`Written: ${filePath}`); +}; diff --git a/packages/twenty-front/src/modules/command-menu/pages/message-thread/hooks/__tests__/useEmailThreadInCommandMenu.test.tsx b/packages/twenty-front/src/modules/command-menu/pages/message-thread/hooks/__tests__/useEmailThreadInCommandMenu.test.tsx index 9a751ccc83..23c81b3310 100644 --- a/packages/twenty-front/src/modules/command-menu/pages/message-thread/hooks/__tests__/useEmailThreadInCommandMenu.test.tsx +++ b/packages/twenty-front/src/modules/command-menu/pages/message-thread/hooks/__tests__/useEmailThreadInCommandMenu.test.tsx @@ -11,7 +11,7 @@ import { QUERY_MAX_RECORDS, } from 'twenty-shared/constants'; import { MessageParticipantRole } from 'twenty-shared/types'; -import { generateEmptyJestRecordNode } from '~/testing/jest/generateEmptyJestRecordNode'; +import { generateMockRecordNode } from '~/testing/utils/generateMockRecordNode'; import { getJestMetadataAndApolloMocksWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksWrapper'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; @@ -84,7 +84,7 @@ const mocks = [ messages: { edges: [ { - node: generateEmptyJestRecordNode({ + node: generateMockRecordNode({ objectNameSingular: 'message', input: { id: '1', @@ -95,7 +95,7 @@ const mocks = [ cursor: '1', }, { - node: generateEmptyJestRecordNode({ + node: generateMockRecordNode({ objectNameSingular: 'message', input: { id: '2', @@ -135,7 +135,7 @@ const mocks = [ messageParticipants: { edges: [ { - node: generateEmptyJestRecordNode({ + node: generateMockRecordNode({ objectNameSingular: 'messageParticipant', input: { id: 'messageParticipant-1', @@ -146,7 +146,7 @@ const mocks = [ cursor: '1', }, { - node: generateEmptyJestRecordNode({ + node: generateMockRecordNode({ objectNameSingular: 'messageParticipant', input: { id: 'messageParticipant-2', diff --git a/packages/twenty-front/src/modules/object-metadata/hooks/__mocks__/useFindManyObjectMetadataItems.ts b/packages/twenty-front/src/modules/object-metadata/hooks/__mocks__/useFindManyObjectMetadataItems.ts index ad69742c36..4452a530cb 100644 --- a/packages/twenty-front/src/modules/object-metadata/hooks/__mocks__/useFindManyObjectMetadataItems.ts +++ b/packages/twenty-front/src/modules/object-metadata/hooks/__mocks__/useFindManyObjectMetadataItems.ts @@ -1,5 +1,5 @@ import { FIND_MANY_OBJECT_METADATA_ITEMS } from '@/object-metadata/graphql/queries'; -import { mockedStandardObjectMetadataQueryResult } from '~/testing/mock-data/generated/mock-metadata-query-result'; +import { mockedStandardObjectMetadataQueryResult } from '~/testing/mock-data/generated/metadata/objects/mock-objects-metadata'; export const query = FIND_MANY_OBJECT_METADATA_ITEMS; diff --git a/packages/twenty-front/src/modules/object-metadata/hooks/useLoadMockedObjectMetadataItems.ts b/packages/twenty-front/src/modules/object-metadata/hooks/useLoadMockedObjectMetadataItems.ts index 779e3e10c0..ff938a9b99 100644 --- a/packages/twenty-front/src/modules/object-metadata/hooks/useLoadMockedObjectMetadataItems.ts +++ b/packages/twenty-front/src/modules/object-metadata/hooks/useLoadMockedObjectMetadataItems.ts @@ -1,13 +1,16 @@ import { isAppEffectRedirectEnabledState } from '@/app/states/isAppEffectRedirectEnabledState'; import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState'; import { useCallback } from 'react'; -import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { isDeeplyEqual } from '~/utils/isDeeplyEqual'; import { useStore } from 'jotai'; export const useLoadMockedObjectMetadataItems = () => { const store = useStore(); const loadMockedObjectMetadataItems = useCallback(async () => { + const { generatedMockObjectMetadataItems } = await import( + '~/testing/utils/generatedMockObjectMetadataItems' + ); + if ( !isDeeplyEqual( store.get(objectMetadataItemsState.atom), diff --git a/packages/twenty-front/src/modules/object-metadata/utils/mapFieldMetadataToGraphQLQuery.ts b/packages/twenty-front/src/modules/object-metadata/utils/mapFieldMetadataToGraphQLQuery.ts index ff2076893d..16de49cb56 100644 --- a/packages/twenty-front/src/modules/object-metadata/utils/mapFieldMetadataToGraphQLQuery.ts +++ b/packages/twenty-front/src/modules/object-metadata/utils/mapFieldMetadataToGraphQLQuery.ts @@ -1,12 +1,15 @@ import { mapObjectMetadataToGraphQLQuery } from '@/object-metadata/utils/mapObjectMetadataToGraphQLQuery'; -import { FieldMetadataType, RelationType } from '~/generated-metadata/graphql'; import { type FieldMetadataItem } from '@/object-metadata/types/FieldMetadataItem'; import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem'; import { getObjectPermissionsForObject } from '@/object-metadata/utils/getObjectPermissionsForObject'; import { type RecordGqlFields } from '@/object-record/graphql/record-gql-fields/types/RecordGqlFields'; import { isNonCompositeField } from '@/object-record/object-filter-dropdown/utils/isNonCompositeField'; -import { type ObjectPermissions } from 'twenty-shared/types'; +import { + FieldMetadataType, + type ObjectPermissions, + RelationType, +} from 'twenty-shared/types'; import { computeMorphRelationFieldName, isDefined } from 'twenty-shared/utils'; type MapFieldMetadataToGraphQLQueryArgs = { diff --git a/packages/twenty-front/src/modules/object-record/graphql/record-gql-fields/utils/__tests__/__snapshots__/generateActivityTargetGqlFields.test.ts.snap b/packages/twenty-front/src/modules/object-record/graphql/record-gql-fields/utils/__tests__/__snapshots__/generateActivityTargetGqlFields.test.ts.snap index f145f1af1d..1abd8048a9 100644 --- a/packages/twenty-front/src/modules/object-record/graphql/record-gql-fields/utils/__tests__/__snapshots__/generateActivityTargetGqlFields.test.ts.snap +++ b/packages/twenty-front/src/modules/object-record/graphql/record-gql-fields/utils/__tests__/__snapshots__/generateActivityTargetGqlFields.test.ts.snap @@ -1,4 +1,4 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP +// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing exports[`generateActivityTargetGqlFields snapshot tests should match snapshot for Note with loadRelations="activity" 1`] = ` { diff --git a/packages/twenty-front/src/modules/object-record/hooks/__tests__/useFindOneRecord.test.tsx b/packages/twenty-front/src/modules/object-record/hooks/__tests__/useFindOneRecord.test.tsx index e7249d9caf..098b3263fc 100644 --- a/packages/twenty-front/src/modules/object-record/hooks/__tests__/useFindOneRecord.test.tsx +++ b/packages/twenty-front/src/modules/object-record/hooks/__tests__/useFindOneRecord.test.tsx @@ -5,7 +5,7 @@ import { variables, } from '@/object-record/hooks/__mocks__/useFindOneRecord'; import { useFindOneRecord } from '@/object-record/hooks/useFindOneRecord'; -import { generateEmptyJestRecordNode } from '~/testing/jest/generateEmptyJestRecordNode'; +import { generateMockRecordNode } from '~/testing/utils/generateMockRecordNode'; import { getJestMetadataAndApolloMocksWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksWrapper'; const mocks = [ @@ -16,7 +16,7 @@ const mocks = [ }, result: jest.fn(() => ({ data: { - person: generateEmptyJestRecordNode({ + person: generateMockRecordNode({ objectNameSingular: 'person', input: { id: '6205681e-7c11-40b4-9e32-f523dbe54590' }, withDepthOneRelation: true, diff --git a/packages/twenty-front/src/modules/object-record/record-field/ui/hooks/__tests__/useToggleEditOnlyInput.test.tsx b/packages/twenty-front/src/modules/object-record/record-field/ui/hooks/__tests__/useToggleEditOnlyInput.test.tsx index 85322b9368..eaedba2096 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/ui/hooks/__tests__/useToggleEditOnlyInput.test.tsx +++ b/packages/twenty-front/src/modules/object-record/record-field/ui/hooks/__tests__/useToggleEditOnlyInput.test.tsx @@ -12,7 +12,7 @@ import { type RecordUpdateHookParams, } from '@/object-record/record-field/ui/contexts/FieldContext'; import { useToggleEditOnlyInput } from '@/object-record/record-field/ui/hooks/useToggleEditOnlyInput'; -import { generateEmptyJestRecordNode } from '~/testing/jest/generateEmptyJestRecordNode'; +import { generateMockRecordNode } from '~/testing/utils/generateMockRecordNode'; import { getJestMetadataAndApolloMocksWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksWrapper'; import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; @@ -39,7 +39,7 @@ const mocks: MockedResponse[] = [ result: jest.fn(() => ({ data: { updateCompany: { - ...generateEmptyJestRecordNode({ + ...generateMockRecordNode({ objectNameSingular: CoreObjectNameSingular.Company, input: { id: recordId }, withDepthOneRelation: true, 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 6d04944601..34ffaaced3 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,8 +27,23 @@ 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 { getMockFieldMetadataItemOrThrow } from '~/testing/utils/getMockFieldMetadataItemOrThrow'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; import { getFieldInputEventContextProviderWithJestMocks } from './utils/getFieldInputEventContextProviderWithJestMocks'; +const personMetadata = getMockObjectMetadataItemOrThrow('person'); +const companyMetadata = getMockObjectMetadataItemOrThrow('company'); +const companyFieldOnPerson = getMockFieldMetadataItemOrThrow({ + objectMetadataItem: personMetadata, + fieldName: 'company', +}); +const peopleFieldOnCompany = getMockFieldMetadataItemOrThrow({ + objectMetadataItem: companyMetadata, + fieldName: 'people', +}); +const companiesMock = getCompaniesMock(); + const RelationWorkspaceSetterEffect = () => { const setRecordFieldInputLayoutDirectionLoading = useSetAtomComponentState( recordFieldInputLayoutDirectionLoadingComponentState, @@ -75,7 +90,7 @@ const RelationManyToOneFieldInputWithContext = ({ { useEffect(() => { @@ -39,7 +52,7 @@ const RelationOneToManyFieldInputWithContext = () => { const fieldDefinition = useMemo( () => ({ - fieldMetadataId: '94902a74-b8ca-4a56-8573-7469f0b664f6', + fieldMetadataId: peopleFieldOnCompany.id, label: 'People', type: FieldMetadataType.RELATION, iconName: 'IconLink', @@ -49,7 +62,7 @@ const RelationOneToManyFieldInputWithContext = () => { relationObjectMetadataNamePlural: 'people', relationObjectMetadataNameSingular: CoreObjectNameSingular.Person, objectMetadataNameSingular: 'company', - relationFieldMetadataId: 'f6be42ac-ccb8-4df0-8c22-a9627d655c76', + relationFieldMetadataId: companyFieldOnPerson.id, }, }), [], 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 373eca889d..a5037c75a2 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 @@ -61,7 +61,7 @@ describe('computeViewRecordGqlOperationFilter', () => { expect(result).toEqual({ name: { - ilike: '%Linkedin%', + ilike: `%${companiesMock[0].name}%`, }, }); }); @@ -116,7 +116,7 @@ describe('computeViewRecordGqlOperationFilter', () => { and: [ { name: { - ilike: '%Linkedin%', + ilike: `%${companiesMock[0].name}%`, }, }, { diff --git a/packages/twenty-front/src/modules/object-record/record-index/components/RecordIndexFiltersToContextStoreEffect.tsx b/packages/twenty-front/src/modules/object-record/record-index/components/RecordIndexFiltersToContextStoreEffect.tsx index 6b98b4c192..f2bea11d59 100644 --- a/packages/twenty-front/src/modules/object-record/record-index/components/RecordIndexFiltersToContextStoreEffect.tsx +++ b/packages/twenty-front/src/modules/object-record/record-index/components/RecordIndexFiltersToContextStoreEffect.tsx @@ -16,8 +16,8 @@ import { useRecordIndexContextOrThrow } from '@/object-record/record-index/conte import { hasUserSelectedAllRowsComponentState } from '@/object-record/record-table/record-table-row/states/hasUserSelectedAllRowsFamilyState'; import { selectedRowIdsComponentSelector } from '@/object-record/record-table/states/selectors/selectedRowIdsComponentSelector'; import { unselectedRowIdsComponentSelector } from '@/object-record/record-table/states/selectors/unselectedRowIdsComponentSelector'; +import { useAtomComponentSelectorValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentSelectorValue'; import { useAtomComponentStateCallbackState } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateCallbackState'; -import { useAtomComponentSelectorCallbackState } from '@/ui/utilities/state/jotai/hooks/useAtomComponentSelectorCallbackState'; import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue'; import { atom, useStore } from 'jotai'; import { isDeeplyEqual } from '~/utils/isDeeplyEqual'; @@ -42,17 +42,17 @@ export const RecordIndexFiltersToContextStoreEffect = () => { recordIndexId, ); - const hasUserSelectedAllRowsAtom = useAtomComponentStateCallbackState( + const hasUserSelectedAllRows = useAtomComponentStateValue( hasUserSelectedAllRowsComponentState, recordIndexId, ); - const selectedRowIdsAtom = useAtomComponentSelectorCallbackState( + const selectedRowIds = useAtomComponentSelectorValue( selectedRowIdsComponentSelector, recordIndexId, ); - const unselectedRowIdsAtom = useAtomComponentSelectorCallbackState( + const unselectedRowIds = useAtomComponentSelectorValue( unselectedRowIdsComponentSelector, recordIndexId, ); @@ -88,17 +88,14 @@ export const RecordIndexFiltersToContextStoreEffect = () => { anyFieldFilterValue: string; }, ) => { - const hasUserSelectedAllRows = get(hasUserSelectedAllRowsAtom); let newRule: ContextStoreTargetedRecordsRule; if (hasUserSelectedAllRows) { - const unselectedRowIds = get(unselectedRowIdsAtom); newRule = { mode: 'exclusion', excludedRecordIds: unselectedRowIds, }; } else { - const selectedRowIds = get(selectedRowIdsAtom); newRule = { mode: 'selection', selectedRecordIds: selectedRowIds, @@ -132,9 +129,9 @@ export const RecordIndexFiltersToContextStoreEffect = () => { }, ), [ - hasUserSelectedAllRowsAtom, - selectedRowIdsAtom, - unselectedRowIdsAtom, + hasUserSelectedAllRows, + selectedRowIds, + unselectedRowIds, contextStoreTargetedRecordsRuleAtom, contextStoreFiltersAtom, contextStoreFilterGroupsAtom, diff --git a/packages/twenty-front/src/modules/object-record/record-picker/multiple-record-picker/hooks/useMultipleRecordPickerPerformSearch.ts b/packages/twenty-front/src/modules/object-record/record-picker/multiple-record-picker/hooks/useMultipleRecordPickerPerformSearch.ts index 0fa306ce3e..94965705ca 100644 --- a/packages/twenty-front/src/modules/object-record/record-picker/multiple-record-picker/hooks/useMultipleRecordPickerPerformSearch.ts +++ b/packages/twenty-front/src/modules/object-record/record-picker/multiple-record-picker/hooks/useMultipleRecordPickerPerformSearch.ts @@ -321,6 +321,10 @@ export const useMultipleRecordPickerPerformSearch = () => { }, })); + if (operationSignatures.length === 0) { + return; + } + performCombinedFindManyRecords({ operationSignatures }).then( ({ result }) => { Object.values(result) 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 b91dfbebd2..2d02615da8 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,10 +10,13 @@ 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 { mockedViewsData } from '~/testing/mock-data/views'; import { sleep } from '~/utils/sleep'; +const companiesMock = getCompaniesMock(); + const meta: Meta = { title: 'Modules/ObjectRecord/RecordTable/RecordTable', component: RecordTableWithWrappers, @@ -70,7 +73,7 @@ export const ScrolledLeft: Story = { }, play: async ({ canvasElement }) => { const canvas = within(canvasElement); - await canvas.findAllByText('Linkedin', {}, { timeout: 3000 }); + await canvas.findAllByText(companiesMock[0].name, {}, { timeout: 3000 }); const scrollWrapper = canvasElement.ownerDocument.body.querySelector( '.scroll-wrapper-x-enabled', @@ -88,7 +91,7 @@ export const ScrolledLeft: Story = { }, }); - await canvas.findByText('Facebook'); + await canvas.findByText(companiesMock[1].name); }, }; @@ -100,7 +103,7 @@ export const ScrolledBottom: Story = { }, play: async ({ canvasElement }) => { const canvas = within(canvasElement); - await canvas.findAllByText('Linkedin', {}, { timeout: 3000 }); + await canvas.findAllByText(companiesMock[0].name, {}, { timeout: 3000 }); const scrollWrapper = canvasElement.ownerDocument.body.querySelector( '.scroll-wrapper-y-enabled', @@ -118,6 +121,6 @@ export const ScrolledBottom: Story = { }, }); - await canvas.findByText('Facebook'); + await canvas.findByText(companiesMock[1].name); }, }; diff --git a/packages/twenty-front/src/modules/sign-in-background-mock/constants/SignInBackgroundMockColumnDefinitions.ts b/packages/twenty-front/src/modules/sign-in-background-mock/constants/SignInBackgroundMockColumnDefinitions.ts index cc9f518919..b023989e20 100644 --- a/packages/twenty-front/src/modules/sign-in-background-mock/constants/SignInBackgroundMockColumnDefinitions.ts +++ b/packages/twenty-front/src/modules/sign-in-background-mock/constants/SignInBackgroundMockColumnDefinitions.ts @@ -4,9 +4,9 @@ import { type ColumnDefinition } from '@/object-record/record-table/types/Column import { filterAvailableTableColumns } from '@/object-record/utils/filterAvailableTableColumns'; import { findByProperty } from 'twenty-shared/utils'; import { FieldMetadataType, RelationType } from '~/generated-metadata/graphql'; -import { getMockCompanyObjectMetadataItem } from '~/testing/mock-data/companies'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; -const COMPANY_MOCK_OBJECT = getMockCompanyObjectMetadataItem(); +const COMPANY_MOCK_OBJECT = getMockObjectMetadataItemOrThrow('company'); export const SIGN_IN_BACKGROUND_MOCK_COLUMN_DEFINITIONS = ( [ diff --git a/packages/twenty-front/src/modules/ui/layout/page/components/DefaultLayout.tsx b/packages/twenty-front/src/modules/ui/layout/page/components/DefaultLayout.tsx index aab2d6cd66..d22283cc6e 100644 --- a/packages/twenty-front/src/modules/ui/layout/page/components/DefaultLayout.tsx +++ b/packages/twenty-front/src/modules/ui/layout/page/components/DefaultLayout.tsx @@ -12,7 +12,13 @@ import { PageDragDropProvider } from '@/navigation/components/PageDragDropProvid import { useIsSettingsPage } from '@/navigation/hooks/useIsSettingsPage'; import { OBJECT_SETTINGS_WIDTH } from '@/settings/data-model/constants/ObjectSettings'; import { SignInAppNavigationDrawerMock } from '@/sign-in-background-mock/components/SignInAppNavigationDrawerMock'; -import { SignInBackgroundMockPage } from '@/sign-in-background-mock/components/SignInBackgroundMockPage'; +import { lazy, Suspense } from 'react'; + +const SignInBackgroundMockPage = lazy(() => + import('@/sign-in-background-mock/components/SignInBackgroundMockPage').then( + (module) => ({ default: module.SignInBackgroundMockPage }), + ), +); import { useShowFullscreen } from '@/ui/layout/fullscreen/hooks/useShowFullscreen'; import { useShowAuthModal } from '@/ui/layout/hooks/useShowAuthModal'; import { NAVIGATION_DRAWER_CONSTRAINTS } from '@/ui/layout/resizable-panel/constants/NavigationDrawerConstraints'; @@ -106,7 +112,9 @@ export const DefaultLayout = () => { {showAuthModal ? ( <> - + + + diff --git a/packages/twenty-front/src/pages/not-found/NotFound.tsx b/packages/twenty-front/src/pages/not-found/NotFound.tsx index 3a74e85663..d68e4603c2 100644 --- a/packages/twenty-front/src/pages/not-found/NotFound.tsx +++ b/packages/twenty-front/src/pages/not-found/NotFound.tsx @@ -1,5 +1,11 @@ -import { SignInBackgroundMockPage } from '@/sign-in-background-mock/components/SignInBackgroundMockPage'; import { Trans, useLingui } from '@lingui/react/macro'; +import { lazy, Suspense } from 'react'; + +const SignInBackgroundMockPage = lazy(() => + import('@/sign-in-background-mock/components/SignInBackgroundMockPage').then( + (module) => ({ default: module.SignInBackgroundMockPage }), + ), +); import { AppPath } from 'twenty-shared/types'; import { RootStackingContextZIndices } from '@/ui/layout/constants/RootStackingContextZIndices'; @@ -61,7 +67,9 @@ export const NotFound = () => { - + + + ); }; diff --git a/packages/twenty-front/src/testing/decorators/WorkflowStepDecorator.tsx b/packages/twenty-front/src/testing/decorators/WorkflowStepDecorator.tsx index c59311d71c..7eecf81433 100644 --- a/packages/twenty-front/src/testing/decorators/WorkflowStepDecorator.tsx +++ b/packages/twenty-front/src/testing/decorators/WorkflowStepDecorator.tsx @@ -10,69 +10,75 @@ import { WorkflowVisualizerComponentInstanceContext } from '@/workflow/workflow- import { workflowSelectedNodeComponentState } from '@/workflow/workflow-diagram/states/workflowSelectedNodeComponentState'; import { useStepsOutputSchema } from '@/workflow/workflow-variables/hooks/useStepsOutputSchema'; import { type Decorator } from '@storybook/react-vite'; -import { useStore } from 'jotai'; -import { useCallback, useEffect, useState } from 'react'; +import { useAtomValue, useStore } from 'jotai'; +import { useEffect, useState } from 'react'; +import { isDefined } from 'twenty-shared/utils'; import { - getWorkflowMock, - getWorkflowNodeIdMock, + mockedWorkflow, + mockedWorkflowNodeId, + mockedWorkflowVersion, } from '~/testing/mock-data/workflow'; export const WorkflowStepDecorator: Decorator = (Story) => { const workflowVisualizerComponentInstanceId = 'workflow-visualizer-test-id'; - const workflowVersion = getWorkflowMock().versions.edges[0] - .node as WorkflowVersion; + const workflowVersion = mockedWorkflowVersion as WorkflowVersion; const { populateStepsOutputSchema } = useStepsOutputSchema(); const { loadMockedObjectMetadataItems } = useLoadMockedObjectMetadataItems(); + const [ready, setReady] = useState(false); const store = useStore(); - const handleMount = useCallback(async () => { - await loadMockedObjectMetadataItems(); + useEffect(() => { + const setup = async () => { + await loadMockedObjectMetadataItems(); - store.set( - workflowVisualizerWorkflowIdComponentState.atomFamily({ - instanceId: workflowVisualizerComponentInstanceId, - }), - getWorkflowMock().id, - ); - store.set( - workflowVisualizerWorkflowVersionIdComponentState.atomFamily({ - instanceId: workflowVisualizerComponentInstanceId, - }), - workflowVersion.id, - ); - store.set( - workflowVisualizerWorkflowRunIdComponentState.atomFamily({ - instanceId: workflowVisualizerComponentInstanceId, - }), - '123', - ); - store.set( - workflowSelectedNodeComponentState.atomFamily({ - instanceId: workflowVisualizerComponentInstanceId, - }), - getWorkflowNodeIdMock(), - ); - store.set( - flowComponentState.atomFamily({ - instanceId: workflowVisualizerComponentInstanceId, - }), - { - workflowVersionId: workflowVersion.id, - trigger: workflowVersion.trigger, - steps: workflowVersion.steps, - }, - ); - store.set( - commandMenuWorkflowIdComponentState.atomFamily({ - instanceId: workflowVisualizerComponentInstanceId, - }), - getWorkflowMock().id, - ); - populateStepsOutputSchema(workflowVersion); - setReady(true); + store.set( + workflowVisualizerWorkflowIdComponentState.atomFamily({ + instanceId: workflowVisualizerComponentInstanceId, + }), + mockedWorkflow.id, + ); + store.set( + workflowVisualizerWorkflowVersionIdComponentState.atomFamily({ + instanceId: workflowVisualizerComponentInstanceId, + }), + workflowVersion.id, + ); + store.set( + workflowVisualizerWorkflowRunIdComponentState.atomFamily({ + instanceId: workflowVisualizerComponentInstanceId, + }), + '123', + ); + store.set( + workflowSelectedNodeComponentState.atomFamily({ + instanceId: workflowVisualizerComponentInstanceId, + }), + mockedWorkflowNodeId, + ); + store.set( + flowComponentState.atomFamily({ + instanceId: workflowVisualizerComponentInstanceId, + }), + { + workflowVersionId: workflowVersion.id, + trigger: workflowVersion.trigger, + steps: workflowVersion.steps, + }, + ); + store.set( + commandMenuWorkflowIdComponentState.atomFamily({ + instanceId: workflowVisualizerComponentInstanceId, + }), + mockedWorkflow.id, + ); + populateStepsOutputSchema(workflowVersion); + setReady(true); + }; + + setup(); }, [ loadMockedObjectMetadataItems, populateStepsOutputSchema, @@ -80,9 +86,11 @@ export const WorkflowStepDecorator: Decorator = (Story) => { store, ]); - useEffect(() => { - handleMount(); - }, [handleMount]); + const workflowVersionId = useAtomValue( + workflowVisualizerWorkflowVersionIdComponentState.atomFamily({ + instanceId: workflowVisualizerComponentInstanceId, + }), + ); return ( { instanceId: workflowVisualizerComponentInstanceId, }} > - {ready && } + {ready && isDefined(workflowVersionId) && } ); diff --git a/packages/twenty-front/src/testing/graphqlMocks.ts b/packages/twenty-front/src/testing/graphqlMocks.ts index 9a58ca8fb4..454dabd364 100644 --- a/packages/twenty-front/src/testing/graphqlMocks.ts +++ b/packages/twenty-front/src/testing/graphqlMocks.ts @@ -26,7 +26,7 @@ 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 { mockedStandardObjectMetadataQueryResult } from '~/testing/mock-data/generated/mock-metadata-query-result'; +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 { @@ -35,12 +35,31 @@ import { workflowQueryResult, } from '~/testing/mock-data/workflow'; import { oneSucceededWorkflowRunQueryResult } from '~/testing/mock-data/workflow-run'; +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 { mockedViewFieldsData } from './mock-data/view-fields'; const peopleMock = getPeopleRecordConnectionMock(); const companiesMock = getCompaniesRecordConnectionMock(); const duplicateCompanyMock = getCompanyDuplicateMock(); +// Wraps raw server-fetched records (which already have correct field shapes) +// into a GraphQL connection response structure. +const wrapRecordsAsConnection = ( + objectNameSingular: string, + records: Record[], +) => ({ + __typename: getConnectionTypename(objectNameSingular), + edges: records.map((node) => ({ + __typename: getEdgeTypename(objectNameSingular), + node, + cursor: '', + })), + pageInfo: getEmptyPageInfo(), + totalCount: records.length, +}); + const getRootFieldNamesFromQuery = (query: string) => { try { const document = parse(query); @@ -201,62 +220,48 @@ export const graphqlMocks = { }); }), graphql.query('Search', () => { + const personSearchEdges = peopleMock + .slice(0, 2) + .map((person: Record, index: number) => ({ + node: { + __typename: 'SearchRecordDTO', + recordId: person.id, + objectNameSingular: 'person', + objectLabelSingular: 'Person', + label: + `${(person.name as Record)?.firstName ?? ''} ${(person.name as Record)?.lastName ?? ''}`.trim(), + imageUrl: '', + tsRankCD: 0.2, + tsRank: 0.12158542, + }, + cursor: `cursor-${index + 1}`, + })); + + const companySearchEdges = companiesMock + .slice(0, 2) + .map((company: Record, index: number) => ({ + node: { + __typename: 'SearchRecordDTO', + recordId: company.id, + objectNameSingular: 'company', + objectLabelSingular: 'Company', + label: company.name, + imageUrl: '', + tsRankCD: 0.2, + tsRank: 0.12158542, + }, + cursor: `cursor-${personSearchEdges.length + index + 1}`, + })); + + const allEdges = [...personSearchEdges, ...companySearchEdges]; + return HttpResponse.json({ data: { search: { - edges: [ - { - node: { - __typename: 'SearchRecordDTO', - recordId: '20202020-2d40-4e49-8df4-9c6a049191de', - objectNameSingular: 'person', - label: 'Louis Duss', - imageUrl: '', - tsRankCD: 0.2, - tsRank: 0.12158542, - }, - cursor: 'cursor-1', - }, - { - node: { - __typename: 'SearchRecordDTO', - recordId: '20202020-3ec3-4fe3-8997-b76aa0bfa408', - objectNameSingular: 'company', - label: 'Linkedin', - imageUrl: 'https://twenty-icons.com/linkedin.com', - tsRankCD: 0.2, - tsRank: 0.12158542, - }, - cursor: 'cursor-2', - }, - { - node: { - __typename: 'SearchRecordDTO', - recordId: '20202020-3f74-492d-a101-2a70f50a1645', - objectNameSingular: 'company', - label: 'Libeo', - imageUrl: 'https://twenty-icons.com/libeo.io', - tsRankCD: 0.2, - tsRank: 0.12158542, - }, - cursor: 'cursor-3', - }, - { - node: { - __typename: 'SearchRecordDTO', - recordId: '20202020-ac73-4797-824e-87a1f5aea9e0', - objectNameSingular: 'person', - label: 'Sylvie Palmer', - imageUrl: '', - tsRankCD: 0.1, - tsRank: 0.06079271, - }, - cursor: 'cursor-4', - }, - ], + edges: allEdges, pageInfo: { hasNextPage: true, - endCursor: 'cursor-4', + endCursor: allEdges[allEdges.length - 1]?.cursor ?? null, }, }, }, @@ -390,45 +395,7 @@ export const graphqlMocks = { return HttpResponse.json({ data: { - companies: { - edges: mockedData.map((company) => ({ - node: { - ...company, - favorites: { - edges: [], - __typename: 'FavoriteConnection', - }, - attachments: { - edges: [], - __typename: 'AttachmentConnection', - }, - people: { - edges: [], - __typename: 'PersonConnection', - }, - opportunities: { - edges: [], - __typename: 'OpportunityConnection', - }, - taskTargets: { - edges: [], - __typename: 'TaskTargetConnection', - }, - noteTargets: { - edges: [], - __typename: 'NoteTargetConnection', - }, - }, - cursor: null, - })), - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - startCursor: null, - endCursor: null, - }, - totalCount: mockedData.length, - }, + companies: wrapRecordsAsConnection('company', mockedData), }, }); }), @@ -436,46 +403,7 @@ export const graphqlMocks = { return HttpResponse.json({ data: { companyDuplicates: [ - { - edges: [ - { - node: { - ...duplicateCompanyMock, - favorites: { - edges: [], - __typename: 'FavoriteConnection', - }, - attachments: { - edges: [], - __typename: 'AttachmentConnection', - }, - people: { - edges: [], - __typename: 'PersonConnection', - }, - opportunities: { - edges: [], - __typename: 'OpportunityConnection', - }, - taskTargets: { - edges: [], - __typename: 'TaskTargetConnection', - }, - noteTargets: { - edges: [], - __typename: 'NoteTargetConnection', - }, - }, - cursor: null, - }, - ], - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - startCursor: null, - endCursor: null, - }, - }, + wrapRecordsAsConnection('company', [duplicateCompanyMock]), ], }, }); diff --git a/packages/twenty-front/src/testing/mock-data/companies.ts b/packages/twenty-front/src/testing/mock-data/companies.ts index fe9c50f21a..5df76f5b64 100644 --- a/packages/twenty-front/src/testing/mock-data/companies.ts +++ b/packages/twenty-front/src/testing/mock-data/companies.ts @@ -1,784 +1,21 @@ import { type Company } from '@/companies/types/Company'; -import { getRecordsFromRecordConnection } from '@/object-record/cache/utils/getRecordsFromRecordConnection'; 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'; -export const companiesQueryResult = { - companies: { - __typename: 'CompanyConnection', - totalCount: 13, - pageInfo: { - __typename: 'PageInfo', - hasNextPage: false, - startCursor: - 'WzEsICIyMDIwMjAyMC0zZWMzLTRmZTMtODk5Ny1iNzZhYTBiZmE0MDgiXQ==', - endCursor: 'WzEzLCAiMjAyMDIwMjAtMTQ1NS00YzU3LWFmYWYtZGQ1ZGMwODYzNjFkIl0=', - }, - edges: [ - { - __typename: 'CompanyEdge', - cursor: 'WzEsICIyMDIwMjAyMC0zZWMzLTRmZTMtODk5Ny1iNzZhYTBiZmE0MDgiXQ==', - node: { - __typename: 'Company', - id: '20202020-3ec3-4fe3-8997-b76aa0bfa408', - employees: 100, - createdAt: '2025-01-05T09:00:20.412Z', - updatedAt: '2025-01-05T10:15:30.412Z', - deletedAt: null, - name: 'Linkedin', - accountOwnerId: null, - accountOwner: null, - domainName: { - __typename: 'Links', - primaryLinkLabel: 'https://linkedin.com', - primaryLinkUrl: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - position: 1, - idealCustomerProfile: true, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - previousEmployees: { - __typename: 'Person', - id: '20202020-2d40-4e49-8df4-9c6a049191de', - email: 'louis.duss@google.com', - position: 14, - testJson: null, - testRating: null, - companyId: '20202020-c21e-4ec2-873b-de4264d89025', - avatarUrl: '', - updatedAt: '2025-01-05T11:36:42.400Z', - testMultiSelect: null, - testBoolean: true, - testSelect: 'OPTION_1', - testDateOnly: null, - bestCompanyId: null, - testUuid: null, - phone: '+33788901234', - createdAt: '2025-01-05T09:00:20.412Z', - city: 'Seattle', - testPhone: '', - jobTitle: 'CTO', - testCurrency: { - __typename: 'Currency', - amountMicros: null, - currencyCode: 'USD', - }, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'twitter.com', - }, - testLinks: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - name: { - __typename: 'FullName', - firstName: 'Louis', - lastName: 'Duss', - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: 'linkedin.com', - }, - testAddress: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - testLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - }, - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: 'WzIsICIyMDIwMjAyMC01ZDgxLTQ2ZDYtYmY4My1mN2ZkMzNlYTYxMDIiXQ==', - node: { - __typename: 'Company', - id: '20202020-5d81-46d6-bf83-f7fd33ea6102', - employees: null, - createdAt: '2025-01-06T08:30:15.412Z', - updatedAt: '2025-01-06T14:45:22.412Z', - deletedAt: null, - name: 'Facebook', - idealCustomerProfile: false, - accountOwner: null, - accountOwnerId: null, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://facebook.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - previousEmployees: null, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - position: 2, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: 'WzMsICIyMDIwMjAyMC0wNzEzLTQwYTUtODIxNi04MjgwMjQwMWQzM2UiXQ==', - node: { - __typename: 'Company', - id: '20202020-0713-40a5-8216-82802401d33e', - employees: null, - createdAt: '2025-01-07T10:15:30.412Z', - updatedAt: '2025-01-07T16:20:45.412Z', - deletedAt: null, - name: 'Anthropic', - idealCustomerProfile: false, - accountOwner: null, - accountOwnerId: null, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://anthropic.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - previousEmployees: null, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - position: 3, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: 'WzQsICIyMDIwMjAyMC1lZDg5LTQxM2EtYjMxYS05NjI5ODZlNjdiYjQiXQ==', - node: { - __typename: 'Company', - id: '20202020-ed89-413a-b31a-962986e67bb4', - employees: null, - createdAt: '2025-01-08T11:45:10.412Z', - updatedAt: '2025-01-08T17:30:25.412Z', - deletedAt: null, - name: 'Microsoft', - idealCustomerProfile: true, - accountOwner: null, - accountOwnerId: null, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://microsoft.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - previousEmployees: null, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - position: 4, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: 'WzUsICIyMDIwMjAyMC0xNzFlLTRiY2MtOWNmNy00MzQ0OGQ2ZmIyNzgiXQ==', - node: { - __typename: 'Company', - id: '20202020-171e-4bcc-9cf7-43448d6fb278', - employees: null, - createdAt: '2025-01-09T09:20:45.412Z', - updatedAt: '2025-01-09T15:10:30.412Z', - deletedAt: null, - name: 'Airbnb', - idealCustomerProfile: true, - accountOwner: null, - accountOwnerId: null, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://airbnb.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - previousEmployees: null, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - position: 5, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: 'WzYsICIyMDIwMjAyMC1jMjFlLTRlYzItODczYi1kZTQyNjRkODkwMjUiXQ==', - node: { - __typename: 'Company', - id: '20202020-c21e-4ec2-873b-de4264d89025', - employees: null, - createdAt: '2025-01-10T13:30:20.412Z', - updatedAt: '2025-01-10T18:45:35.412Z', - deletedAt: null, - name: 'Google', - idealCustomerProfile: false, - accountOwner: null, - accountOwnerId: null, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://google.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - previousEmployees: null, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - position: 6, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: 'WzcsICIyMDIwMjAyMC03MDdlLTQ0ZGMtYTFkMi0zMDAzMGJmMWE5NDQiXQ==', - node: { - __typename: 'Company', - id: '20202020-707e-44dc-a1d2-30030bf1a944', - employees: null, - createdAt: '2025-01-11T07:15:50.412Z', - updatedAt: '2025-01-11T12:25:15.412Z', - deletedAt: null, - name: 'Netflix', - idealCustomerProfile: true, - accountOwner: null, - accountOwnerId: null, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://netflix.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - previousEmployees: null, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - position: 7, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: 'WzgsICIyMDIwMjAyMC0zZjc0LTQ5MmQtYTEwMS0yYTcwZjUwYTE2NDUiXQ==', - node: { - __typename: 'Company', - id: '20202020-3f74-492d-a101-2a70f50a1645', - employees: null, - createdAt: '2025-01-12T14:40:25.412Z', - updatedAt: '2025-01-12T19:55:40.412Z', - deletedAt: null, - name: 'Libeo', - idealCustomerProfile: false, - accountOwner: null, - accountOwnerId: null, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://libeo.io', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - previousEmployees: null, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - position: 8, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: 'WzksICIyMDIwMjAyMC1jZmJmLTQxNTYtYTc5MC1lMzk4NTRkY2Q0ZWIiXQ==', - node: { - __typename: 'Company', - id: '20202020-cfbf-4156-a790-e39854dcd4eb', - employees: null, - createdAt: '2025-01-13T08:25:35.412Z', - updatedAt: '2025-01-13T13:40:50.412Z', - deletedAt: null, - name: 'Claap', - idealCustomerProfile: false, - accountOwner: null, - accountOwnerId: null, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://claap.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - previousEmployees: null, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - position: 9, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: 'WzEwLCAiMjAyMDIwMjAtZjg2Yi00MTlmLWI3OTQtMDIzMTlhYmU4NjM3Il0=', - node: { - __typename: 'Company', - id: '20202020-f86b-419f-b794-02319abe8637', - employees: null, - createdAt: '2025-01-14T16:10:15.412Z', - updatedAt: '2025-01-14T21:30:25.412Z', - deletedAt: null, - name: 'Hasura', - idealCustomerProfile: false, - accountOwner: null, - accountOwnerId: null, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://hasura.io', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - previousEmployees: null, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - position: 10, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: 'WzExLCAiMjAyMDIwMjAtNTUxOC00NTUzLTk0MzMtNDJkOGViODI4MzRiIl0=', - node: { - __typename: 'Company', - id: '20202020-5518-4553-9433-42d8eb82834b', - employees: null, - createdAt: '2025-01-15T12:50:40.412Z', - updatedAt: '2025-01-15T17:15:55.412Z', - deletedAt: null, - name: 'Wework', - idealCustomerProfile: false, - accountOwner: null, - accountOwnerId: null, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://wework.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - previousEmployees: null, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - position: 11, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: 'WzEyLCAiMjAyMDIwMjAtZjc5ZS00MGRkLWJkMDYtYzM2ZTZhYmI0Njc4Il0=', - node: { - __typename: 'Company', - id: '20202020-f79e-40dd-bd06-c36e6abb4678', - employees: null, - createdAt: '2025-01-16T10:35:20.412Z', - updatedAt: '2025-01-16T15:50:35.412Z', - deletedAt: null, - name: 'Samsung', - idealCustomerProfile: false, - accountOwner: null, - accountOwnerId: null, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://samsung.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - previousEmployees: null, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - position: 12, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - }, - }, - { - __typename: 'CompanyEdge', - cursor: 'WzEzLCAiMjAyMDIwMjAtMTQ1NS00YzU3LWFmYWYtZGQ1ZGMwODYzNjFkIl0=', - node: { - __typename: 'Company', - id: '20202020-1455-4c57-afaf-dd5dc086361d', - employees: null, - createdAt: '2025-01-17T11:20:10.412Z', - updatedAt: '2025-01-17T16:45:25.412Z', - deletedAt: null, - name: 'Algolia', - idealCustomerProfile: false, - accountOwner: null, - accountOwnerId: null, - domainName: { - __typename: 'Links', - primaryLinkUrl: 'https://algolia.com', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: { - __typename: 'Address', - addressStreet1: '', - addressStreet2: '', - addressCity: '', - addressState: '', - addressCountry: '', - addressPostcode: '', - addressLat: null, - addressLng: null, - }, - previousEmployees: null, - annualRecurringRevenue: { - __typename: 'Currency', - amountMicros: null, - currencyCode: '', - }, - position: 13, - xLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - linkedinLink: { - __typename: 'Links', - primaryLinkLabel: '', - primaryLinkUrl: '', - secondaryLinks: [], - }, - }, - }, - ], - }, -}; - -const allMockedCompanyRecords = getRecordsFromRecordConnection({ - recordConnection: companiesQueryResult.companies, -}) as ObjectRecord[]; +const allMockedCompanyRecords = mockedCompanyRecords as ObjectRecord[]; export const getCompaniesMock = () => { return [...allMockedCompanyRecords] as Company[]; }; export const getCompaniesRecordConnectionMock = () => { - const companiesMock = companiesQueryResult.companies.edges.map( - (edge) => edge.node, - ); - - return companiesMock; + return [...allMockedCompanyRecords]; }; export const getMockCompanyObjectMetadataItem = () => { - const companyObjectMetadataItem = getMockObjectMetadataItemOrThrow('company'); - - return companyObjectMetadataItem; + return getMockObjectMetadataItemOrThrow('company'); }; export const getCompanyDuplicateMock = () => { @@ -811,26 +48,3 @@ export const findMockCompanyRecord = ({ return company; }; - -export const getEmptyCompanyMock = () => { - return { - id: '9231e6ee-4cc2-4c7b-8c55-dff16f4d968a', - name: '', - domainName: { - __typename: 'Links', - primaryLinkUrl: '', - primaryLinkLabel: '', - secondaryLinks: [], - }, - address: {}, - accountOwner: null, - createdAt: null, - updatedAt: null, - employees: null, - idealCustomerProfile: null, - linkedinLink: null, - xLink: null, - _activityCount: null, - __typename: 'Company', - }; -}; diff --git a/packages/twenty-front/src/testing/mock-data/favorite.ts b/packages/twenty-front/src/testing/mock-data/favorite.ts index bf7dbf51c3..fa97ceb785 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 { companiesQueryResult } from '~/testing/mock-data/companies'; +import { getCompaniesMock } from '~/testing/mock-data/companies'; 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: companiesQueryResult.companies.edges[0].node.id, - company: companiesQueryResult.companies.edges[0].node, + companyId: getCompaniesMock()[0].id, + company: getCompaniesMock()[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 new file mode 100644 index 0000000000..435b0954d0 --- /dev/null +++ b/packages/twenty-front/src/testing/mock-data/generated/data/companies/mock-companies-data.ts @@ -0,0 +1,2165 @@ +/* eslint-disable */ +// @ts-nocheck + + +// This file was automatically generated — do not edit manually. + +// prettier-ignore +export const mockedCompanyRecords: Record[] = +[ + { + "__typename": "Company", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + } + }, + "accountOwnerId": "20202020-1553-45c6-a028-5a9064cce07f", + "address": { + "__typename": "Address", + "addressStreet1": "", + "addressStreet2": "", + "addressCity": "Denver", + "addressState": "", + "addressCountry": "", + "addressPostcode": "", + "addressLat": null, + "addressLng": null + }, + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null + }, + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "createdAt": "2026-02-26T11:55:19.497Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "housecallpro.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "employees": 894, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-a000-4485-94de-70c2a98daef2", + "idealCustomerProfile": false, + "introVideo": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/company/housecallpro", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "name": "Housecall Pro", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-066a-4e7c-9001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-066a-4e7c-9001-123456789abc", + "title": "Vendor Assessment" + } + } + } + ] + }, + "opportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "people": { + "__typename": "PersonConnection", + "edges": [ + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-22.png", + "id": "20202020-b030-4743-9edd-d1a1776d653d", + "name": { + "__typename": "FullName", + "firstName": "Ashlee", + "lastName": "Barajas" + } + } + }, + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-33.png", + "id": "20202020-bcc1-434e-995a-f80dfa92b596", + "name": { + "__typename": "FullName", + "firstName": "Amanda", + "lastName": "Valenzuela" + } + } + } + ] + }, + "position": 442, + "previousEmployees": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "tagline": "", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-066a-4e7c-9001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-066a-4e7c-9001-123456789def", + "title": "Negotiate contract terms" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-044200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-2001-8001-000013db0001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-2001-8001-000021ea0001", + "name": "linked-task.created" + } + } + ] + }, + "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Company", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + } + }, + "accountOwnerId": "20202020-1553-45c6-a028-5a9064cce07f", + "address": { + "__typename": "Address", + "addressStreet1": "", + "addressStreet2": "", + "addressCity": "Philadelphia", + "addressState": "", + "addressCountry": "", + "addressPostcode": "", + "addressLat": null, + "addressLng": null + }, + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null + }, + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "createdAt": "2026-02-26T11:55:19.497Z", + "createdBy": { + "__typename": "Actor", + "source": "IMPORT", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "odessainc.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "employees": 1415, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-a018-492d-89de-f9cd4ee80437", + "idealCustomerProfile": false, + "introVideo": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/company/odessa-inc-", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "name": "Odessa", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-05c8-4e7c-9001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-05c8-4e7c-9001-123456789abc", + "title": "Industry Insights" + } + } + } + ] + }, + "opportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "people": { + "__typename": "PersonConnection", + "edges": [ + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "", + "id": "20202020-bf28-4a93-bba3-b02aa55543a3", + "name": { + "__typename": "FullName", + "firstName": "Jessica", + "lastName": "Smith" + } + } + }, + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-49.png", + "id": "20202020-b0ae-46da-9697-ed949ee75b67", + "name": { + "__typename": "FullName", + "firstName": "Michael", + "lastName": "George" + } + } + } + ] + }, + "position": 280, + "previousEmployees": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "tagline": "", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-05c8-4e7c-9001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-05c8-4e7c-9001-123456789def", + "title": "Review financial statements" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-028000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-2001-8001-000012970001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-2001-8001-000020a60001", + "name": "linked-task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0751-2001-8001-0000330b0001", + "name": "message.linked" + } + } + ] + }, + "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedBy": { + "__typename": "Actor", + "source": "IMPORT", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Company", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "name": { + "__typename": "FullName", + "firstName": "Jony", + "lastName": "Ive" + } + }, + "accountOwnerId": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "address": { + "__typename": "Address", + "addressStreet1": "", + "addressStreet2": "", + "addressCity": "Brookline", + "addressState": "", + "addressCountry": "", + "addressPostcode": "", + "addressLat": null, + "addressLng": null + }, + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null + }, + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "createdAt": "2026-02-26T11:55:19.497Z", + "createdBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "airslate.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "employees": 1001, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-a023-4180-9da1-6b417beacf0e", + "idealCustomerProfile": false, + "introVideo": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/company/airslate", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "name": "airSlate", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-063e-4e7c-9001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-063e-4e7c-9001-123456789abc", + "title": "Due Diligence Report" + } + } + } + ] + }, + "opportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "people": { + "__typename": "PersonConnection", + "edges": [ + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-86.png", + "id": "20202020-b165-49bf-b2c1-60fd1ee3d368", + "name": { + "__typename": "FullName", + "firstName": "Barbara", + "lastName": "Hudson" + } + } + }, + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-76.png", + "id": "20202020-b664-4460-83e8-5c5f1c64c836", + "name": { + "__typename": "FullName", + "firstName": "Kelly", + "lastName": "Hooper" + } + } + } + ] + }, + "position": 398, + "previousEmployees": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "tagline": "", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-063e-4e7c-9001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-063e-4e7c-9001-123456789def", + "title": "Analyze market research" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-039800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-2001-8001-000013830001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "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", + "updatedBy": { + "__typename": "Actor", + "source": "MANUAL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Company", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + } + }, + "accountOwnerId": "20202020-1553-45c6-a028-5a9064cce07f", + "address": { + "__typename": "Address", + "addressStreet1": "", + "addressStreet2": "", + "addressCity": "San Francisco", + "addressState": "", + "addressCountry": "", + "addressPostcode": "", + "addressLat": null, + "addressLng": null + }, + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null + }, + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-0023-4a7c-8001-123456789aba", + "name": "Sales Report Q4.xlsx" + } + }, + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-009b-4a7c-8001-123456789aba", + "name": "Diagram.png" + } + } + ] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "createdAt": "2026-02-26T11:55:19.497Z", + "createdBy": { + "__typename": "Actor", + "source": "EMAIL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "splunk.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "employees": 8891, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-a026-43c0-b042-0123f72f6cf9", + "idealCustomerProfile": false, + "introVideo": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/company/splunk", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "name": "Splunk", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-04d3-4e7c-9001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-04d3-4e7c-9001-123456789abc", + "title": "Market Analysis" + } + } + } + ] + }, + "opportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "people": { + "__typename": "PersonConnection", + "edges": [ + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-84.png", + "id": "20202020-bfea-4a51-81be-d46de6a93db7", + "name": { + "__typename": "FullName", + "firstName": "Kristina", + "lastName": "Olson" + } + } + }, + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-33.png", + "id": "20202020-bfa7-4546-a865-18a9cd06de4c", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Henderson" + } + } + } + ] + }, + "position": 35, + "previousEmployees": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "tagline": "", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-04d3-4e7c-9001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-04d3-4e7c-9001-123456789def", + "title": "Schedule demo presentation" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-003500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-2001-8001-000010ad0001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-2001-8001-00001ebc0001", + "name": "linked-task.created" + } + }, + { + "__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", + "name": "calendarEvent.linked" + } + } + ] + }, + "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedBy": { + "__typename": "Actor", + "source": "EMAIL", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Company", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": { + "__typename": "FullName", + "firstName": "Tim", + "lastName": "Apple" + } + }, + "accountOwnerId": "20202020-0687-4c41-b707-ed1bfca972a7", + "address": { + "__typename": "Address", + "addressStreet1": "", + "addressStreet2": "", + "addressCity": "Vancouver", + "addressState": "", + "addressCountry": "", + "addressPostcode": "", + "addressLat": null, + "addressLng": null + }, + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null + }, + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-0156-4a7c-8001-123456789aba", + "name": "Company Logo.png" + } + } + ] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "createdAt": "2026-02-26T11:55:19.497Z", + "createdBy": { + "__typename": "Actor", + "source": "WORKFLOW", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "zoominfo.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "employees": 3875, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-a026-47d2-9474-75fb625f5eb1", + "idealCustomerProfile": false, + "introVideo": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/company/zoominfo", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "name": "ZoomInfo", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0516-4e7c-9001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0516-4e7c-9001-123456789abc", + "title": "Due Diligence Report" + } + } + } + ] + }, + "opportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "people": { + "__typename": "PersonConnection", + "edges": [ + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-71.png", + "id": "20202020-b397-497b-90bc-f62c1c34b2a3", + "name": { + "__typename": "FullName", + "firstName": "Jenna", + "lastName": "Smith" + } + } + }, + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-58.png", + "id": "20202020-beb3-40b1-8f18-de25a7fd1146", + "name": { + "__typename": "FullName", + "firstName": "Johnny", + "lastName": "Lee" + } + } + } + ] + }, + "position": 102, + "previousEmployees": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "tagline": "", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0516-4e7c-9001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0516-4e7c-9001-123456789def", + "title": "Analyze market research" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-010200000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-2001-8001-000011330001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-2001-8001-00001f420001", + "name": "linked-task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-000026950001", + "name": "calendarEvent.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-000026cf0001", + "name": "calendarEvent.linked" + } + }, + { + "__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", + "name": "message.linked" + } + } + ] + }, + "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedBy": { + "__typename": "Actor", + "source": "WORKFLOW", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Company", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "name": { + "__typename": "FullName", + "firstName": "Jony", + "lastName": "Ive" + } + }, + "accountOwnerId": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "address": { + "__typename": "Address", + "addressStreet1": "", + "addressStreet2": "", + "addressCity": "Florence", + "addressState": "", + "addressCountry": "", + "addressPostcode": "", + "addressLat": null, + "addressLng": null + }, + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null + }, + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "createdAt": "2026-02-26T11:55:19.497Z", + "createdBy": { + "__typename": "Actor", + "source": "IMPORT", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "acstechnologies.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "employees": 874, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-a02e-4e28-b4a9-6096b36e26df", + "idealCustomerProfile": false, + "introVideo": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/company/acs-technologies", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "name": "ACS Technologies", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-0670-4e7c-9001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-0670-4e7c-9001-123456789abc", + "title": "Industry Insights" + } + } + } + ] + }, + "opportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "people": { + "__typename": "PersonConnection", + "edges": [ + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-1.png", + "id": "20202020-b171-46bc-a285-ec8ee3e3b702", + "name": { + "__typename": "FullName", + "firstName": "Eugene", + "lastName": "Sims" + } + } + }, + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-7.png", + "id": "20202020-b307-4b8e-9281-b3ddb0ef420c", + "name": { + "__typename": "FullName", + "firstName": "Gwendolyn", + "lastName": "Glover" + } + } + } + ] + }, + "position": 448, + "previousEmployees": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "tagline": "", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-0670-4e7c-9001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-0670-4e7c-9001-123456789def", + "title": "Review financial statements" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-044800000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-2001-8001-000013e70001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-2001-8001-000021f60001", + "name": "linked-task.created" + } + }, + { + "__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", + "name": "message.linked" + } + } + ] + }, + "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedBy": { + "__typename": "Actor", + "source": "IMPORT", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Company", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + } + }, + "accountOwnerId": "20202020-1553-45c6-a028-5a9064cce07f", + "address": { + "__typename": "Address", + "addressStreet1": "", + "addressStreet2": "", + "addressCity": "Alpharetta", + "addressState": "", + "addressCountry": "", + "addressPostcode": "", + "addressLat": null, + "addressLng": null + }, + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null + }, + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "createdAt": "2026-02-26T11:55:19.497Z", + "createdBy": { + "__typename": "Actor", + "source": "API", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "relevantz.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "employees": 691, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-a043-441a-b269-a2378afed31c", + "idealCustomerProfile": false, + "introVideo": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/company/relevantz", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "name": "Relevantz ", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-06d7-4e7c-9001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-06d7-4e7c-9001-123456789abc", + "title": "Customer Success Story" + } + } + } + ] + }, + "opportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "people": { + "__typename": "PersonConnection", + "edges": [ + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "", + "id": "20202020-b29f-45a3-9e75-6a1d49f1299f", + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Weber" + } + } + }, + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-1.png", + "id": "20202020-bcbc-4e67-8f84-df60aad8cd7f", + "name": { + "__typename": "FullName", + "firstName": "Erica", + "lastName": "Lamb" + } + } + } + ] + }, + "position": 551, + "previousEmployees": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "tagline": "", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-06d7-4e7c-9001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-06d7-4e7c-9001-123456789def", + "title": "Plan integration strategy" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-055100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-2001-8001-000014b50001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-2001-8001-000022c40001", + "name": "linked-task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-000025e50001", + "name": "calendarEvent.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-000028130001", + "name": "calendarEvent.linked" + } + }, + { + "__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" + } + } + ] + }, + "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedBy": { + "__typename": "Actor", + "source": "API", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Company", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + } + }, + "accountOwnerId": "20202020-1553-45c6-a028-5a9064cce07f", + "address": { + "__typename": "Address", + "addressStreet1": "", + "addressStreet2": "", + "addressCity": "Charlotte", + "addressState": "", + "addressCountry": "", + "addressPostcode": "", + "addressLat": null, + "addressLng": null + }, + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null + }, + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "createdAt": "2026-02-26T11:55:19.497Z", + "createdBy": { + "__typename": "Actor", + "source": "SYSTEM", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "isolvedhcm.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "employees": 1261, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-a045-4266-b9e4-0e7a0697322b", + "idealCustomerProfile": false, + "introVideo": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/company/isolved", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "name": "isolved", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-05eb-4e7c-9001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-05eb-4e7c-9001-123456789abc", + "title": "Market Analysis" + } + } + } + ] + }, + "opportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "people": { + "__typename": "PersonConnection", + "edges": [ + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-19.png", + "id": "20202020-bab2-4892-8834-6ca25212fd35", + "name": { + "__typename": "FullName", + "firstName": "Mckenzie", + "lastName": "Meyer" + } + } + }, + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "", + "id": "20202020-b48a-4ca5-9596-abdee52b69a6", + "name": { + "__typename": "FullName", + "firstName": "Parker", + "lastName": "Young" + } + } + } + ] + }, + "position": 315, + "previousEmployees": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "tagline": "", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-05eb-4e7c-9001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-05eb-4e7c-9001-123456789def", + "title": "Schedule demo presentation" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-031500000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-2001-8001-000012dd0001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-2001-8001-000020ec0001", + "name": "linked-task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-000025a70001", + "name": "calendarEvent.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0751-2001-8001-0000313b0001", + "name": "message.linked" + } + } + ] + }, + "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedBy": { + "__typename": "Actor", + "source": "SYSTEM", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Company", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-1553-45c6-a028-5a9064cce07f", + "name": { + "__typename": "FullName", + "firstName": "Phil", + "lastName": "Schiler" + } + }, + "accountOwnerId": "20202020-1553-45c6-a028-5a9064cce07f", + "address": { + "__typename": "Address", + "addressStreet1": "", + "addressStreet2": "", + "addressCity": "Bellevue", + "addressState": "", + "addressCountry": "", + "addressPostcode": "", + "addressLat": null, + "addressLng": null + }, + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null + }, + "attachments": { + "__typename": "AttachmentConnection", + "edges": [] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "createdAt": "2026-02-26T11:55:19.497Z", + "createdBy": { + "__typename": "Actor", + "source": "IMPORT", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "nintex.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "employees": 978, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-a045-4b32-8484-a6807e9e0d22", + "idealCustomerProfile": false, + "introVideo": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/company/nintex", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "name": "Nintex", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-064a-4e7c-9001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-064a-4e7c-9001-123456789abc", + "title": "Vendor Assessment" + } + } + } + ] + }, + "opportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "people": { + "__typename": "PersonConnection", + "edges": [ + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-87.png", + "id": "20202020-b597-4d76-b0d5-cd2b7d7e0255", + "name": { + "__typename": "FullName", + "firstName": "Kathleen", + "lastName": "Stewart" + } + } + }, + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "", + "id": "20202020-bbaf-436a-b635-79e7c349f388", + "name": { + "__typename": "FullName", + "firstName": "Victoria", + "lastName": "Ruiz" + } + } + } + ] + }, + "position": 410, + "previousEmployees": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "tagline": "", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-064a-4e7c-9001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-064a-4e7c-9001-123456789def", + "title": "Negotiate contract terms" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-041000000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-2001-8001-0000139b0001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-2001-8001-000021aa0001", + "name": "linked-task.created" + } + } + ] + }, + "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedBy": { + "__typename": "Actor", + "source": "IMPORT", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + }, + { + "__typename": "Company", + "accountOwner": { + "__typename": "WorkspaceMember", + "id": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "name": { + "__typename": "FullName", + "firstName": "Jony", + "lastName": "Ive" + } + }, + "accountOwnerId": "20202020-77d5-4cb6-b60a-f4a835a85d61", + "address": { + "__typename": "Address", + "addressStreet1": "", + "addressStreet2": "", + "addressCity": "San Jose", + "addressState": "", + "addressCountry": "", + "addressPostcode": "", + "addressLat": null, + "addressLng": null + }, + "annualRecurringRevenue": { + "__typename": "Currency", + "amountMicros": null, + "currencyCode": null + }, + "attachments": { + "__typename": "AttachmentConnection", + "edges": [ + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-00e7-4a7c-8001-123456789aba", + "name": "Roadmap 2024.pptx" + } + }, + { + "__typename": "AttachmentEdge", + "node": { + "__typename": "Attachment", + "id": "20202020-015f-4a7c-8001-123456789aba", + "name": "Service Agreement.pdf" + } + } + ] + }, + "caredForPets": { + "__typename": "PetCareAgreementConnection", + "edges": [] + }, + "createdAt": "2026-02-26T11:55:19.497Z", + "createdBy": { + "__typename": "Actor", + "source": "WEBHOOK", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "deletedAt": null, + "domainName": { + "__typename": "Links", + "primaryLinkUrl": "swde.com", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "employees": 3774, + "favorites": { + "__typename": "FavoriteConnection", + "edges": [] + }, + "id": "20202020-a048-4007-9024-3ac47b8484d5", + "idealCustomerProfile": false, + "introVideo": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "linkedinLink": { + "__typename": "Links", + "primaryLinkUrl": "https://linkedin.com/company/retired-life", + "primaryLinkLabel": "", + "secondaryLinks": [] + }, + "name": "Retired Life", + "noteTargets": { + "__typename": "NoteTargetConnection", + "edges": [ + { + "__typename": "NoteTargetEdge", + "node": { + "__typename": "NoteTarget", + "id": "20202020-051f-4e7c-9001-123456789def", + "note": { + "__typename": "Note", + "id": "20202020-051f-4e7c-9001-123456789abc", + "title": "Customer Success Story" + } + } + } + ] + }, + "opportunities": { + "__typename": "OpportunityConnection", + "edges": [] + }, + "people": { + "__typename": "PersonConnection", + "edges": [ + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "", + "id": "20202020-ba0b-48a9-85ba-e223975696ea", + "name": { + "__typename": "FullName", + "firstName": "Robert", + "lastName": "Owens" + } + } + }, + { + "__typename": "PersonEdge", + "node": { + "__typename": "Person", + "avatarUrl": "https://twentyhq.github.io/placeholder-images/people/image-65.png", + "id": "20202020-b3e6-4514-88e8-7394fa3017cc", + "name": { + "__typename": "FullName", + "firstName": "Christine", + "lastName": "Fernandez" + } + } + } + ] + }, + "position": 111, + "previousEmployees": { + "__typename": "EmploymentHistoryConnection", + "edges": [] + }, + "tagline": "", + "taskTargets": { + "__typename": "TaskTargetConnection", + "edges": [ + { + "__typename": "TaskTargetEdge", + "node": { + "__typename": "TaskTarget", + "id": "60606060-051f-4e7c-9001-123456789def", + "task": { + "__typename": "Task", + "id": "20202020-051f-4e7c-9001-123456789def", + "title": "Plan integration strategy" + } + } + } + ] + }, + "timelineActivities": { + "__typename": "TimelineActivityConnection", + "edges": [ + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0001-4000-8001-011100000001", + "name": "company.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0601-2001-8001-000011450001", + "name": "linked-note.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0651-2001-8001-00001f540001", + "name": "linked-task.created" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-000026bb0001", + "name": "calendarEvent.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0701-2001-8001-0000276d0001", + "name": "calendarEvent.linked" + } + }, + { + "__typename": "TimelineActivityEdge", + "node": { + "__typename": "TimelineActivity", + "id": "20202020-0751-2001-8001-00002b510001", + "name": "message.linked" + } + } + ] + }, + "updatedAt": "2026-02-26T11:55:19.497Z", + "updatedBy": { + "__typename": "Actor", + "source": "WEBHOOK", + "workspaceMemberId": "20202020-0687-4c41-b707-ed1bfca972a7", + "name": "Tim A", + "context": null + }, + "visaSponsorship": false, + "workPolicy": [], + "xLink": { + "__typename": "Links", + "primaryLinkUrl": "", + "primaryLinkLabel": "", + "secondaryLinks": [] + } + } +]; diff --git a/packages/twenty-front/src/testing/mock-data/generated/mock-metadata-query-result.ts b/packages/twenty-front/src/testing/mock-data/generated/metadata/objects/mock-objects-metadata.ts similarity index 74% rename from packages/twenty-front/src/testing/mock-data/generated/mock-metadata-query-result.ts rename to packages/twenty-front/src/testing/mock-data/generated/metadata/objects/mock-objects-metadata.ts index 134a08aed5..357ad6532c 100644 --- a/packages/twenty-front/src/testing/mock-data/generated/mock-metadata-query-result.ts +++ b/packages/twenty-front/src/testing/mock-data/generated/metadata/objects/mock-objects-metadata.ts @@ -2,8 +2,7 @@ // @ts-nocheck import { ObjectMetadataItemsQuery } from '~/generated-metadata/graphql'; -// This file was automatically generated by scripts/generate-mock-data.ts -// Do not edit this file manually. +// This file was automatically generated — do not edit manually. // prettier-ignore export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = @@ -22,33 +21,33 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", - "universalIdentifier": "20202020-62be-406c-b9ca-8caa50d51392", - "nameSingular": "workflow", - "namePlural": "workflows", + "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", + "universalIdentifier": "20202020-d65d-4ab9-9344-d77bfb376a3d", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions", "isCustom": false, "isRemote": false, "isActive": true, - "isSystem": false, + "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "27517387-8213-484c-a44a-adb189f6befe", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "labelIdentifierFieldMetadataId": "15a33b26-48e6-4bad-b1da-eede6ae01cbd", "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": "W", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, "duplicateCriteria": null, - "labelSingular": "Workflow", - "labelPlural": "Workflows", - "description": "A workflow", - "icon": "IconSettingsAutomation", + "labelSingular": "Workflow Version", + "labelPlural": "Workflow Versions", + "description": "A workflow version", + "icon": "IconVersions", "fieldsList": [ { "__typename": "Field", - "id": "8a1fd8cb-8558-4873-861d-77103d9a1bbf", - "universalIdentifier": "20202020-f02a-4181-8a81-efabcdefabcd", + "id": "2125f9e3-cdba-4328-9e4b-bb508144cd50", + "universalIdentifier": "20202020-f04a-41a1-8aa1-abcdefabcdef", "type": "UUID", "name": "id", "label": "Id", @@ -60,21 +59,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6a709559-9d64-4043-8abf-eeb1b5d8647a", - "universalIdentifier": "20202020-f02b-4182-9b82-fabcdefabcde", + "id": "39fd83ff-878f-4e9d-9839-8c3d79932875", + "universalIdentifier": "20202020-f04b-41a2-9ba2-bcdefabcdefa", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -86,8 +85,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -95,14 +94,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b100f19e-71ad-4ec8-b688-f908e9f41901", - "universalIdentifier": "20202020-f02c-4183-8c83-abcdefabcdef", + "id": "6242a0fd-e9de-4f82-8fb1-41f53c96588d", + "universalIdentifier": "20202020-f04c-41a3-8ca3-cdefabcdefab", "type": "DATE_TIME", "name": "updatedAt", "label": "Last update", @@ -114,8 +113,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -123,14 +122,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "10f573b3-a592-495c-9c90-4820c2e954b1", - "universalIdentifier": "20202020-f02d-4184-9d84-bcdefabcdefa", + "id": "4510b5a5-3967-4789-b914-67299dac98c3", + "universalIdentifier": "20202020-f04d-41a4-9da4-defabcdefabc", "type": "DATE_TIME", "name": "deletedAt", "label": "Deleted at", @@ -142,8 +141,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -151,140 +150,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "27517387-8213-484c-a44a-adb189f6befe", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f6a689cc-05fc-490c-87ab-9d465aed874a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "00591e33-b9b1-4519-9b3c-82f94c4e8ab5", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "febed164-d761-40dc-8310-98991e898318", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bb602741-b715-4c60-b5ce-e6d771ccac22", - "universalIdentifier": "20202020-6007-401a-8aa5-e6f48581a6f3", + "id": "b643a14e-7611-4905-910c-31d6d7d221da", + "universalIdentifier": "34f592a7-5c13-4c8b-8473-7bef00848b4e", "type": "ACTOR", "name": "createdBy", "label": "Created by", @@ -296,8 +169,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -307,14 +180,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "634e848e-ffae-48f8-b96e-c748f06ad81e", - "universalIdentifier": "3559831e-caf2-4eb5-9db1-b47bf968c774", + "id": "9756112a-441a-4f96-94c4-3f7efab42a8c", + "universalIdentifier": "4f8777e6-c5eb-40c6-bb4c-ed9dcf0d81e9", "type": "ACTOR", "name": "updatedBy", "label": "Updated by", @@ -326,8 +199,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -337,14 +210,173 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "3b0ff5c9-980e-44e1-acd0-586a0b7a110e", - "universalIdentifier": "20202020-535d-4ffa-b7f3-4fa0d5da1b7a", + "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", + "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": "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, + "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": "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, + "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": "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", + "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": "'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": "6b837484-0b32-4024-87d3-99d65649fb19", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3e76f732-dd96-4620-9580-ac723a77a99b", + "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-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": "186212ea-bdbe-452d-9321-7470a06372af", + "universalIdentifier": "20202020-3f17-44ef-b8c1-b282ae8469b2", "type": "TS_VECTOR", "name": "searchVector", "label": "Search vector", @@ -353,11 +385,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isCustom": false, "isActive": true, "isSystem": true, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -366,80 +398,27 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "60f6933f-ae9d-4224-b1b7-bd3d35a54a00", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "60f6933f-ae9d-4224-b1b7-bd3d35a54a00", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a0d71906-aa70-46e0-a97e-74332c080fd9", - "universalIdentifier": "20202020-c554-4c41-be7a-cf9cd4b0d512", + "id": "f29c7287-04f9-4a25-a548-f87f6c10c4e8", + "universalIdentifier": "20202020-b8e0-4e57-928d-b51671cc71f2", "type": "RELATION", "name": "favorites", "label": "Favorites", - "description": "Favorites linked to the workflow", + "description": "Favorites linked to the workflow version", "icon": "IconHeart", "isCustom": false, "isActive": true, "isSystem": false, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -447,52 +426,52 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", - "nameSingular": "workflow", - "namePlural": "workflows" + "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions" }, "targetObjectMetadata": { "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "id": "7d4a6af5-536c-45af-8040-224ee553ce05", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "a0d71906-aa70-46e0-a97e-74332c080fd9", + "id": "f29c7287-04f9-4a25-a548-f87f6c10c4e8", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "829b2346-e4be-4de5-8b73-87ebf3b173fd", - "name": "workflow" + "id": "2dcedf0e-9e22-413c-93b3-aee7e8d78b9d", + "name": "workflowVersion" } }, "morphRelations": null }, { "__typename": "Field", - "id": "d3408c03-0d38-4706-a2dd-566760199e6f", - "universalIdentifier": "20202020-906e-486a-a798-131a5f081faf", + "id": "2d284da2-4115-4792-a690-ff2000278db2", + "universalIdentifier": "20202020-fcb0-4695-b17e-3b43a421c633", "type": "RELATION", "name": "timelineActivities", "label": "Timeline Activities", - "description": "Timeline activities linked to the workflow", + "description": "Timeline activities linked to the version", "icon": "IconTimelineEvent", "isCustom": false, "isActive": true, "isSystem": false, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -500,30 +479,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", - "nameSingular": "workflow", - "namePlural": "workflows" + "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions" }, "targetObjectMetadata": { "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", + "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", "nameSingular": "timelineActivity", "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "d3408c03-0d38-4706-a2dd-566760199e6f", + "id": "2d284da2-4115-4792-a690-ff2000278db2", "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", + "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", "name": "target" } }, @@ -531,127 +510,76 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "ddfa2d27-fc46-42da-9c20-648d5ba15135", - "universalIdentifier": "20202020-9432-416e-8f3c-27ee3153d099", + "id": "3e2cb808-9b0b-4251-ab27-18d907f1ac70", + "universalIdentifier": "20202020-afa3-46c3-91b0-0631ca6aa1c8", "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ddfa2d27-fc46-42da-9c20-648d5ba15135", - "name": "versions" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "7b78b420-50aa-4b84-baa0-795c6f2bacb0", - "name": "workflow" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "206c3e94-19df-4a5f-894a-37efcaf1c1bc", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "678a973d-c1ae-4b73-86c4-530b5df455e9", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "206c3e94-19df-4a5f-894a-37efcaf1c1bc", - "name": "runs" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "f24d129b-6c23-4c3c-b980-9ce2e0dbc4e0", - "name": "workflow" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ea9365ed-3788-41d8-a878-34366c5bf1c6", - "universalIdentifier": "20202020-3319-4234-a34c-117ecad2b8a9", - "type": "RELATION", - "name": "automatedTriggers", - "label": "Automated Triggers", - "description": "Workflow automated triggers linked to the workflow.", + "name": "workflow", + "label": "Workflow", + "description": "WorkflowVersion workflow", "icon": "IconSettingsAutomation", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, - "isNullable": false, + "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", + "nameSingular": "workflow", + "namePlural": "workflows" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "3e2cb808-9b0b-4251-ab27-18d907f1ac70", + "name": "workflow" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "7a5b8146-e866-4789-9d1c-168182c85901", + "name": "versions" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "ef9239be-aa42-4804-badd-154638418497", + "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-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -659,31 +587,31 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", - "nameSingular": "workflow", - "namePlural": "workflows" + "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions" }, "targetObjectMetadata": { "__typename": "Object", - "id": "74d5d075-7a00-4b7e-a6f4-6ff9a838377c", - "nameSingular": "workflowAutomatedTrigger", - "namePlural": "workflowAutomatedTriggers" + "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", + "nameSingular": "workflowRun", + "namePlural": "workflowRuns" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "ea9365ed-3788-41d8-a878-34366c5bf1c6", - "name": "automatedTriggers" + "id": "ef9239be-aa42-4804-badd-154638418497", + "name": "runs" }, "targetFieldMetadata": { "__typename": "Field", - "id": "a5776889-e2b0-4f17-bbca-6b511e08c1a7", - "name": "workflow" + "id": "86e20eb8-69f9-453b-946c-919f04163304", + "name": "workflowVersion" } }, "morphRelations": null @@ -692,10 +620,31 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "66d1b2e6-822f-4a11-9fad-dada66829ce4", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_d09fc4b1711543f42c127270f1e", + "id": "fa97cbb1-e33b-4192-b9d5-bc62013f11a4", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_6dbfc4d091e55b676e5f698c2c2", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "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", "indexWhereClause": null, "indexType": "GIN", "isUnique": false, @@ -703,10 +652,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "0393b0af-5b3d-4dc6-8c50-4853e9c204c1", - "fieldMetadataId": "3b0ff5c9-980e-44e1-acd0-586a0b7a110e", - "createdAt": "2026-02-25T16:13:34.290Z", - "updatedAt": "2026-02-25T16:13:34.290Z", + "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", "order": 0 } ] @@ -718,33 +667,59 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "fb79c8a1-e1ec-4db5-bf1f-98b4c0d0820b", - "universalIdentifier": "20202020-0408-4f38-b8a8-4d5e3e26e24d", - "nameSingular": "blocklist", - "namePlural": "blocklists", - "isCustom": false, + "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", + "universalIdentifier": "da36fc7e-09b5-4a60-a082-8466d79f5157", + "nameSingular": "rocket", + "namePlural": "rockets", + "isCustom": true, "isRemote": false, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "a9907c37-9f5f-4819-9367-d7481d35ad36", + "createdAt": "2026-02-26T11:55:16.644Z", + "updatedAt": "2026-02-26T11:55:16.644Z", + "labelIdentifierFieldMetadataId": "ec624c4b-e37e-4a64-bbcf-0c34ae348aee", "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "shortcut": null, "isLabelSyncedWithName": false, - "isSearchable": false, + "isSearchable": true, "duplicateCriteria": null, - "labelSingular": "Blocklist", - "labelPlural": "Blocklists", - "description": "Blocklist", - "icon": "IconForbid2", + "labelSingular": "Rocket", + "labelPlural": "Rockets", + "description": "A rocket", + "icon": "IconRocket", "fieldsList": [ { "__typename": "Field", - "id": "481362a9-2538-41db-8a92-7e597fef395b", - "universalIdentifier": "20202020-b01a-4011-8b11-5a9fc27fbf6e", + "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", "type": "UUID", "name": "id", "label": "Id", @@ -755,22 +730,22 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isSystem": true, "isUIReadOnly": true, "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "isUnique": true, + "createdAt": "2026-02-26T11:55:16.644Z", + "updatedAt": "2026-02-26T11:55:16.644Z", "defaultValue": "uuid", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b47c3900-61c0-4665-8306-ef56c8cb1218", - "universalIdentifier": "20202020-b01b-4012-9c12-6bafd38fcf7f", + "id": "5de1bdf9-0ff7-4f2c-9095-224aec5a86cc", + "universalIdentifier": "0056c24d-a588-4e54-9706-d32deadd2044", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -782,79 +757,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:16.644Z", + "updatedAt": "2026-02-26T11:55:16.644Z", "defaultValue": "now", "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, + "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "2b194c16-e78e-4a5e-a93d-693cafd92a62", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "902db0f5-abf1-4f66-a6b7-37a412194f75", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7d884947-b070-4e27-9ebf-439042fa87a2", - "universalIdentifier": "b80db15d-8dc2-4f47-a072-15030941a9d1", + "id": "7161296a-1b2f-49ec-adb4-f1f0c721e2c6", + "universalIdentifier": "a1429bb9-1a98-490d-945f-b0596e8ff94b", "type": "ACTOR", "name": "createdBy", "label": "Created by", @@ -866,1710 +783,89 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:16.644Z", + "updatedAt": "2026-02-26T11:55:16.644Z", "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null + "name": "''", + "source": "'MANUAL'" }, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "cbaceba8-aca1-4e2c-8cc2-43c49db0f695", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8522e61a-b2f7-4a2e-a272-8323aa988bb7", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e0ab12c4-161b-47f9-8d30-0c351e779bf2", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"handle\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a9907c37-9f5f-4819-9367-d7481d35ad36", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bf1247f9-2941-4d0a-818d-04784cdc9511", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workspaceMemberId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "fb79c8a1-e1ec-4db5-bf1f-98b4c0d0820b", - "nameSingular": "blocklist", - "namePlural": "blocklists" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "bf1247f9-2941-4d0a-818d-04784cdc9511", - "name": "workspaceMember" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "36a9e226-a109-4c53-9a42-46a6cc387061", - "name": "blocklist" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "f8c5c47c-a16e-4170-b579-b9e7a5c0b4b1", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_9e247b4ab168100e4aa8fb6a853", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "c927beee-d46f-4c8f-9667-703258d9f5fb", - "fieldMetadataId": "bf1247f9-2941-4d0a-818d-04784cdc9511", - "createdAt": "2026-02-25T16:13:34.231Z", - "updatedAt": "2026-02-25T16:13:34.231Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "ee48f10c-9a42-4d4e-ba94-ed4bcf801841", - "universalIdentifier": "20202020-a1c3-47a6-9732-27e5b1e8436d", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "4153851f-78a2-44c1-baa7-ce18cc8178cf", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "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": "741069f5-675f-44d0-bd75-c1f893566fa4", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "309e0610-29ee-40bb-997f-e8f15002707c", - "universalIdentifier": "20202020-c03b-4042-9b42-6f7a8b9cadbe", + "id": "97905b9b-7e3b-49be-baf5-d9bb50de1917", + "universalIdentifier": "d891ced5-7cab-4b90-afff-eab74bb99fb0", "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5ab67bb1-8770-4f43-a839-8ba49e11b08b", - "universalIdentifier": "20202020-c03c-4043-8c43-7a8b9cadbecf", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", + "name": "deletedAt", + "label": "Deleted at", + "description": "Deletion date", "icon": "IconCalendarClock", "isCustom": false, "isActive": true, "isSystem": true, "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "86be242f-01c3-4a74-98ef-7319227fbb18", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:16.644Z", + "updatedAt": "2026-02-26T11:55:16.644Z", "defaultValue": null, "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c4f3179b-fc70-438b-a60b-ab4f7d4825e6", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "54b4a44c-ae56-4ea7-ba00-010f75f033ce", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "60988264-ed5a-47f9-b023-9ca8b9e9cb07", - "universalIdentifier": "fcfa672c-ce6d-4fc1-b978-db58a4cc14f4", + "id": "cc551fa8-7936-4857-8e34-99bc81ff1acc", + "universalIdentifier": "69142fef-651a-4e59-bda9-536a4d7f7b3f", "type": "POSITION", "name": "position", "label": "Position", - "description": "Calendar event participant record position", + "description": "Position", "icon": "IconHierarchy2", "isCustom": false, "isActive": true, "isSystem": true, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "ecc2be3e-3f21-4993-9ea9-4a4bde6b1cc1", - "universalIdentifier": "c9dccf32-64ea-433e-a9a7-09993343bae0", + "id": "87b3b76b-ff7d-43eb-b524-c784a393dba4", + "universalIdentifier": "d664559b-b541-45f3-ae50-c03fe524bc11", "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"handle\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4153851f-78a2-44c1-baa7-ce18cc8178cf", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "007485d1-a329-4cc0-96f3-9d5eeaf3ef7d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "32e50b1e-a965-4ca6-b5a5-52af31b90d7d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e2176dab-dc74-4e1f-931b-a8b8999c6bbf", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "792ee9ef-aee2-439d-a099-4bfc6d298e87", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "calendarEventId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "ee48f10c-9a42-4d4e-ba94-ed4bcf801841", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4b282a4d-d369-4f11-84ef-41c536cec32a", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "792ee9ef-aee2-439d-a099-4bfc6d298e87", - "name": "calendarEvent" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "69764f50-1afa-40c2-bcaf-55eab1c0529a", - "name": "calendarEventParticipants" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f09c239f-3c5b-4384-bce3-0627cb6922fe", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "ee48f10c-9a42-4d4e-ba94-ed4bcf801841", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "f09c239f-3c5b-4384-bce3-0627cb6922fe", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "8408843b-1389-40ae-88ac-14fa2f2ab0f4", - "name": "calendarEventParticipants" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a19f55a0-131d-47f8-8bd9-8dc55bdf08ff", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workspaceMemberId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "ee48f10c-9a42-4d4e-ba94-ed4bcf801841", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a19f55a0-131d-47f8-8bd9-8dc55bdf08ff", - "name": "workspaceMember" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d2d366d9-4bfb-401e-80c4-e313ee29040f", - "name": "calendarEventParticipants" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "dd8ec7a7-8c63-487c-8817-d281a5125c79", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_40150517e4f1ab6154e426eafce", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "49d9b7b8-b65d-47d4-992a-9366c6326d87", - "fieldMetadataId": "792ee9ef-aee2-439d-a099-4bfc6d298e87", - "createdAt": "2026-02-25T16:13:34.236Z", - "updatedAt": "2026-02-25T16:13:34.236Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "ea52c9aa-9f36-4df2-80b8-d789a065b37d", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_ba8418718688702d3113fde2fe1", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "449b875e-154c-426e-896d-4942ccc8fc5c", - "fieldMetadataId": "f09c239f-3c5b-4384-bce3-0627cb6922fe", - "createdAt": "2026-02-25T16:13:34.238Z", - "updatedAt": "2026-02-25T16:13:34.238Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "b42c670b-e7bd-4205-a74c-a2a365734834", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_70c8cfc3c0c8407789db32ad9cf", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "9ce0beed-f57f-4b1a-81ac-e9015a1e9490", - "fieldMetadataId": "a19f55a0-131d-47f8-8bd9-8dc55bdf08ff", - "createdAt": "2026-02-25T16:13:34.239Z", - "updatedAt": "2026-02-25T16:13:34.239Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "e2717a89-8e3e-4d13-b5a0-3cbeaba7d75e", - "universalIdentifier": "20202020-ad1e-4127-bccb-d83ae04d2ccb", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "8f429127-4092-44e9-bd2f-e5769addff15", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "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": "8f429127-4092-44e9-bd2f-e5769addff15", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7baaeec4-d071-444e-bd25-0d25a494f72a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "797cd4cc-2d39-4acf-a89e-2f841325c650", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4e1fda25-6963-4134-94ec-ba9980c571ec", - "universalIdentifier": "20202020-b01d-40b4-9db4-8d9eafbacbdc", - "type": "DATE_TIME", - "name": "deletedAt", - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus", + "description": "Search vector", + "icon": "IconSearch", "isCustom": false, "isActive": true, "isSystem": true, "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8bf5d7e8-700d-406c-aec2-0bd0066ee67e", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a8965bc6-c2ea-4d6a-b7d8-6acc78213728", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "159889e0-ecd0-4ba6-938c-fc3a5e09051a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fceebd90-7075-437d-8efb-d5893c29ebee", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"messageExternalId\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c7001946-03a9-4c1d-8dcc-59fd51d591c9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bbbe264c-f3dd-491d-b849-75a640e1fe9d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e8a9710b-e2c0-4383-8a81-2303437cadb2", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "72373aa3-cb85-490d-a999-8ee7d5e76e4f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e2717a89-8e3e-4d13-b5a0-3cbeaba7d75e", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c7696dce-461e-4549-bda6-faf7e93eaa24", - "nameSingular": "message", - "namePlural": "messages" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "72373aa3-cb85-490d-a999-8ee7d5e76e4f", - "name": "message" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d8d356fb-fc6b-4106-b051-dc37d5bec50e", - "name": "messageChannelMessageAssociations" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a4ece2be-f2d4-4db9-9c98-1491d3ded10f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageChannelId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e2717a89-8e3e-4d13-b5a0-3cbeaba7d75e", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "6fb3608a-7e74-4b6e-94b6-e89e573f80c0", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a4ece2be-f2d4-4db9-9c98-1491d3ded10f", - "name": "messageChannel" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6f256134-12bb-432c-81a6-110b6df4e768", - "name": "messageChannelMessageAssociations" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a4fdf9f1-2fd4-45af-b837-375ed36e20e2", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageThreadId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e2717a89-8e3e-4d13-b5a0-3cbeaba7d75e", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "28084101-2436-4a49-af93-c782446dbdd4", - "nameSingular": "messageThread", - "namePlural": "messageThreads" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a4fdf9f1-2fd4-45af-b837-375ed36e20e2", - "name": "messageThread" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4d3d435f-2026-437d-809b-3c85a579dd16", - "name": "messageChannelMessageAssociations" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "eac3bc16-700a-4746-adae-9d482588877d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e2717a89-8e3e-4d13-b5a0-3cbeaba7d75e", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "d6cfa8b8-dfc8-47be-a6c6-3d43fd163394", - "nameSingular": "messageChannelMessageAssociationMessageFolder", - "namePlural": "messageChannelMessageAssociationMessageFolders" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "eac3bc16-700a-4746-adae-9d482588877d", - "name": "messageFolders" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "41104617-e267-4796-beee-03b6c7a10779", - "name": "messageChannelMessageAssociation" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "9c223a59-84cd-4954-8e75-f1018958bd9d", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_2e85541b739066142845bdef99a", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "0305edbd-e535-4856-a115-6d2a749a7b67", - "fieldMetadataId": "a4ece2be-f2d4-4db9-9c98-1491d3ded10f", - "createdAt": "2026-02-25T16:13:34.261Z", - "updatedAt": "2026-02-25T16:13:34.261Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "c5330e7a-3061-422d-888c-e497a5615b42", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_3f4c0095cf17b62868bec089fab", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "7086c85e-f489-4d90-9933-bf02ce741879", - "fieldMetadataId": "72373aa3-cb85-490d-a999-8ee7d5e76e4f", - "createdAt": "2026-02-25T16:13:34.262Z", - "updatedAt": "2026-02-25T16:13:34.262Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "e4103184-4825-4fb9-9031-0202d1b9f206", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_da56d8b595a778d404eae01f29b", - "indexWhereClause": "\"deletedAt\" IS NULL", - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "8e1c6faf-68f3-4d97-9f07-ca5bcf175d0b", - "fieldMetadataId": "a4ece2be-f2d4-4db9-9c98-1491d3ded10f", - "createdAt": "2026-02-25T16:13:34.262Z", - "updatedAt": "2026-02-25T16:13:34.262Z", - "order": 0 - }, - { - "__typename": "IndexField", - "id": "41e111f4-d0e7-48db-b75e-6c21038440e1", - "fieldMetadataId": "72373aa3-cb85-490d-a999-8ee7d5e76e4f", - "createdAt": "2026-02-25T16:13:34.262Z", - "updatedAt": "2026-02-25T16:13:34.262Z", - "order": 1 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "e123213f-74b3-4667-a970-5708339b9772", - "universalIdentifier": "20202020-4955-4fd9-8e59-2dbd373f2a46", - "nameSingular": "messageFolder", - "namePlural": "messageFolders", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "25c8aa91-a96f-457a-a225-b877fb3b40f3", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Message Folder", - "labelPlural": "Message Folders", - "description": "Message Folders", - "icon": "IconFolder", - "fieldsList": [ - { - "__typename": "Field", - "id": "25c8aa91-a96f-457a-a225-b877fb3b40f3", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6f8a22b2-b3e6-49eb-827a-086a8fce7f2a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "74adea36-0f0a-4fa8-8608-be42f04e7de0", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5b8343c5-8bfd-4ec1-a858-11f6bc0188ab", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d553ca90-ce7c-4f63-b3bb-626140dd65bd", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fbc5a21f-095a-4e0f-9f4d-fe5c1b7529eb", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e81acade-edb5-4c63-9131-a4e8dcd10083", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "90ca8529-2db8-4847-9edf-b5013b30414a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:16.644Z", + "updatedAt": "2026-02-26T11:55:16.644Z", "defaultValue": null, "options": null, "settings": { @@ -2578,426 +874,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "2f6b9524-ba8b-4ba5-bb30-172e08f2d2af", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "391685ca-e8c2-465f-a623-383052251dd3", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "47222d51-17be-4967-8b94-e2f26cb675e9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9df8cbaa-5ed9-498f-8430-75c7d89d79af", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4eafc701-cba6-42da-a2e9-9b81237a4813", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9e121e49-2da2-4ba8-8b49-646c579b7a54", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1e82a75e-c5bd-4561-a384-df5238c26dd7", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "cbc2b85c-eb1f-4f72-9ab0-d496dd268a6f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageChannelId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e123213f-74b3-4667-a970-5708339b9772", - "nameSingular": "messageFolder", - "namePlural": "messageFolders" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "6fb3608a-7e74-4b6e-94b6-e89e573f80c0", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "cbc2b85c-eb1f-4f72-9ab0-d496dd268a6f", - "name": "messageChannel" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a8f56178-e803-401a-91fe-a4e084ea8b05", - "name": "messageFolders" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "945332f3-709f-4025-899f-66445c35d89b", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e123213f-74b3-4667-a970-5708339b9772", - "nameSingular": "messageFolder", - "namePlural": "messageFolders" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "d6cfa8b8-dfc8-47be-a6c6-3d43fd163394", - "nameSingular": "messageChannelMessageAssociationMessageFolder", - "namePlural": "messageChannelMessageAssociationMessageFolders" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "945332f3-709f-4025-899f-66445c35d89b", - "name": "messageChannelMessageAssociationMessageFolders" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "72855c15-0d48-4332-a880-2754eca7851a", - "name": "messageFolder" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "6df94a74-eeeb-493a-94bc-b12d1a3c4984", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_a1bbe482462d9f016582d99d4e6", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "fa1db36c-be8f-4cf9-8554-ed560ba93528", - "fieldMetadataId": "cbc2b85c-eb1f-4f72-9ab0-d496dd268a6f", - "createdAt": "2026-02-25T16:13:34.265Z", - "updatedAt": "2026-02-25T16:13:34.265Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "dc94a21e-9cec-468b-8251-686c0230a854", - "universalIdentifier": "20202020-977e-46b2-890b-c3002ddfd5c5", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "70efdd5d-b5be-41cd-9894-5ec153019212", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Connected Account", - "labelPlural": "Connected Accounts", - "description": "A connected account", - "icon": "IconAt", - "fieldsList": [ - { - "__typename": "Field", - "id": "48a83e06-feb1-44fb-a1e0-89ed37a5107c", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0fb32f14-8a53-4437-b22c-aaf8100c7f13", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2e2173a0-5bdf-45a9-8f62-138b48e9af8b", - "universalIdentifier": "20202020-c06c-4073-8c73-7e8f9aabbccd", + "id": "ef04ffe6-da83-42c6-a742-00ff0d332519", + "universalIdentifier": "d08574fd-020f-41ab-bd77-c0978e0478da", "type": "DATE_TIME", "name": "updatedAt", "label": "Last update", @@ -3009,81 +893,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:16.644Z", + "updatedAt": "2026-02-26T11:55:16.644Z", "defaultValue": "now", "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "10ad0135-aa2c-4eb0-95cc-ec816cfb79f8", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ccbcf0d3-bfa3-4bc3-88fc-3a0170934e51", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "69a0f302-e2fa-4d84-8116-6759bb98bb3e", - "universalIdentifier": "0a84c0e1-f9fc-47d5-8ac9-58538e50a9f9", + "id": "0ace36d9-76a8-415a-9b83-23ecf6588234", + "universalIdentifier": "cf01336f-24bc-480f-a40c-215b21fa6cdf", "type": "ACTOR", "name": "updatedBy", "label": "Updated by", @@ -3095,353 +919,37 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:16.644Z", + "updatedAt": "2026-02-26T11:55:16.644Z", "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null + "name": "''", + "source": "'MANUAL'" }, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a3c02f4a-ff85-4aeb-92b7-4604fc2bf888", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f46012a6-f735-463d-92f5-14fb13f26e56", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"handle\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "70efdd5d-b5be-41cd-9894-5ec153019212", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9fa9a6b6-a655-4190-93ee-cd21daaccd1f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "'google'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9edabc06-ec49-409f-84c8-b8122fb13cf4", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bfb6739f-de12-47cc-a5f3-db8118fe6de9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6afa698f-8058-4444-bc05-555bbae9ec34", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "efb6b633-15cc-482c-a98e-17f9600bda7d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "95681ef6-5c38-453d-8e34-bc38efa5de24", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "af794fed-3f57-46c0-bd4e-5f5f942b5df2", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ab939919-8caf-49a2-a745-71e26f049492", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6479d2a1-c4f4-4de5-810d-ab46f9066302", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "02741b71-b5df-43ae-9b8c-4b4d824052a0", - "universalIdentifier": "20202020-af4a-47bb-99ec-51911c1d3977", + "id": "900bb386-6dc1-47c1-b90b-bba88e3b3ae9", + "universalIdentifier": "7ce147b9-cc5b-4285-a507-8bd7e6ad22d7", "type": "RELATION", - "name": "calendarChannels", - "label": "Calendar Channels", - "description": "Calendar Channels", - "icon": "IconCalendar", - "isCustom": false, + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Rockets tied to the Timeline Activity", + "icon": "IconBuildingSkyscraper", + "isCustom": true, "isActive": true, "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, + "isUIReadOnly": false, + "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:16.644Z", + "updatedAt": "2026-02-26T11:55:16.644Z", "defaultValue": null, "options": null, "settings": { @@ -3449,139 +957,351 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "dc94a21e-9cec-468b-8251-686c0230a854", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" + "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", + "nameSingular": "rocket", + "namePlural": "rockets" }, "targetObjectMetadata": { "__typename": "Object", - "id": "db4b46af-a2eb-447a-bbe5-4a56f36cacd7", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" + "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "02741b71-b5df-43ae-9b8c-4b4d824052a0", - "name": "calendarChannels" + "id": "900bb386-6dc1-47c1-b90b-bba88e3b3ae9", + "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "a472eb18-e9db-4782-9cff-4231a70b9cba", - "name": "connectedAccount" + "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", + "name": "target" } }, "morphRelations": null }, { "__typename": "Field", - "id": "1b42ad28-703d-465a-b0f5-0b3a1ba2c514", - "universalIdentifier": "20202020-3517-4896-afac-b1d0aa362af6", + "id": "cc6bb53d-87a4-43cd-b6dd-465ca1465010", + "universalIdentifier": "96ed3a2e-4529-406f-a99e-3400c9e0b5d8", "type": "RELATION", - "name": "accountOwner", - "label": "Account Owner", - "description": "Account Owner", - "icon": "IconUserCircle", - "isCustom": false, + "name": "favorites", + "label": "Favorites", + "description": "Rockets tied to the Favorite", + "icon": "IconBuildingSkyscraper", + "isCustom": true, "isActive": true, "isSystem": false, - "isUIReadOnly": true, - "isNullable": false, + "isUIReadOnly": false, + "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:16.644Z", + "updatedAt": "2026-02-26T11:55:16.644Z", "defaultValue": null, "options": null, "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "accountOwnerId" + "relationType": "ONE_TO_MANY" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "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", + "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-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": "48397bb7-38df-43dd-81b8-2593bef340ca", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "f03d771a-5521-411d-8233-6d87dc508f62", + "name": "attachments" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "1e75aaab-5f8d-4480-a2eb-96fb78d90b89", + "universalIdentifier": "0d3f6459-fa91-44c1-8c04-648dbde8f593", + "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-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": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "1e75aaab-5f8d-4480-a2eb-96fb78d90b89", + "name": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0a1d53ce-6eb7-4a4a-b16b-241cf5409750", + "universalIdentifier": "d0722c56-d1c8-4151-b558-b5dedf701d3e", + "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-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": "5668785e-f248-4e4a-bd3e-d86806ee015b", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "0a1d53ce-6eb7-4a4a-b16b-241cf5409750", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "95e31525-de5a-4f2a-95df-0d9889f5ee76", + "universalIdentifier": "f7eeee9a-7763-439d-9f52-52695650e720", + "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-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": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", + "nameSingular": "pet", + "namePlural": "pets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "95e31525-de5a-4f2a-95df-0d9889f5ee76", + "name": "ownedPets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "a7409fe9-80ec-48cd-8f64-90dc2c36ad6a", + "name": "polymorphicOwner" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "470a37f2-8445-4ac3-803a-fd2c79314f25", + "universalIdentifier": "624c227d-d9b6-401a-8e03-85487c539115", + "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-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": "dc94a21e-9cec-468b-8251-686c0230a854", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" + "id": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", + "nameSingular": "rocket", + "namePlural": "rockets" }, "targetObjectMetadata": { "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" + "id": "952fc479-8fcf-4025-bab3-847c7d20c3b6", + "nameSingular": "pet", + "namePlural": "pets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "1b42ad28-703d-465a-b0f5-0b3a1ba2c514", - "name": "accountOwner" + "id": "470a37f2-8445-4ac3-803a-fd2c79314f25", + "name": "helpedPets" }, "targetFieldMetadata": { "__typename": "Field", - "id": "7db453c5-8015-4f72-a4a5-96b3179c87b5", - "name": "connectedAccounts" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f35583e2-f7a6-400e-8229-93adae251c25", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "dc94a21e-9cec-468b-8251-686c0230a854", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "6fb3608a-7e74-4b6e-94b6-e89e573f80c0", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "f35583e2-f7a6-400e-8229-93adae251c25", - "name": "messageChannels" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "01d488dc-8cb9-46c2-8039-ca48c7859be4", - "name": "connectedAccount" + "id": "4b45c5f3-4d27-4c1d-8176-0ab4c6f3982a", + "name": "polymorphicHelper" } }, "morphRelations": null @@ -3590,21 +1310,42 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "e2bb931c-7499-4c6f-91f2-6d197d0c0bb0", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_3c8bbe54bd34f40dfe2d05ac964", + "id": "9c0ef0f9-499c-4e86-a387-a3481bc621f6", + "createdAt": "2026-02-26T11:55:16.644Z", + "updatedAt": "2026-02-26T11:55:16.644Z", + "name": "IDX_530792e4278e7696c4e3e3e55f8", "indexWhereClause": null, - "indexType": "BTREE", + "indexType": "GIN", "isUnique": false, "isCustom": false, "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "87783a2c-f4b5-40fd-a17c-d8a397d61a7d", - "fieldMetadataId": "1b42ad28-703d-465a-b0f5-0b3a1ba2c514", - "createdAt": "2026-02-25T16:13:34.245Z", - "updatedAt": "2026-02-25T16:13:34.245Z", + "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", "order": 0 } ] @@ -3616,7 +1357,1080 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "db4b46af-a2eb-447a-bbe5-4a56f36cacd7", + "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", + "universalIdentifier": "20202020-6736-4337-b5c4-8b39fae325a5", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities", + "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", + "imageIdentifierFieldMetadataId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "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": "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", + "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": "669b9819-0ca0-478a-a36e-150ff77d7a45", + "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-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": "39f454d6-d563-4710-8273-5f293b7c8bd1", + "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-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": "4e643b75-8662-441d-a0b1-fcc92827856e", + "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-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": "04169dab-7e08-42b4-8834-45d980cc875b", + "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-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": "c9e6c576-61f5-4829-8d99-a5c3f3412960", + "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-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "defaultValue": "now", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "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", + "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": "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", + "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": "bda47d4a-59e9-459f-a20e-a61c39836fa4", + "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-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "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": "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" + } + }, + "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, + "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": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "targetPetId" + }, + "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" + } + }, + { + "__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" + } + }, + { + "__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" + } + }, + { + "__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" + } + } + ] + } + ], + "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 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "de02d560-0a2d-44b3-b8ba-4b471f9551bb", "universalIdentifier": "20202020-e8f2-40e1-a39c-c0e0039c5034", "nameSingular": "calendarChannel", "namePlural": "calendarChannels", @@ -3625,11 +2439,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "b3b5ff68-a109-4d12-9d39-f4d070fab0cf", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "labelIdentifierFieldMetadataId": "7d61e07b-36eb-485d-8d1c-d1e5e2802817", "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, @@ -3641,7 +2455,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "fieldsList": [ { "__typename": "Field", - "id": "6c429587-5710-4e6d-b6dd-ff882759683b", + "id": "d6dc57bc-4069-47ea-8ac6-3cb829e46434", "universalIdentifier": "20202020-c02a-4031-8a31-1a2f3b4c5d6e", "type": "UUID", "name": "id", @@ -3654,20 +2468,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "99adfc6b-bc6f-4086-b5c9-25efaa145f96", + "id": "e7e97838-6aa5-476b-af4b-b9641e4b3e06", "universalIdentifier": "20202020-c02b-4032-9b32-2b3f4c5d6e7f", "type": "DATE_TIME", "name": "createdAt", @@ -3680,8 +2494,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -3689,13 +2503,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "3ff9a249-aa17-4ac1-9456-0f46b219f412", + "id": "85bca524-80cb-472b-a3ee-9acd2dc2f136", "universalIdentifier": "20202020-c02c-4033-8c33-3c4f5d6e7f8a", "type": "DATE_TIME", "name": "updatedAt", @@ -3708,8 +2522,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -3717,13 +2531,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "7e3b7a8f-0cb2-4985-9073-31227ee890e6", + "id": "56f666cf-d453-452a-93d4-8ad807e261b4", "universalIdentifier": "20202020-c02d-4034-9d34-4d5f6e7f8a9b", "type": "DATE_TIME", "name": "deletedAt", @@ -3736,8 +2550,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -3745,13 +2559,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6d8ea0bd-2e0c-4669-a80b-5ea65165532c", + "id": "75f79509-3f8f-46eb-9863-077409fa83c6", "universalIdentifier": "664db1a0-76f4-4429-8452-f8e250ab7545", "type": "ACTOR", "name": "createdBy", @@ -3764,8 +2578,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -3775,13 +2589,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b32ddc7f-44a5-46bb-853d-fa40e2ecf787", + "id": "9a4f704b-903f-4b0c-9584-7ffc4bc5c5dc", "universalIdentifier": "6a397eab-3700-4b08-9eb9-d16b61876193", "type": "ACTOR", "name": "updatedBy", @@ -3794,8 +2608,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -3805,13 +2619,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "d3ebc509-621c-4aff-b731-9e126e837b62", + "id": "794d591e-5eaf-47da-9f0d-76fb917b84ec", "universalIdentifier": "566609c9-1c8b-4899-91bb-0af140a89004", "type": "POSITION", "name": "position", @@ -3824,20 +2638,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "d8123ce9-fa59-40e6-998a-ec0dade36fd5", + "id": "d89fbee3-ce3b-4805-9dd0-618a6fde4dff", "universalIdentifier": "bc9a982c-c314-49d6-818a-2661ce7e918f", "type": "TS_VECTOR", "name": "searchVector", @@ -3850,8 +2664,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -3860,13 +2674,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b3b5ff68-a109-4d12-9d39-f4d070fab0cf", + "id": "7d61e07b-36eb-485d-8d1c-d1e5e2802817", "universalIdentifier": "20202020-1d08-420a-9aa7-22e0f298232d", "type": "TEXT", "name": "handle", @@ -3879,20 +2693,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "d073a2a1-5049-4e91-ac4c-d118734bb19e", + "id": "cc7a848c-d602-4937-bbf4-195239f8a641", "universalIdentifier": "20202020-1b07-4796-9f01-d626bab7ca4d", "type": "SELECT", "name": "visibility", @@ -3905,8 +2719,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "'SHARE_EVERYTHING'", "options": [ { @@ -3927,13 +2741,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "0efc2cce-bbe2-4b5f-9533-6da58fe48b9f", + "id": "c552c529-e1c1-4bf5-a8ef-b90ce065e807", "universalIdentifier": "20202020-50fb-404b-ba28-369911a3793a", "type": "BOOLEAN", "name": "isContactAutoCreationEnabled", @@ -3946,20 +2760,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "4bf5c4f5-aa3d-428e-a84b-0b7b67be66b7", + "id": "b14c58bd-f119-4235-87dd-45e0676f81d9", "universalIdentifier": "20202020-b55d-447d-b4df-226319058775", "type": "SELECT", "name": "contactAutoCreationPolicy", @@ -3972,8 +2786,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "'AS_PARTICIPANT_AND_ORGANIZER'", "options": [ { @@ -4008,13 +2822,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "8465be65-bde4-4bc7-ba2f-e70e685ee15b", + "id": "0309aa14-d417-4af4-9d19-4ed8f4514ca6", "universalIdentifier": "20202020-fe19-4818-8854-21f7b1b43395", "type": "BOOLEAN", "name": "isSyncEnabled", @@ -4027,20 +2841,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "3e3d36df-eba3-4bff-88d4-fb33dfe906b7", + "id": "9108d4e1-23d3-4153-beba-443b85675226", "universalIdentifier": "20202020-bac2-4852-a5cb-7a7898992b70", "type": "TEXT", "name": "syncCursor", @@ -4053,20 +2867,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "91515e60-22ce-4441-a664-80b0cdd26bb3", + "id": "fea8879f-af39-451f-abc5-efd6570f05d7", "universalIdentifier": "20202020-7116-41da-8b4b-035975c4eb6a", "type": "SELECT", "name": "syncStatus", @@ -4079,8 +2893,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": [ { @@ -4122,13 +2936,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b71cc7c3-3b37-463c-94c2-180f8fc27b19", + "id": "75458801-df8d-4e34-a8d5-256a73f17e56", "universalIdentifier": "20202020-6246-42e6-b5cd-003bd921782c", "type": "SELECT", "name": "syncStage", @@ -4141,8 +2955,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "'PENDING_CONFIGURATION'", "options": [ { @@ -4205,13 +3019,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "2af433d0-1a9f-4244-a7ca-2f06f7b8c20f", + "id": "7a198769-cfb7-4653-bd5e-e7e6e6c86d50", "universalIdentifier": "20202020-a934-46f1-a8e7-9568b1e3a53e", "type": "DATE_TIME", "name": "syncStageStartedAt", @@ -4224,20 +3038,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "58f94cb1-1c2e-49a6-8268-1b0eb8daf71b", + "id": "38be620c-4ae7-4611-a011-431d1a0b18d5", "universalIdentifier": "20202020-2ff5-4f70-953a-3d0d36357576", "type": "DATE_TIME", "name": "syncedAt", @@ -4250,20 +3064,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a57d6eec-33c3-4b81-854a-8ce6676b617b", + "id": "a0b7f55d-70e7-42d6-a419-91940b669fd7", "universalIdentifier": "20202020-525c-4b76-b9bd-0dd57fd11d61", "type": "NUMBER", "name": "throttleFailureCount", @@ -4276,20 +3090,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "0bc78bf5-3fc8-4258-aae9-6780d2d4fefc", + "id": "d917b55a-24e7-4fbc-945d-11928e6526f3", "universalIdentifier": "20202020-afb0-4a9f-979f-2d5087d71d09", "type": "RELATION", "name": "calendarChannelEventAssociations", @@ -4302,8 +3116,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -4311,30 +3125,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "db4b46af-a2eb-447a-bbe5-4a56f36cacd7", + "id": "de02d560-0a2d-44b3-b8ba-4b471f9551bb", "nameSingular": "calendarChannel", "namePlural": "calendarChannels" }, "targetObjectMetadata": { "__typename": "Object", - "id": "acffe46d-155f-4777-93d6-c3de4f859b14", + "id": "93e2f848-7d84-47aa-85cb-fb1a7bcce3da", "nameSingular": "calendarChannelEventAssociation", "namePlural": "calendarChannelEventAssociations" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "0bc78bf5-3fc8-4258-aae9-6780d2d4fefc", + "id": "d917b55a-24e7-4fbc-945d-11928e6526f3", "name": "calendarChannelEventAssociations" }, "targetFieldMetadata": { "__typename": "Field", - "id": "bb857bdb-f747-4e18-ab0e-afd57efc2556", + "id": "49543153-9edf-4626-93da-55e9aad0738a", "name": "calendarChannel" } }, @@ -4342,7 +3156,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "a472eb18-e9db-4782-9cff-4231a70b9cba", + "id": "d1e26c42-511b-4052-af18-def236892aca", "universalIdentifier": "20202020-95b1-4f44-82dc-61b042ae2414", "type": "RELATION", "name": "connectedAccount", @@ -4355,8 +3169,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -4366,30 +3180,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "db4b46af-a2eb-447a-bbe5-4a56f36cacd7", + "id": "de02d560-0a2d-44b3-b8ba-4b471f9551bb", "nameSingular": "calendarChannel", "namePlural": "calendarChannels" }, "targetObjectMetadata": { "__typename": "Object", - "id": "dc94a21e-9cec-468b-8251-686c0230a854", + "id": "37158008-6977-486c-95b3-a58365a98a2f", "nameSingular": "connectedAccount", "namePlural": "connectedAccounts" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "a472eb18-e9db-4782-9cff-4231a70b9cba", + "id": "d1e26c42-511b-4052-af18-def236892aca", "name": "connectedAccount" }, "targetFieldMetadata": { "__typename": "Field", - "id": "02741b71-b5df-43ae-9b8c-4b4d824052a0", + "id": "bb124e59-eedc-426b-b846-5be2a92db138", "name": "calendarChannels" } }, @@ -4399,9 +3213,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "57c39457-15b2-4f13-9462-ba86610bba8c", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "id": "9babb7ee-6834-4a85-bf17-0ad672eabbc9", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "name": "IDX_7b40c7f03dd1f998ba765ad0730", "indexWhereClause": null, "indexType": "BTREE", @@ -4410,10 +3224,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "ff38ec40-ccdc-4948-b358-0fc39cbb6573", - "fieldMetadataId": "a472eb18-e9db-4782-9cff-4231a70b9cba", - "createdAt": "2026-02-25T16:13:34.234Z", - "updatedAt": "2026-02-25T16:13:34.234Z", + "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", "order": 0 } ] @@ -4425,7055 +3239,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "d6cfa8b8-dfc8-47be-a6c6-3d43fd163394", - "universalIdentifier": "20202020-a1b0-40b0-8ab0-5b6c7d8e9f0a", - "nameSingular": "messageChannelMessageAssociationMessageFolder", - "namePlural": "messageChannelMessageAssociationMessageFolders", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "48613e3f-a24b-4696-9344-97f428a0407b", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "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": "48613e3f-a24b-4696-9344-97f428a0407b", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9be0e3f6-c250-4e68-9dfe-c2e045c2aa7d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a0619164-fd91-47ca-a695-511939e1164a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d7103ac5-d27b-4832-b853-f227dead3f8b", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a0bd780a-3811-49ce-b878-f1a168596ff9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f6b1a38c-2d27-4219-be83-c62c88f13a79", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fdc186ca-1d38-41d0-847e-15bbab7f94b4", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "30830226-8964-4f5f-9be2-5eb25474d146", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', NULL)", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "41104617-e267-4796-beee-03b6c7a10779", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageChannelMessageAssociationId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d6cfa8b8-dfc8-47be-a6c6-3d43fd163394", - "nameSingular": "messageChannelMessageAssociationMessageFolder", - "namePlural": "messageChannelMessageAssociationMessageFolders" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e2717a89-8e3e-4d13-b5a0-3cbeaba7d75e", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "41104617-e267-4796-beee-03b6c7a10779", - "name": "messageChannelMessageAssociation" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "eac3bc16-700a-4746-adae-9d482588877d", - "name": "messageFolders" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "72855c15-0d48-4332-a880-2754eca7851a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageFolderId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d6cfa8b8-dfc8-47be-a6c6-3d43fd163394", - "nameSingular": "messageChannelMessageAssociationMessageFolder", - "namePlural": "messageChannelMessageAssociationMessageFolders" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e123213f-74b3-4667-a970-5708339b9772", - "nameSingular": "messageFolder", - "namePlural": "messageFolders" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "72855c15-0d48-4332-a880-2754eca7851a", - "name": "messageFolder" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "945332f3-709f-4025-899f-66445c35d89b", - "name": "messageChannelMessageAssociationMessageFolders" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "a8013c3a-fb57-4581-b5f7-12db1f529d0a", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_daf00d51b50634730fd77f16bb6", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "61ceb1a3-035e-46cf-a4f5-508687f53e42", - "fieldMetadataId": "41104617-e267-4796-beee-03b6c7a10779", - "createdAt": "2026-02-25T16:13:34.263Z", - "updatedAt": "2026-02-25T16:13:34.263Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "6d7932d3-c084-448d-9f19-a243002f358f", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_1db95a87400f7679efc43a15e68", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "452ae0ee-df55-4e1b-ae43-4ae7c01f0e95", - "fieldMetadataId": "72855c15-0d48-4332-a880-2754eca7851a", - "createdAt": "2026-02-25T16:13:34.264Z", - "updatedAt": "2026-02-25T16:13:34.264Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "0d788444-adab-4495-ab59-c49a4a14ff7b", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_55c9aaf7039b09cec455a872dde", - "indexWhereClause": "\"deletedAt\" IS NULL", - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "31897dbe-db50-4c8a-a581-a3fbbfeedef6", - "fieldMetadataId": "41104617-e267-4796-beee-03b6c7a10779", - "createdAt": "2026-02-25T16:13:34.265Z", - "updatedAt": "2026-02-25T16:13:34.265Z", - "order": 0 - }, - { - "__typename": "IndexField", - "id": "92ea9e4d-b2b2-4437-9773-3c234ecd9005", - "fieldMetadataId": "72855c15-0d48-4332-a880-2754eca7851a", - "createdAt": "2026-02-25T16:13:34.265Z", - "updatedAt": "2026-02-25T16:13:34.265Z", - "order": 1 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "c8e59698-2d8e-49a3-97d0-e4dcea772245", - "universalIdentifier": "20202020-7cf8-401f-8211-a9587d27fd2d", - "nameSingular": "favoriteFolder", - "namePlural": "favoriteFolders", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "cacf12c6-0779-4c5c-a01c-978b07b2bc8a", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "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": "cacf12c6-0779-4c5c-a01c-978b07b2bc8a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "32811c10-7b57-42e5-b035-25e747b21926", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9161901a-3b7d-40e7-ac03-98bee51c49ce", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fd834b73-a420-48ad-a456-6a33bc2a3a37", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "193e12df-c9ce-4338-82dd-0ac1c6752d54", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6917301c-41bc-4d4f-8217-c1a73cd28072", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6430ac18-73fd-4656-bb8a-d75cbb5b9605", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fd723065-02c9-4b34-b41d-8d320ee198d9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a25861f1-7f22-4540-aadf-31bdf2e46773", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9025c52e-ae99-4d49-96e3-e98c06d5538b", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c8e59698-2d8e-49a3-97d0-e4dcea772245", - "nameSingular": "favoriteFolder", - "namePlural": "favoriteFolders" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "9025c52e-ae99-4d49-96e3-e98c06d5538b", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "dead44da-970d-4d4c-9ef5-179916e5ff9f", - "name": "favoriteFolder" - } - }, - "morphRelations": null - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "c7696dce-461e-4549-bda6-faf7e93eaa24", - "universalIdentifier": "20202020-3f6b-4425-80ab-e468899ab4b2", - "nameSingular": "message", - "namePlural": "messages", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "8cd9a72a-681d-4104-885e-3a80115bea06", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Message", - "labelPlural": "Messages", - "description": "Message", - "icon": "IconMessage", - "fieldsList": [ - { - "__typename": "Field", - "id": "fb1ea895-a22d-4cd0-9981-2182bdb4c760", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "77f79a51-0902-4cbd-b4b7-28ac0abd14e7", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "44bb7ea0-553f-4464-83b7-8a1e5b8bdba6", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3968a5e8-b419-4e52-9d3b-16c414c4decc", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8cddfbb0-9374-44d0-b132-e2f3ed2fc3d3", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "15bb8ee3-4d71-4e45-be9d-f4c277f0728d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4d72fb2a-6815-475e-8a8f-9549cb0130e2", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "483ccf4f-054d-4844-b68d-a44ed3af2d73", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"subject\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b5c8b036-67b8-4eda-950c-9a0b030708be", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ce4c7a48-0360-4cde-83f0-1f1af53e66d2", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8cd9a72a-681d-4104-885e-3a80115bea06", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "127e9408-7610-473e-89c9-4e9d4b337843", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "76f425d9-e70b-4631-8d69-bd1161505b9f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6b2a6548-243a-40a1-8815-05a01c328f70", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageThreadId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c7696dce-461e-4549-bda6-faf7e93eaa24", - "nameSingular": "message", - "namePlural": "messages" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "28084101-2436-4a49-af93-c782446dbdd4", - "nameSingular": "messageThread", - "namePlural": "messageThreads" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6b2a6548-243a-40a1-8815-05a01c328f70", - "name": "messageThread" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5985ed8a-5e3b-4bd6-90b5-de0fb8d35a1b", - "name": "messages" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "dddf8c6f-ef47-4cc6-a5e3-b32fcff9d72f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c7696dce-461e-4549-bda6-faf7e93eaa24", - "nameSingular": "message", - "namePlural": "messages" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "2756d5d9-f309-48d9-9579-31cfebce2eef", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "dddf8c6f-ef47-4cc6-a5e3-b32fcff9d72f", - "name": "messageParticipants" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "bac43f96-5ee8-4beb-a5e1-9227a740fc2f", - "name": "message" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d8d356fb-fc6b-4106-b051-dc37d5bec50e", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c7696dce-461e-4549-bda6-faf7e93eaa24", - "nameSingular": "message", - "namePlural": "messages" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e2717a89-8e3e-4d13-b5a0-3cbeaba7d75e", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d8d356fb-fc6b-4106-b051-dc37d5bec50e", - "name": "messageChannelMessageAssociations" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "72373aa3-cb85-490d-a999-8ee7d5e76e4f", - "name": "message" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "d4aa0d46-aade-445b-9989-53ff467dc04f", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_5d002cd3b5be1cb05c0b7b28582", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "48367ca3-816c-4cf3-9ebc-f3fb60c1ef45", - "fieldMetadataId": "6b2a6548-243a-40a1-8815-05a01c328f70", - "createdAt": "2026-02-25T16:13:34.258Z", - "updatedAt": "2026-02-25T16:13:34.258Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "universalIdentifier": "20202020-bd3d-4c60-8dca-571c71d4447a", - "nameSingular": "attachment", - "namePlural": "attachments", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "85801358-c118-405c-8eb6-9fc315799483", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Attachment", - "labelPlural": "Attachments", - "description": "An attachment", - "icon": "IconFileImport", - "fieldsList": [ - { - "__typename": "Field", - "id": "ce4627d3-28b6-47b1-80f6-35fab180b80b", - "universalIdentifier": "20202020-a01a-4001-8a01-1d5f8e3c7b2a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "61aa7746-331c-4ca7-b656-d1458a09c6e1", - "universalIdentifier": "20202020-a01b-4002-9b02-2e6f9f4d8c3b", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "11488dd8-0cb8-4c8e-8a4f-cbeb011f2edc", - "universalIdentifier": "20202020-a01c-4003-8c03-3f7fa05d9d4c", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bdb5ae5e-6040-4e35-9e9d-80c60705baeb", - "universalIdentifier": "20202020-a01d-4004-9d04-4f8fb16eae5d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "85801358-c118-405c-8eb6-9fc315799483", - "universalIdentifier": "20202020-87a5-48f8-bbf7-ade388825a57", - "type": "TEXT", - "name": "name", - "label": "Name", - "description": "Attachment name", - "icon": "IconFileUpload", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e0ccdad4-1dcd-4b49-8fdf-e141f3c6a85d", - "universalIdentifier": "20202020-15db-460e-8166-c7b5d87ad4be", - "type": "FILES", - "name": "file", - "label": "File", - "description": "Attachment file", - "icon": "IconFileUpload", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "maxNumberOfValues": 1 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "01f2103b-fc62-4250-b831-7761a55fb94a", - "universalIdentifier": "20202020-0d19-453d-8e8d-fbcda8ca3747", - "type": "TEXT", - "name": "fullPath", - "label": "Full path", - "description": "Attachment full path", - "icon": "IconLink", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "219bdc66-dbe7-40f4-a902-6866cde7ed1f", - "universalIdentifier": "20202020-8c3f-4d9e-9a1b-2e5f7a8c9d0e", - "type": "SELECT", - "name": "fileCategory", - "label": "File category", - "description": "Attachment file category", - "icon": "IconList", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": true, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "'OTHER'", - "options": [ - { - "id": "20202020-11bb-4a52-b1f2-2159b07eec37", - "color": "gray", - "label": "Archive", - "value": "ARCHIVE", - "position": 0 - }, - { - "id": "20202020-ac54-475d-ab0d-e250c28da774", - "color": "pink", - "label": "Audio", - "value": "AUDIO", - "position": 1 - }, - { - "id": "20202020-66f7-41ba-81ad-f3371312247f", - "color": "yellow", - "label": "Image", - "value": "IMAGE", - "position": 2 - }, - { - "id": "20202020-6113-4e3b-84e3-c617e9f25d0c", - "color": "orange", - "label": "Presentation", - "value": "PRESENTATION", - "position": 3 - }, - { - "id": "20202020-44c1-47c7-8e66-e63558d7233f", - "color": "turquoise", - "label": "Spreadsheet", - "value": "SPREADSHEET", - "position": 4 - }, - { - "id": "20202020-cf07-4843-877e-3804cde801d1", - "color": "blue", - "label": "Text Document", - "value": "TEXT_DOCUMENT", - "position": 5 - }, - { - "id": "20202020-443b-4159-a434-5fd9fc327639", - "color": "purple", - "label": "Video", - "value": "VIDEO", - "position": 6 - }, - { - "id": "20202020-bbca-4802-9146-fd1503e94e58", - "color": "gray", - "label": "Other", - "value": "OTHER", - "position": 7 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "54f7c3a0-92e6-416c-9f23-2cf7f872a395", - "universalIdentifier": "395be3bd-a5c9-463d-aafe-9bc3bbec3f15", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fdd6ba8c-a889-4dfe-b8d3-92429a159efb", - "universalIdentifier": "376239d1-3e65-4cb6-b5d8-e0917d43cc93", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9b72ec42-be6a-4caa-b085-d1bc8a017b8b", - "universalIdentifier": "cef8f62c-cd46-4444-8cbb-17d463b7464a", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Attachment record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0a5dab92-64fe-430a-aa5b-56562d021906", - "universalIdentifier": "e7b42835-cb2e-4456-8558-9225362aa52d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", - "universalIdentifier": "20202020-ceab-4a28-b546-73b06b4c08d5", - "type": "MORPH_RELATION", - "name": "target", - "label": "Target", - "description": "Attachment target", - "icon": "IconArrowUpRight", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "targetCompanyId" - }, - "isLabelSyncedWithName": false, - "morphId": "20202020-f634-435d-ab8d-e1168b375c69", - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": [ - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "8ec2c996-b695-42d4-a1be-bdc8fcb5925f", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5c0d47ad-e4d9-4e7b-b0f6-ca5936272853", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "2072fbe5-ba86-4e99-ba6c-09f3315c43f9", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7e2a0fff-cb81-4990-a189-69c4c4119894", - "nameSingular": "note", - "namePlural": "notes" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6067cbf8-c3ff-45a0-9f5c-616ee9ed78b1", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "02e9057b-7ed2-4431-919c-5c5e6a9659b3", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "53529b12-8e01-420c-ab1c-82d20bd88f22", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "e688b7a0-fbd7-4a41-a4e8-e526b542f1f5", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "9a0fe06d-19d8-499a-ae2f-e1441580d85b", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "49d84f3e-6127-42ff-b8da-169970531d51", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "58a0f417-6dee-4c61-b11d-a041dbe3d839", - "nameSingular": "dashboard", - "namePlural": "dashboards" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d1c55778-f8ec-4a17-b0dd-f331331a9955", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5db965b8-65ab-4c7e-8c97-f542615e9038", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e7062ef6-775d-49ad-87cf-832ff7f55fd3", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "60f6933f-ae9d-4224-b1b7-bd3d35a54a00", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5f1f627b-da47-4d22-b124-78d7edadaf21", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "77870632-c32e-4ba7-877f-baf8d9d8ef74", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "61d9d65b-7429-4b2b-ae62-b0fb180c83a3", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d0b9d082-e6fc-4788-9993-18dd50296bd1", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "57854004-acba-421d-bd0b-d78c19124c41", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "05460c3b-e41a-4da6-a889-9c36080ac155", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "2c635884-37b9-4370-baae-2f75f0c8bff8", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "7a05f8d6-5902-4c23-a144-0efce3a09217", - "name": "attachments" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a5d12701-05aa-43c4-9755-b3b92b3352bc", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ca925ec5-ffc3-4882-a814-1a42f0e4d818", - "name": "attachments" - } - } - ] - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "fff560c0-12b3-4124-b7c4-b6b54e40e8ec", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_3491dc65669342b9bfb1637f5e0", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "ad3fb259-c463-4cba-8d0b-9cc30654a3fa", - "fieldMetadataId": "5c0d47ad-e4d9-4e7b-b0f6-ca5936272853", - "createdAt": "2026-02-25T16:13:34.217Z", - "updatedAt": "2026-02-25T16:13:34.217Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "29d136b9-d532-44f6-9ff2-9c06951df212", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_699ff395576ff0f73cc87464166", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "f3c8d12b-aaac-4c0f-b395-730d36826619", - "fieldMetadataId": "6067cbf8-c3ff-45a0-9f5c-616ee9ed78b1", - "createdAt": "2026-02-25T16:13:34.221Z", - "updatedAt": "2026-02-25T16:13:34.221Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "9bb7a56d-a4c0-4f1a-8ef7-b123a7663e4d", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_04d8ad72536bbeb4430998211f8", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "1b7f5ec8-1569-4ebc-bf85-8f11c3680bac", - "fieldMetadataId": "53529b12-8e01-420c-ab1c-82d20bd88f22", - "createdAt": "2026-02-25T16:13:34.222Z", - "updatedAt": "2026-02-25T16:13:34.222Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "66869f19-c200-4760-b74f-9b7c0ed31eac", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_21649fe7fe250834d1dd37125b1", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "2aa9264c-7dc7-4920-9e24-ab1e7a19e7d3", - "fieldMetadataId": "12247923-3e01-4917-8386-64164fd200dc", - "createdAt": "2026-02-25T16:13:34.224Z", - "updatedAt": "2026-02-25T16:13:34.224Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "8c08b07d-12b9-4b2b-b8a2-1e7f5a2a0c53", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_fde993c7020a17c3282edf5c9b8", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "a4ad924b-d59d-46d4-a863-d2968fbb382a", - "fieldMetadataId": "9a0fe06d-19d8-499a-ae2f-e1441580d85b", - "createdAt": "2026-02-25T16:13:34.226Z", - "updatedAt": "2026-02-25T16:13:34.226Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "ed8c09ac-0efa-428e-92e7-0aca854d22de", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_4c7e63468918a5d5233ccb65de7", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "d372d1b7-5ee8-491a-b310-10b5e0371963", - "fieldMetadataId": "d1c55778-f8ec-4a17-b0dd-f331331a9955", - "createdAt": "2026-02-25T16:13:34.227Z", - "updatedAt": "2026-02-25T16:13:34.227Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "6c466189-ca3b-4fe5-bd53-d9b1710b74b3", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_30f5fd16a4aa058d1a6c4b8ac10", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "efbfcd3d-b117-4f8d-bd28-12a1d1ffc193", - "fieldMetadataId": "e7062ef6-775d-49ad-87cf-832ff7f55fd3", - "createdAt": "2026-02-25T16:13:34.230Z", - "updatedAt": "2026-02-25T16:13:34.230Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "acffe46d-155f-4777-93d6-c3de4f859b14", - "universalIdentifier": "20202020-491b-4aaa-9825-afd1bae6ae00", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "1f950290-a407-45f0-a6f3-71d8882e97e4", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "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": "1f950290-a407-45f0-a6f3-71d8882e97e4", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bf9f2e33-2710-45ca-bf96-c659061546cb", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7e1d6fea-c0a1-48de-bdd7-22c8f0386363", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "03541195-916e-4164-9227-5f8dd006f734", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9c03d657-9760-4ee5-9b80-53d60cc7bd3e", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0d79bda7-811e-4d2e-b2d9-2aae841c6165", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f1195fd3-d017-4060-8a06-a9ddc09cac52", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a55b8e91-b292-417f-a573-700b18ef3b17", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"eventExternalId\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7d36049c-6f89-44e5-8c3d-e7b536d87139", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b89baddd-1141-4857-b053-f53544807901", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bb857bdb-f747-4e18-ab0e-afd57efc2556", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "calendarChannelId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "acffe46d-155f-4777-93d6-c3de4f859b14", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "db4b46af-a2eb-447a-bbe5-4a56f36cacd7", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "bb857bdb-f747-4e18-ab0e-afd57efc2556", - "name": "calendarChannel" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0bc78bf5-3fc8-4258-aae9-6780d2d4fefc", - "name": "calendarChannelEventAssociations" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "869639f7-4674-4b8e-be38-af875d324d5d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "calendarEventId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "acffe46d-155f-4777-93d6-c3de4f859b14", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4b282a4d-d369-4f11-84ef-41c536cec32a", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "869639f7-4674-4b8e-be38-af875d324d5d", - "name": "calendarEvent" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "9675edeb-664b-4b7c-8b3b-b7922d98881d", - "name": "calendarChannelEventAssociations" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "000a5adb-ba76-4bbf-8ebc-b5f10809fcd5", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_968d4fd721a78b75c13a1b9ec12", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "eb1e8987-b5bb-492b-a228-ef50234a8649", - "fieldMetadataId": "bb857bdb-f747-4e18-ab0e-afd57efc2556", - "createdAt": "2026-02-25T16:13:34.232Z", - "updatedAt": "2026-02-25T16:13:34.232Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "902f0336-7ee4-4575-8a03-29d125840bdc", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_733381453fca683f36c05af5478", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "a61eb627-ff04-49a9-8f44-79bd272288ea", - "fieldMetadataId": "869639f7-4674-4b8e-be38-af875d324d5d", - "createdAt": "2026-02-25T16:13:34.233Z", - "updatedAt": "2026-02-25T16:13:34.233Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "universalIdentifier": "72219b12-3709-4e7c-9f2a-78f1595516c6", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories", - "isCustom": true, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "labelIdentifierFieldMetadataId": "a2988443-8bf6-4ed5-9b02-646c3aafe677", - "imageIdentifierFieldMetadataId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Employment History", - "labelPlural": "Employment Histories", - "description": "", - "icon": "IconBriefcase", - "fieldsList": [ - { - "__typename": "Field", - "id": "a2988443-8bf6-4ed5-9b02-646c3aafe677", - "universalIdentifier": "792f7234-1c72-4150-bd8d-5bd6a7f53340", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f1a59ce1-a6cb-44be-a883-a0176ea60d6f", - "universalIdentifier": "47b858e9-9189-44e2-8bff-4afe33f97b54", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "cfc1f461-5435-4665-b82a-babcc7ab4dbe", - "universalIdentifier": "a3a1a515-77e2-4942-891b-b08792832676", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "cc56cf02-9bcb-49e1-b224-e939961382a6", - "universalIdentifier": "715dc2f7-1a3a-4f7c-9d38-feb91c63478b", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c487423a-b518-4d68-b74f-34ebafda49a2", - "universalIdentifier": "38b38a01-65ee-4315-a989-128d9c0e7b16", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "32c0748a-f578-4ff9-a696-6bad684ce9c0", - "universalIdentifier": "1409caa6-a200-4972-85b8-37a9e08be7fa", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', NULL)", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "244a98d0-b124-4942-94ed-fba56c223731", - "universalIdentifier": "608fa16d-6ccb-4d5b-a390-fcdf78c74048", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3de09586-9f9b-4680-b375-9a343d63b211", - "universalIdentifier": "1228b7dc-78b6-42c5-90d1-32f9de8e97b2", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "505efc22-b8e5-4a2a-8e4b-58ca475682ce", - "universalIdentifier": "6281d47d-fe4c-4a9c-a0f3-2d1474cbe0b6", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "505efc22-b8e5-4a2a-8e4b-58ca475682ce", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "53bf9a92-db13-496d-944e-8fb9b865c7a1", - "universalIdentifier": "a80b5149-5179-4d1d-9f62-571c3283b26c", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "53bf9a92-db13-496d-944e-8fb9b865c7a1", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6ac814ad-c314-4f68-9ee7-58f787fbdb69", - "name": "employmentHistory" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7a05f8d6-5902-4c23-a144-0efce3a09217", - "universalIdentifier": "a223adcb-7594-4ec7-90ac-c1a5d0262e12", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7a05f8d6-5902-4c23-a144-0efce3a09217", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0b0d0cb4-530d-4414-a6a8-c0b511bf38fc", - "universalIdentifier": "32eb7f44-e332-4a79-9371-b5c5e59e41fe", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "0b0d0cb4-530d-4414-a6a8-c0b511bf38fc", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "018f73d3-5212-467d-95b6-986772b517b0", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5530c220-6b45-474e-8935-a10b4b0db4a9", - "universalIdentifier": "8c3f76a2-59fd-47f5-8135-eabc6e1b72a3", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5530c220-6b45-474e-8935-a10b4b0db4a9", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a3325cf5-8f6d-4ce9-9935-9b373a5b2f82", - "universalIdentifier": "4e4da671-f2e8-45aa-aa45-31f710c8a6d3", - "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-25T16:13:35.865Z", - "updatedAt": "2026-02-25T16:13:35.865Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a3325cf5-8f6d-4ce9-9935-9b373a5b2f82", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "684e5e25-6cbb-4da4-95c2-47047f864b18", - "name": "previousCompanies" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3cd6f442-53df-4d54-ae82-ef81b8d1ab6a", - "universalIdentifier": "4b2bc4a8-cf94-4c22-8e8e-2df48e622950", - "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-25T16:13:35.938Z", - "updatedAt": "2026-02-25T16:13:35.938Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "companyId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3cd6f442-53df-4d54-ae82-ef81b8d1ab6a", - "name": "company" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "35c0fd85-7884-4181-85dc-87f88a9cb1c4", - "name": "previousEmployees" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "6c4e1bc1-8fc5-495a-b1a0-e1944270d97a", - "createdAt": "2026-02-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "name": "IDX_41ec5c0beb67017cf45244d9fa0", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "9c49c54e-1944-4b2e-b0c2-b85dbb8337dc", - "fieldMetadataId": "32c0748a-f578-4ff9-a696-6bad684ce9c0", - "createdAt": "2026-02-25T16:13:35.272Z", - "updatedAt": "2026-02-25T16:13:35.272Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "0d7333b8-712a-4245-a7fa-3a9251ff98c5", - "createdAt": "2026-02-25T16:13:35.865Z", - "updatedAt": "2026-02-25T16:13:35.865Z", - "name": "IDX_cbb4f48ac0e7d2d33d4c412394f", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "95c84002-7e77-4087-8996-5b6347467b17", - "fieldMetadataId": "a3325cf5-8f6d-4ce9-9935-9b373a5b2f82", - "createdAt": "2026-02-25T16:13:35.877Z", - "updatedAt": "2026-02-25T16:13:35.877Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "3c804d84-a66b-4ee0-bb45-0ba5edaff2bb", - "createdAt": "2026-02-25T16:13:35.938Z", - "updatedAt": "2026-02-25T16:13:35.938Z", - "name": "IDX_9304b6d3edd8cfcae63547a9169", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "eb78c514-92d1-47fa-a6a3-a102d237bd85", - "fieldMetadataId": "3cd6f442-53df-4d54-ae82-ef81b8d1ab6a", - "createdAt": "2026-02-25T16:13:35.949Z", - "updatedAt": "2026-02-25T16:13:35.949Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "universalIdentifier": "20202020-3319-4234-a34c-82d5c0e881a6", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "c2bc735e-969b-453c-a44a-9fe59992b941", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Workspace Member", - "labelPlural": "Workspace Members", - "description": "A workspace member", - "icon": "IconUserCircle", - "fieldsList": [ - { - "__typename": "Field", - "id": "ad44a497-108a-479a-8d74-3eed23915a13", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e7b57dcd-012f-436b-80f2-7a32e548866a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "274792df-9249-4241-9cac-802d9ecb01a2", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "265610fc-c8b2-4a5b-ab3f-d6a568a97ddb", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5979be14-4786-41b6-95c7-57ec9271c0ac", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c2bc735e-969b-453c-a44a-9fe59992b941", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2c2488f3-9d42-4131-8be0-e4be36de53d5", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "'System'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "85479e64-ab44-42bc-b83b-e94403da8bc9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "'en'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d55b49ce-ca6b-476f-8450-54f64db5f880", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fa680660-eb0b-45ec-87fd-7dd9db778cff", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4f32d27d-d4a4-4402-9170-8bfa75b8eb76", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 7, - "options": null, - "settings": { - "dataType": "int" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "99914394-f236-457b-bff4-ad21157a8be2", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9ae4ffbf-63ba-4a61-a750-a28333c5770b", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "'system'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b052bcd4-debd-49ac-8c50-117eab6a3d1b", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d3cb8874-7f30-4a6b-8aab-e0b066159338", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "acda42a5-291c-4b13-b66d-f5448ec6bbab", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8200e087-f1ea-47c6-8690-ce451120f860", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "09d758da-6501-4562-8aff-d287a1ba7653", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0d864e2b-6cf2-4405-9802-4df10feba618", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "36a9e226-a109-4c53-9a42-46a6cc387061", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "fb79c8a1-e1ec-4db5-bf1f-98b4c0d0820b", - "nameSingular": "blocklist", - "namePlural": "blocklists" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "36a9e226-a109-4c53-9a42-46a6cc387061", - "name": "blocklist" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "bf1247f9-2941-4d0a-818d-04784cdc9511", - "name": "workspaceMember" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d2d366d9-4bfb-401e-80c4-e313ee29040f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "ee48f10c-9a42-4d4e-ba94-ed4bcf801841", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d2d366d9-4bfb-401e-80c4-e313ee29040f", - "name": "calendarEventParticipants" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a19f55a0-131d-47f8-8bd9-8dc55bdf08ff", - "name": "workspaceMember" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d2110d8d-632d-4c73-b990-ada7bb4acc90", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d2110d8d-632d-4c73-b990-ada7bb4acc90", - "name": "accountOwnerForCompanies" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "9b941ed8-0940-4146-91c2-4986bca46f4f", - "name": "accountOwner" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7db453c5-8015-4f72-a4a5-96b3179c87b5", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "dc94a21e-9cec-468b-8251-686c0230a854", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7db453c5-8015-4f72-a4a5-96b3179c87b5", - "name": "connectedAccounts" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1b42ad28-703d-465a-b0f5-0b3a1ba2c514", - "name": "accountOwner" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "55698c3c-1908-4c5d-b881-e5f7ebe67623", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "55698c3c-1908-4c5d-b881-e5f7ebe67623", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "c0c5dc99-58c5-4b1f-aec5-0c5ea4d5b08c", - "name": "forWorkspaceMember" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "791abb34-970a-4014-a7d9-d79af18df4d7", - "universalIdentifier": "20202020-8f99-48bc-a5eb-edd33dd54188", - "type": "RELATION", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "2756d5d9-f309-48d9-9579-31cfebce2eef", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "791abb34-970a-4014-a7d9-d79af18df4d7", - "name": "messageParticipants" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "710912e3-673a-43df-a2c5-227e3fe7958f", - "name": "workspaceMember" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "123108db-3a62-4c1f-8aec-46e2d2d5c722", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "123108db-3a62-4c1f-8aec-46e2d2d5c722", - "name": "ownedOpportunities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d0669a6c-5eca-4f00-a17a-8b7dc43d7ed4", - "name": "owner" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a5526b8b-688c-458e-b057-b529309dcab9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a5526b8b-688c-458e-b057-b529309dcab9", - "name": "assignedTasks" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "e0238821-7d8c-4fd9-a25b-69973eaa6f7c", - "name": "assignee" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "17f0262c-7fb7-4a79-82d5-762eab3f5143", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "17f0262c-7fb7-4a79-82d5-762eab3f5143", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "249567a8-fd2b-426e-a9b8-6a02c4b94be6", - "name": "workspaceMember" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "aba097fb-f188-475a-a502-3ef3871e1f67", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_UNIQUE_39954942ffa78c957b5dee47739", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": true, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "4c862810-335a-4a3b-8774-2d746ded3e81", - "fieldMetadataId": "fa680660-eb0b-45ec-87fd-7dd9db778cff", - "createdAt": "2026-02-25T16:13:34.294Z", - "updatedAt": "2026-02-25T16:13:34.294Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "159d5aa5-d1ed-426c-85da-3965c71aeef1", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_e47451872f70c8f187a6b460ac7", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "ac370408-8349-4cd0-93f2-8f158931720a", - "fieldMetadataId": "8200e087-f1ea-47c6-8690-ce451120f860", - "createdAt": "2026-02-25T16:13:34.295Z", - "updatedAt": "2026-02-25T16:13:34.295Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "7e2a0fff-cb81-4990-a189-69c4c4119894", - "universalIdentifier": "20202020-0b00-45cd-b6f6-6cd806fc6804", - "nameSingular": "note", - "namePlural": "notes", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "150f8643-ff30-4c4c-9554-c6e02f8cd4c0", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": "N", - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Note", - "labelPlural": "Notes", - "description": "A note", - "icon": "IconNotes", - "fieldsList": [ - { - "__typename": "Field", - "id": "6fe61a86-440d-4517-9324-b7f57db11d20", - "universalIdentifier": "20202020-c01a-4111-8a11-dfabcddeef12", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0f641f1e-9beb-419e-b865-5868e4cbdfc4", - "universalIdentifier": "20202020-c01b-4112-9b12-fabcddefe123", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8a88dd04-7464-4f32-bc04-5fb358603853", - "universalIdentifier": "20202020-c01c-4113-8c13-abcddeef1234", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "74e4844a-596b-4ba0-b61d-7ae3f4550adb", - "universalIdentifier": "20202020-c01d-4114-9d14-bcddeef12345", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "41e0176c-418d-4c12-a3dd-f061e780ac39", - "universalIdentifier": "20202020-368d-4dc2-943f-ed8a49c7fdfb", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Note record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "150f8643-ff30-4c4c-9554-c6e02f8cd4c0", - "universalIdentifier": "20202020-faeb-4c76-8ba6-ccbb0b4a965f", - "type": "TEXT", - "name": "title", - "label": "Title", - "description": "Note title", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bfd82ee7-6405-42ca-989d-cb42ce280e55", - "universalIdentifier": "20202020-a7bb-4d94-be51-8f25181502c8", - "type": "RICH_TEXT_V2", - "name": "bodyV2", - "label": "Body", - "description": "Note body", - "icon": "IconFilePencil", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8953911f-7ac1-4d71-9687-dc1a219e8f4f", - "universalIdentifier": "20202020-0d79-4e21-ab77-5a394eff97be", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "08dac6b2-3177-44fa-a1ee-ef2f306448e4", - "universalIdentifier": "9b446e89-2484-4044-a3b5-420f6b578c0c", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "045d5e08-6641-4d53-bd5a-bc15f97b24aa", - "universalIdentifier": "20202020-7ea8-44d4-9d4c-51dd2a757950", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"title\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"bodyV2Markdown\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "02e9057b-7ed2-4431-919c-5c5e6a9659b3", - "universalIdentifier": "20202020-4986-4c92-bf19-39934b149b16", - "type": "RELATION", - "name": "attachments", - "label": "Attachments", - "description": "Note attachments", - "icon": "IconFileImport", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7e2a0fff-cb81-4990-a189-69c4c4119894", - "nameSingular": "note", - "namePlural": "notes" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "02e9057b-7ed2-4431-919c-5c5e6a9659b3", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3e16a429-d2ef-409d-916d-575164187634", - "universalIdentifier": "20202020-4d1d-41ac-b13b-621631298d67", - "type": "RELATION", - "name": "favorites", - "label": "Favorites", - "description": "Favorites linked to the note", - "icon": "IconHeart", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7e2a0fff-cb81-4990-a189-69c4c4119894", - "nameSingular": "note", - "namePlural": "notes" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3e16a429-d2ef-409d-916d-575164187634", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "327fc9ce-c539-4e92-863d-100cea3cdc7b", - "name": "note" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "70d0e83c-4714-438a-9e88-87c30d977d9e", - "universalIdentifier": "20202020-1f25-43fe-8b00-af212fdde823", - "type": "RELATION", - "name": "noteTargets", - "label": "Relations", - "description": "Note targets", - "icon": "IconArrowUpRight", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7e2a0fff-cb81-4990-a189-69c4c4119894", - "nameSingular": "note", - "namePlural": "notes" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "70d0e83c-4714-438a-9e88-87c30d977d9e", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "8bfc2ff3-877e-4262-8afa-c3fbabe266a4", - "name": "note" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "14c85f52-64be-4f77-9891-3269bbf985d4", - "universalIdentifier": "20202020-7030-42f8-929c-1a57b25d6bce", - "type": "RELATION", - "name": "timelineActivities", - "label": "Timeline Activities", - "description": "Timeline Activities linked to the note.", - "icon": "IconTimelineEvent", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7e2a0fff-cb81-4990-a189-69c4c4119894", - "nameSingular": "note", - "namePlural": "notes" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "14c85f52-64be-4f77-9891-3269bbf985d4", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", - "name": "target" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "f0dd3acc-1aa6-4016-8288-1d3e8ff2f410", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_f20de8d7fc74a405e4083051275", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "7e34cb13-5f7f-47e5-b5cd-ae40b6c7eb8a", - "fieldMetadataId": "045d5e08-6641-4d53-bd5a-bc15f97b24aa", - "createdAt": "2026-02-25T16:13:34.268Z", - "updatedAt": "2026-02-25T16:13:34.268Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "74d5d075-7a00-4b7e-a6f4-6ff9a838377c", - "universalIdentifier": "20202020-3319-4234-a34c-7f3b9d2e4d1f", - "nameSingular": "workflowAutomatedTrigger", - "namePlural": "workflowAutomatedTriggers", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "7ec53460-d83c-440c-a591-b09b9608105b", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "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": "7ec53460-d83c-440c-a591-b09b9608105b", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4d13d63e-a983-4199-8496-90ac7b383e3b", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9060fb90-0176-4171-a353-814397d28cf4", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b4f7f2e0-8282-46ce-be1f-06348f7a975d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3fb5eec9-9a0c-463e-8674-68ab7ab2addd", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6b0b0590-a528-4c3c-bafc-82018349b0ea", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d116b02c-4f3f-4e1a-8eac-74f60f952c33", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9a3d9485-202a-4909-ab6c-d125352efb54", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "119b55f6-3df8-49a9-9909-898b8d58f810", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "457f9833-9ae1-4850-a4ac-0beca7dc3ad1", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a5776889-e2b0-4f17-bbca-6b511e08c1a7", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "74d5d075-7a00-4b7e-a6f4-6ff9a838377c", - "nameSingular": "workflowAutomatedTrigger", - "namePlural": "workflowAutomatedTriggers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a5776889-e2b0-4f17-bbca-6b511e08c1a7", - "name": "workflow" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ea9365ed-3788-41d8-a878-34366c5bf1c6", - "name": "automatedTriggers" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "65d111a6-1038-4cea-bb63-ebaeb41ab249", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_397bfb7946782933c476b98d925", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "122cc23d-5e5a-4d4f-9fa2-1bd74bbb22c7", - "fieldMetadataId": "a5776889-e2b0-4f17-bbca-6b511e08c1a7", - "createdAt": "2026-02-25T16:13:34.290Z", - "updatedAt": "2026-02-25T16:13:34.290Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "universalIdentifier": "20202020-9549-49dd-b2b2-883999db8938", - "nameSingular": "opportunity", - "namePlural": "opportunities", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "ae7dd886-2219-4ad5-a5c1-38ecdfa7df75", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": "O", - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Opportunity", - "labelPlural": "Opportunities", - "description": "An opportunity", - "icon": "IconTargetArrow", - "fieldsList": [ - { - "__typename": "Field", - "id": "1c1e6073-1258-491a-9a77-511dfc44edf9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f2f2fc86-1db3-4ec7-aa30-cbd1696e57bb", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fcc5965f-52c6-4e2f-8224-b637895f680e", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8db8ead2-09da-438d-9607-4409609aa06a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ae7dd886-2219-4ad5-a5c1-38ecdfa7df75", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "97fd0c60-d0db-4cee-ab38-d814b905fd09", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "49c60042-2cf1-4ee8-a704-c84b82e88dc9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bd07bb30-0227-453c-a8e6-0bcbea5b67b5", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "dbe9a6a7-707d-4e4d-885b-eb6c5ce5f2aa", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "19befa8d-576a-4a1e-9004-dbcc00eeaf34", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5008c6eb-9218-4935-ae2c-6271aa61621f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6f95bf6d-64a1-42d4-87e5-053a88be07f3", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "49d84f3e-6127-42ff-b8da-169970531d51", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "49d84f3e-6127-42ff-b8da-169970531d51", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4ac9e74d-96c7-46b4-b529-1a188bb11343", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "companyId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4ac9e74d-96c7-46b4-b529-1a188bb11343", - "name": "company" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "2bf4c652-38f1-44f7-bdc8-0b8f444be2b7", - "name": "opportunities" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9556348a-b5fe-48cc-ac2e-5daedad93316", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "9556348a-b5fe-48cc-ac2e-5daedad93316", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "44bbdd2a-03d6-498c-bfc8-385617638fce", - "name": "opportunity" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ca1f3a8e-2897-4553-89bd-ece4306267e4", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ca1f3a8e-2897-4553-89bd-ece4306267e4", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "018f73d3-5212-467d-95b6-986772b517b0", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "194cee79-1034-445a-9c9a-f36ac6f7a392", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "pointOfContactId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "194cee79-1034-445a-9c9a-f36ac6f7a392", - "name": "pointOfContact" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "09c81e5f-cf0f-402d-9795-d6083182de97", - "name": "pointOfContactForOpportunities" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3c1c0e47-d67b-44c9-82c9-830dcb2dac7b", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3c1c0e47-d67b-44c9-82c9-830dcb2dac7b", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7eee7b40-3d77-472f-8fe5-989caf8422a1", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7eee7b40-3d77-472f-8fe5-989caf8422a1", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d0669a6c-5eca-4f00-a17a-8b7dc43d7ed4", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "ownerId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d0669a6c-5eca-4f00-a17a-8b7dc43d7ed4", - "name": "owner" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "123108db-3a62-4c1f-8aec-46e2d2d5c722", - "name": "ownedOpportunities" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "958e7562-6ed4-4758-a1a3-08d74bc4956c", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_c0ac950d77b75527f654b7f6a06", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "4d48275f-41b2-41dc-8cd9-7f1d11df1f71", - "fieldMetadataId": "194cee79-1034-445a-9c9a-f36ac6f7a392", - "createdAt": "2026-02-25T16:13:34.271Z", - "updatedAt": "2026-02-25T16:13:34.271Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "c4f4973d-6d49-413b-96d0-72372898f4a2", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_4b9feee3298c853326bf6ff8e42", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "e071de83-aaff-4514-b7e2-de6d7f28227f", - "fieldMetadataId": "4ac9e74d-96c7-46b4-b529-1a188bb11343", - "createdAt": "2026-02-25T16:13:34.272Z", - "updatedAt": "2026-02-25T16:13:34.272Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "a7189342-4dca-44a1-b81c-6169ffff1624", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_ae112c10e060420923011767b14", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "2b9690fd-0811-47e3-bb5f-9e1f7b688031", - "fieldMetadataId": "bd07bb30-0227-453c-a8e6-0bcbea5b67b5", - "createdAt": "2026-02-25T16:13:34.273Z", - "updatedAt": "2026-02-25T16:13:34.273Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "d76fd586-9e7c-4bc1-bcb7-bf121875acd4", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_9f96d65260c4676faac27cb6bf3", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "78663d44-c86f-4614-af39-71494883ed74", - "fieldMetadataId": "6f95bf6d-64a1-42d4-87e5-053a88be07f3", - "createdAt": "2026-02-25T16:13:34.273Z", - "updatedAt": "2026-02-25T16:13:34.273Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "universalIdentifier": "20202020-5a9a-44e8-95df-771cd06d0fb1", - "nameSingular": "taskTarget", - "namePlural": "taskTargets", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "29792b66-4644-4261-a18b-7005f95871dd", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Task Target", - "labelPlural": "Task Targets", - "description": "A task target", - "icon": "IconCheckbox", - "fieldsList": [ - { - "__typename": "Field", - "id": "29792b66-4644-4261-a18b-7005f95871dd", - "universalIdentifier": "20202020-a03a-4161-8a61-cdefabcdefab", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b5de0624-8904-4177-a5ed-97d08ccbce11", - "universalIdentifier": "20202020-a03b-4162-9b62-defabcdefabc", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9c2dd131-dd0c-48a8-932d-a641123e7eb6", - "universalIdentifier": "20202020-a03c-4163-8c63-efabcdefabcd", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c0014e1a-132a-4f7c-b3f9-9df31b801ed5", - "universalIdentifier": "20202020-a03d-4164-9d64-fabcdefabcde", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "88bf3aa8-ad7a-4c02-a40d-5360f2f7319d", - "universalIdentifier": "65fe2a53-45e4-4225-9711-b827f55e51cc", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7c733f49-6211-419b-9315-5855c898e6c0", - "universalIdentifier": "bea3734f-aff2-49ed-9dc9-d4666a2e2178", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ba9ebc47-4975-48c4-815a-0a76d6304058", - "universalIdentifier": "4216c06a-498b-4111-9577-d9bcbccdda39", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "TaskTarget record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9e12ff1a-1df0-4578-aba1-c392a226774f", - "universalIdentifier": "8768a9c0-37c0-4465-b86d-c4c7f466ec23", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "605b85e6-78ac-4b87-831f-e6f0d0f6739c", - "universalIdentifier": "20202020-e881-457a-8758-74aaef4ae78a", - "type": "RELATION", - "name": "task", - "label": "Task", - "description": "TaskTarget task", - "icon": "IconCheckbox", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "taskId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "605b85e6-78ac-4b87-831f-e6f0d0f6739c", - "name": "task" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6db1ce5b-290c-45e7-ab74-76375b85be41", - "name": "taskTargets" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", - "universalIdentifier": "20202020-c8a0-4e85-a016-87e2349cfbec", - "type": "MORPH_RELATION", - "name": "target", - "label": "Target", - "description": "TaskTarget target", - "icon": "IconArrowUpRight", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "targetPersonId" - }, - "isLabelSyncedWithName": false, - "morphId": "20202020-f636-435d-ab8d-e1168b375c71", - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": [ - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "68cf038f-3d95-412a-9585-add3201cd916", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7f634315-91cb-4007-a291-9828f0d5b8ae", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "e5fd623a-7386-4915-b4b9-75abb5874d75", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "dba3b117-9b1f-4bb0-9924-1a7142d2b5f9", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3c1c0e47-d67b-44c9-82c9-830dcb2dac7b", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "af77027d-f94a-41d0-b088-319ca6b5bb33", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b6077ac8-b1bb-4599-857d-dce1a6ca345e", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "780e21ec-2792-4337-8d13-5496b7c46459", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "2049d177-58f6-424d-99ad-4e9b6fc5f74a", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "593e31ce-42a1-4604-9dd6-66a60a458262", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "daeecc00-e0c0-4fc8-984f-a0eb6133972c", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e7fd7784-7665-49c4-8776-cf00a2cb6d7a", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5530c220-6b45-474e-8935-a10b4b0db4a9", - "name": "taskTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "378288ad-5a07-4a88-a41d-9e1725342494", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "40e09d33-e053-4d19-8cf9-c8d7b1e1ea12", - "name": "taskTargets" - } - } - ] - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "148bd372-ff02-47e7-a937-fbf1018fcac2", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_74ad70941560ba6b2a179ad460c", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "6bf750c7-ac0e-4f3c-bd8b-addd4964d727", - "fieldMetadataId": "605b85e6-78ac-4b87-831f-e6f0d0f6739c", - "createdAt": "2026-02-25T16:13:34.278Z", - "updatedAt": "2026-02-25T16:13:34.278Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "80e12bdc-5c60-4325-9946-99b008284c38", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_f3d9b01b0d587804e7beeb2a534", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "a3b6e0bb-6f22-4df1-a65e-07011a82c86a", - "fieldMetadataId": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", - "createdAt": "2026-02-25T16:13:34.278Z", - "updatedAt": "2026-02-25T16:13:34.278Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "eef3f043-4c48-4b8a-a87f-8d100e10c6c2", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_419778384cd97935db3e246f589", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "beca754f-8184-4508-bfa8-6dcb3981b174", - "fieldMetadataId": "7f634315-91cb-4007-a291-9828f0d5b8ae", - "createdAt": "2026-02-25T16:13:34.279Z", - "updatedAt": "2026-02-25T16:13:34.279Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "a70c7e7a-3869-4145-800f-b5f32b56675c", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_f0e95ec5e72b91f28fffac1201b", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "4692665b-5083-4a7f-aa43-ec5a7809db65", - "fieldMetadataId": "dba3b117-9b1f-4bb0-9924-1a7142d2b5f9", - "createdAt": "2026-02-25T16:13:34.280Z", - "updatedAt": "2026-02-25T16:13:34.280Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "6fb3608a-7e74-4b6e-94b6-e89e573f80c0", + "id": "cabe467a-d234-4809-976a-3bce37083b71", "universalIdentifier": "20202020-fe8c-40bc-a681-b80b771449b7", "nameSingular": "messageChannel", "namePlural": "messageChannels", @@ -11482,11 +3248,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "8b79b447-890b-4e23-b44f-e98cfacd321f", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "labelIdentifierFieldMetadataId": "cd74d8bf-958c-41f8-881d-347c3f02c6d6", "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, @@ -11498,7 +3264,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "fieldsList": [ { "__typename": "Field", - "id": "51ab716b-65b0-4a36-9f76-dfa0eb185c57", + "id": "16fef4e0-f1c1-4462-a964-3803eaf4de40", "universalIdentifier": "20202020-b02a-40c1-8ac1-9eafbacbdced", "type": "UUID", "name": "id", @@ -11511,20 +3277,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "8bc537a3-b904-4ef9-8621-d6ec461858e7", + "id": "2dc7637a-cff0-4c91-819a-34f370acb2b1", "universalIdentifier": "20202020-b02b-40c2-9bc2-afbacbdcedfe", "type": "DATE_TIME", "name": "createdAt", @@ -11537,8 +3303,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -11546,13 +3312,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "28c59db5-6dc2-46a0-8487-d1a30979acd1", + "id": "6af643ac-fdf4-401f-917d-4feb2e6433f3", "universalIdentifier": "20202020-b02c-40c3-8cc3-bacbdcedfefa", "type": "DATE_TIME", "name": "updatedAt", @@ -11565,8 +3331,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -11574,13 +3340,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "5f4cef7b-9a0f-4ff0-9386-2abdf1737b29", + "id": "b5bcbe20-2cbd-4c2d-8ec6-ad6b6c83c2eb", "universalIdentifier": "20202020-b02d-40c4-9dc4-cbdcedfefaab", "type": "DATE_TIME", "name": "deletedAt", @@ -11593,8 +3359,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -11602,13 +3368,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "dc39a6d5-924a-4d6d-93bb-5ac2901e2760", + "id": "659c4426-a7eb-4e42-a034-df3c4a3789d1", "universalIdentifier": "b7de8fcc-a7c6-4122-b3fa-1fcf8f30931c", "type": "ACTOR", "name": "createdBy", @@ -11621,8 +3387,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -11632,13 +3398,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "3fbb82d6-0636-4833-90f9-388f96f336e3", + "id": "f14b27a2-cc3c-4a58-85cc-438ce8d38df4", "universalIdentifier": "88bb6ff1-b8a1-4313-95d4-7879acca0b93", "type": "ACTOR", "name": "updatedBy", @@ -11651,8 +3417,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -11662,13 +3428,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "4a231bde-59d8-4d0f-b6a9-4c633869190e", + "id": "b30c6d61-4196-43d1-8d33-b683995ff2b6", "universalIdentifier": "bc8a36af-8b9c-4548-a0da-c90e899e7243", "type": "POSITION", "name": "position", @@ -11681,20 +3447,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "c8e7101c-88a6-471d-8b82-5d04d970bcb0", + "id": "5d06402e-27fc-4989-b5ef-4b039f75c4f2", "universalIdentifier": "5e84794c-6f14-4bdf-81a6-76ee11cda51f", "type": "TS_VECTOR", "name": "searchVector", @@ -11707,8 +3473,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -11717,13 +3483,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "049deca1-0345-4f35-a534-8b700f296cd8", + "id": "070be1df-16bd-49a8-a09b-f2b3b2b3dc79", "universalIdentifier": "20202020-6a6b-4532-9767-cbc61b469453", "type": "SELECT", "name": "visibility", @@ -11736,8 +3502,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "'SHARE_EVERYTHING'", "options": [ { @@ -11765,13 +3531,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "8b79b447-890b-4e23-b44f-e98cfacd321f", + "id": "cd74d8bf-958c-41f8-881d-347c3f02c6d6", "universalIdentifier": "20202020-2c96-43c3-93e3-ed6b1acb69bc", "type": "TEXT", "name": "handle", @@ -11784,20 +3550,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "d3084e31-e9c3-4c6e-a36a-7f2199313c10", + "id": "02c60c3a-5850-4ec6-8b5d-231395dd0662", "universalIdentifier": "20202020-ae95-42d9-a3f1-797a2ea22122", "type": "SELECT", "name": "type", @@ -11810,8 +3576,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "'EMAIL'", "options": [ { @@ -11832,13 +3598,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "c58b783f-1378-4e1b-952b-4d1bc591c70d", + "id": "02a18299-7113-4764-921e-a3c3fdfe6bec", "universalIdentifier": "20202020-fabd-4f14-b7c6-3310f6d132c6", "type": "BOOLEAN", "name": "isContactAutoCreationEnabled", @@ -11851,20 +3617,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "669a5774-4fb4-4d50-bf9e-aaa046b5be5a", + "id": "baa672dd-73ad-4581-8da2-76af059f0a78", "universalIdentifier": "20202020-fc0e-4ba6-b259-a66ca89cfa38", "type": "SELECT", "name": "contactAutoCreationPolicy", @@ -11877,8 +3643,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "'SENT'", "options": [ { @@ -11906,13 +3672,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "cef9b1cc-be1d-4b07-b7c3-44c8d70fd8cb", + "id": "c17ee5ff-b5a1-41b1-aaf2-906054b4b1b2", "universalIdentifier": "20202020-cc39-4432-9fe8-ec8ab8bbed95", "type": "SELECT", "name": "messageFolderImportPolicy", @@ -11925,8 +3691,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "'ALL_FOLDERS'", "options": [ { @@ -11947,13 +3713,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b0e4465a-11e7-4204-92df-35df6a62ca2d", + "id": "960cb62a-b7b7-401b-b69c-6ef78c63c640", "universalIdentifier": "20202020-1df5-445d-b4f3-2413ad178431", "type": "BOOLEAN", "name": "excludeNonProfessionalEmails", @@ -11966,20 +3732,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a0059fe3-6dd7-4d5a-899b-b11ce64afa2f", + "id": "d511c953-0e0c-4345-be15-e2e6538f8e86", "universalIdentifier": "20202020-45a0-4be4-9164-5820a6a109fb", "type": "BOOLEAN", "name": "excludeGroupEmails", @@ -11992,20 +3758,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "636fe531-f240-45f5-a2b1-0f24cf48781c", + "id": "f19ced6e-6b6e-45e7-916a-b8e021b824d8", "universalIdentifier": "20202020-17c5-4e9f-bc50-af46a89fdd42", "type": "SELECT", "name": "pendingGroupEmailsAction", @@ -12018,8 +3784,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "'NONE'", "options": [ { @@ -12047,13 +3813,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "bb927c0b-958f-4465-bed6-6b46ed707bc4", + "id": "04915e6a-df74-49e1-8609-3660b888b51f", "universalIdentifier": "20202020-d9a6-48e9-990b-b97fdf22e8dd", "type": "BOOLEAN", "name": "isSyncEnabled", @@ -12066,20 +3832,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "84fd28f7-012f-433d-9696-f71cda1b8bbd", + "id": "84f9a374-6c8b-4fff-89c3-b7e8a4bc4860", "universalIdentifier": "20202020-79d1-41cf-b738-bcf5ed61e256", "type": "TEXT", "name": "syncCursor", @@ -12092,20 +3858,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "376a4064-ca4d-4c48-a421-2753d5e10c51", + "id": "85f7d9a7-631a-40ef-9935-d0f9a07c2de9", "universalIdentifier": "20202020-263d-4c6b-ad51-137ada56f7d4", "type": "DATE_TIME", "name": "syncedAt", @@ -12118,20 +3884,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "51f54c26-c7d3-40f9-acb8-3257d3f030fa", + "id": "7fe0fc1c-0ade-47ed-bc7e-ffd037569f30", "universalIdentifier": "20202020-56a1-4f7e-9880-a8493bb899cc", "type": "SELECT", "name": "syncStatus", @@ -12144,8 +3910,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": [ { @@ -12187,13 +3953,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "05263e9a-16a8-4ac6-a38b-ca265d4ca041", + "id": "183ef823-aa78-4b78-80d2-a29e59b5f559", "universalIdentifier": "20202020-7979-4b08-89fe-99cb5e698767", "type": "SELECT", "name": "syncStage", @@ -12206,8 +3972,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "'PENDING_CONFIGURATION'", "options": [ { @@ -12270,13 +4036,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "aa6aa12a-6778-42fc-8d3f-8dd308bfc49b", + "id": "810e2627-be66-4524-8940-43475036047f", "universalIdentifier": "20202020-8c61-4a42-ae63-73c1c3c52e06", "type": "DATE_TIME", "name": "syncStageStartedAt", @@ -12289,20 +4055,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6654525b-8215-4193-828e-f58a4ede44f5", + "id": "e8c47a26-9666-447c-84ba-f44b40140989", "universalIdentifier": "20202020-0291-42be-9ad0-d578a51684ab", "type": "NUMBER", "name": "throttleFailureCount", @@ -12315,20 +4081,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "3c553593-4259-413d-aad8-bb39487649cb", + "id": "5c355c8f-a9a2-4ade-b368-e8203aeed8d6", "universalIdentifier": "20202020-a1e3-4d7f-b5c2-9f8e6d4c3b2a", "type": "DATE_TIME", "name": "throttleRetryAfter", @@ -12341,20 +4107,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "01d488dc-8cb9-46c2-8039-ca48c7859be4", + "id": "9bf0fb8a-dd4f-4f14-bf48-dec2c8e5a880", "universalIdentifier": "20202020-49a2-44a4-b470-282c0440d15d", "type": "RELATION", "name": "connectedAccount", @@ -12367,8 +4133,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -12378,30 +4144,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "6fb3608a-7e74-4b6e-94b6-e89e573f80c0", + "id": "cabe467a-d234-4809-976a-3bce37083b71", "nameSingular": "messageChannel", "namePlural": "messageChannels" }, "targetObjectMetadata": { "__typename": "Object", - "id": "dc94a21e-9cec-468b-8251-686c0230a854", + "id": "37158008-6977-486c-95b3-a58365a98a2f", "nameSingular": "connectedAccount", "namePlural": "connectedAccounts" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "01d488dc-8cb9-46c2-8039-ca48c7859be4", + "id": "9bf0fb8a-dd4f-4f14-bf48-dec2c8e5a880", "name": "connectedAccount" }, "targetFieldMetadata": { "__typename": "Field", - "id": "f35583e2-f7a6-400e-8229-93adae251c25", + "id": "c653cf40-a63b-4f93-a93e-2cc4e60238ec", "name": "messageChannels" } }, @@ -12409,7 +4175,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "6f256134-12bb-432c-81a6-110b6df4e768", + "id": "31f376d8-2942-4dae-808f-a040c9a45228", "universalIdentifier": "20202020-49b8-4766-88fd-75f1e21b3d5f", "type": "RELATION", "name": "messageChannelMessageAssociations", @@ -12422,8 +4188,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -12431,30 +4197,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "6fb3608a-7e74-4b6e-94b6-e89e573f80c0", + "id": "cabe467a-d234-4809-976a-3bce37083b71", "nameSingular": "messageChannel", "namePlural": "messageChannels" }, "targetObjectMetadata": { "__typename": "Object", - "id": "e2717a89-8e3e-4d13-b5a0-3cbeaba7d75e", + "id": "38b956fd-1178-4a0c-a919-2a0b5c2874b0", "nameSingular": "messageChannelMessageAssociation", "namePlural": "messageChannelMessageAssociations" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "6f256134-12bb-432c-81a6-110b6df4e768", + "id": "31f376d8-2942-4dae-808f-a040c9a45228", "name": "messageChannelMessageAssociations" }, "targetFieldMetadata": { "__typename": "Field", - "id": "a4ece2be-f2d4-4db9-9c98-1491d3ded10f", + "id": "60a333f6-d610-4a5e-83d9-917ee4085319", "name": "messageChannel" } }, @@ -12462,7 +4228,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "a8f56178-e803-401a-91fe-a4e084ea8b05", + "id": "c59314d7-d501-47d0-939a-64afd1f9b82b", "universalIdentifier": "20202020-cc39-4432-9fe8-ec8ab8bbed94", "type": "RELATION", "name": "messageFolders", @@ -12475,8 +4241,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -12484,30 +4250,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "6fb3608a-7e74-4b6e-94b6-e89e573f80c0", + "id": "cabe467a-d234-4809-976a-3bce37083b71", "nameSingular": "messageChannel", "namePlural": "messageChannels" }, "targetObjectMetadata": { "__typename": "Object", - "id": "e123213f-74b3-4667-a970-5708339b9772", + "id": "5cde5eae-bc35-4966-86c1-477a74a657ff", "nameSingular": "messageFolder", "namePlural": "messageFolders" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "a8f56178-e803-401a-91fe-a4e084ea8b05", + "id": "c59314d7-d501-47d0-939a-64afd1f9b82b", "name": "messageFolders" }, "targetFieldMetadata": { "__typename": "Field", - "id": "cbc2b85c-eb1f-4f72-9ab0-d496dd268a6f", + "id": "c940da70-853e-49fa-9bbe-dcf45b51994b", "name": "messageChannel" } }, @@ -12517,9 +4283,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "15483cc1-2325-47a9-bb29-3474a8979548", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "id": "af992857-9c26-4da1-b164-452363c52162", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "name": "IDX_bf1967e8710f32f1a65c67fb4b4", "indexWhereClause": null, "indexType": "BTREE", @@ -12528,10 +4294,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "c85865ef-a6b1-47e9-88a4-fd807d2999be", - "fieldMetadataId": "01d488dc-8cb9-46c2-8039-ca48c7859be4", - "createdAt": "2026-02-25T16:13:34.260Z", - "updatedAt": "2026-02-25T16:13:34.260Z", + "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", "order": 0 } ] @@ -12543,7 +4309,2415 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "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", + "universalIdentifier": "20202020-1ba1-48ba-bc83-ef7e5990ed10", + "nameSingular": "task", + "namePlural": "tasks", + "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": "afd7dd08-926e-4065-b1a6-68fb378c145a", + "imageIdentifierFieldMetadataId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "shortcut": "T", + "isLabelSyncedWithName": false, + "isSearchable": true, + "duplicateCriteria": null, + "labelSingular": "Task", + "labelPlural": "Tasks", + "description": "A task", + "icon": "IconCheckbox", + "fieldsList": [ + { + "__typename": "Field", + "id": "9230edeb-b89f-4231-9bd9-03a8fbcdb970", + "universalIdentifier": "20202020-a02a-4151-8a51-89abcdefabcd", + "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": "8282d244-6c45-4cee-a108-35f959a9d594", + "universalIdentifier": "20202020-a02b-4152-9b52-9abcdefabcde", + "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": "6f37ee4b-da9d-4756-b5c3-06e2e7e773b0", + "universalIdentifier": "20202020-a02c-4153-8c53-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": "4e90a0e1-8943-4d74-8086-1fa9bd7aecce", + "universalIdentifier": "20202020-a02d-4154-9d54-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": "28549077-52fc-4658-a06d-0f9334c318c0", + "universalIdentifier": "20202020-7d47-4690-8a98-98b9a0c05dd8", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Task 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": "afd7dd08-926e-4065-b1a6-68fb378c145a", + "universalIdentifier": "20202020-b386-4cb7-aa5a-08d4a4d92680", + "type": "TEXT", + "name": "title", + "label": "Title", + "description": "Task 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": "a1a28d7d-f10f-4d2e-a780-270ba9858c30", + "universalIdentifier": "20202020-4aa0-4ae8-898d-7df0afd47ab1", + "type": "RICH_TEXT_V2", + "name": "bodyV2", + "label": "Body", + "description": "Task body", + "icon": "IconFilePencil", + "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": "1cb7483f-ec26-4419-9a1e-226d5982085e", + "universalIdentifier": "20202020-fd99-40da-951b-4cb9a352fce3", + "type": "DATE_TIME", + "name": "dueAt", + "label": "Due Date", + "description": "Task due 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": "57e1bcd8-376f-4f02-8ccf-f5ccde44c8a2", + "universalIdentifier": "20202020-70bc-48f9-89c5-6aa730b151e0", + "type": "SELECT", + "name": "status", + "label": "Status", + "description": "Task status", + "icon": "IconCheck", + "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": "'TODO'", + "options": [ + { + "id": "20202020-3d31-4860-ad07-5c4603d44887", + "color": "sky", + "label": "To do", + "value": "TODO", + "position": 0 + }, + { + "id": "20202020-c559-4f8e-8b8e-21136da8684d", + "color": "purple", + "label": "In progress", + "value": "IN_PROGRESS", + "position": 1 + }, + { + "id": "20202020-c7a7-43ff-8226-f6a97a32759e", + "color": "green", + "label": "Done", + "value": "DONE", + "position": 2 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "eb1970c3-08e2-458e-9b88-bea4141625f4", + "universalIdentifier": "20202020-1a04-48ab-a567-576965ae5387", + "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": "5928e399-7495-4bb3-a557-dfcc8d7f4d71", + "universalIdentifier": "9e8bf518-f4ab-433e-9674-efb75fba2802", + "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": "7d27c6bb-0f93-4731-9290-77eac1430d98", + "universalIdentifier": "20202020-4746-4e2f-870c-52b02c67c90d", + "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\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"bodyV2Markdown\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "5f4b74fb-fe95-465c-afa6-b6aa08671c20", + "universalIdentifier": "20202020-794d-4783-a8ff-cecdb15be139", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Task attachments", + "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": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "5f4b74fb-fe95-465c-afa6-b6aa08671c20", + "name": "attachments" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9df50dd1-4773-439b-abff-3f849b95dba3", + "universalIdentifier": "20202020-4d1d-41ac-b13b-621631298d65", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the task", + "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": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "7d4a6af5-536c-45af-8040-224ee553ce05", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "9df50dd1-4773-439b-abff-3f849b95dba3", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "4de6c38e-e41e-462e-b9d8-1476bfc940f8", + "name": "task" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "bb163d2a-e79f-4796-8bcc-7b2196964089", + "universalIdentifier": "20202020-de9c-4d0e-a452-713d4a3e5fc7", + "type": "RELATION", + "name": "taskTargets", + "label": "Relations", + "description": "Task targets", + "icon": "IconArrowUpRight", + "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": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "bb163d2a-e79f-4796-8bcc-7b2196964089", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "313fe199-eab5-4910-8d57-ef3ca16193e8", + "name": "task" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f43603d7-d5d2-418a-93ba-78711bd2b19c", + "universalIdentifier": "20202020-065a-4f42-a906-e20422c1753f", + "type": "RELATION", + "name": "assignee", + "label": "Assignee", + "description": "Task assignee", + "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": "assigneeId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "047105f3-62d8-4c46-ba31-67411fd98f94", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "f43603d7-d5d2-418a-93ba-78711bd2b19c", + "name": "assignee" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "be86ea7a-d64d-4266-9412-cc9d51a5f37e", + "name": "assignedTasks" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "950bbe53-564c-4c04-af78-80803e23bae4", + "universalIdentifier": "20202020-c778-4278-99ee-23a2837aee64", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Timeline Activities linked to the task.", + "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": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "950bbe53-564c-4c04-af78-80803e23bae4", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", + "name": "target" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "c67aedfb-59ea-4eef-a61c-9342e3c9a92a", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_b5b4da613fc4d734f65fb1deb6b", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "45e6a489-0c99-4595-b518-384ee6a4496f", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_d01a000cf26e1225d894dc3d364", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + } + ] + } + }, + { + "__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", @@ -12552,11 +6726,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": false, "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "c28b62bc-bc08-43de-be9a-2b8250a90555", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "labelIdentifierFieldMetadataId": "d09663d8-52cf-45da-b3d0-7daef4ef2900", "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "shortcut": "C", "isLabelSyncedWithName": false, "isSearchable": true, @@ -12575,7 +6749,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "fieldsList": [ { "__typename": "Field", - "id": "056def72-6560-4fdc-b480-70fe959249e6", + "id": "b076ddef-59e1-4822-b2e0-bffe2a604bbb", "universalIdentifier": "20202020-c05a-4061-8a61-1e2f3a4b5c6d", "type": "UUID", "name": "id", @@ -12588,20 +6762,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "7f00b215-25ce-4c31-bfc2-d9e62acfb016", + "id": "79036ba7-57a8-4933-841e-74b26f2a0d54", "universalIdentifier": "20202020-c05b-4062-9b62-2f3a4b5c6d7e", "type": "DATE_TIME", "name": "createdAt", @@ -12614,8 +6788,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -12623,13 +6797,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "08eb3fdd-de2d-42d3-ad80-220fbfc10f6d", + "id": "ef4d7d67-37ec-469e-9a73-38b30fe077d9", "universalIdentifier": "20202020-c05c-4063-8c63-3a4b5c6d7e8f", "type": "DATE_TIME", "name": "updatedAt", @@ -12642,8 +6816,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -12651,13 +6825,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "1b01322a-8f56-4f97-81ab-b3ac9b19180c", + "id": "2d4c342b-6d47-47e3-87d8-9d9f945ed119", "universalIdentifier": "20202020-c05d-4064-9d64-4b5c6d7e8f9a", "type": "DATE_TIME", "name": "deletedAt", @@ -12670,8 +6844,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -12679,13 +6853,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "c28b62bc-bc08-43de-be9a-2b8250a90555", + "id": "d09663d8-52cf-45da-b3d0-7daef4ef2900", "universalIdentifier": "20202020-4d99-4e2e-a84c-4a27837b1ece", "type": "TEXT", "name": "name", @@ -12698,20 +6872,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "c2a8c9a7-d5f0-4e37-b95e-f0b1d9d3d803", + "id": "d337b009-b6f4-4a7c-b186-9f5ff5ed2a69", "universalIdentifier": "20202020-0c28-43d8-8ba5-3659924d3489", "type": "LINKS", "name": "domainName", @@ -12724,8 +6898,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": true, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -12733,13 +6907,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e42aaab5-145b-4482-8286-c39d70698998", + "id": "62954303-57a5-44d4-85c7-1936334c44eb", "universalIdentifier": "20202020-c5ce-4adc-b7b6-9c0979fc55e7", "type": "ADDRESS", "name": "address", @@ -12752,20 +6926,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "cf594421-ebf1-48bc-af17-9b800e7cd9a4", + "id": "f06fa246-62df-4fb8-aba6-1950d599b6fd", "universalIdentifier": "20202020-8965-464a-8a75-74bafc152a0b", "type": "NUMBER", "name": "employees", @@ -12778,20 +6952,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a954b041-0ce1-461b-9a51-5d97ad46073d", + "id": "f3b1508b-e846-40c3-b27a-550036172e4a", "universalIdentifier": "20202020-ebeb-4beb-b9ad-6848036fb451", "type": "LINKS", "name": "linkedinLink", @@ -12804,20 +6978,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e0b6b64c-b21a-413d-b6ed-80288f850ccb", + "id": "b1f85e87-dddb-40c9-b778-209850414a07", "universalIdentifier": "20202020-6f64-4fd9-9580-9c1991c7d8c3", "type": "LINKS", "name": "xLink", @@ -12830,20 +7004,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "8c4dc1f6-ee84-40ce-ba49-fc44c89d8c89", + "id": "1d2ed9bc-183f-43a9-9202-a463f1a792cd", "universalIdentifier": "20202020-602a-495c-9776-f5d5b11d227b", "type": "CURRENCY", "name": "annualRecurringRevenue", @@ -12856,20 +7030,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "0b9a8bbe-2ffc-4d69-b729-265aec9cd391", + "id": "24114a48-0928-4f50-a6e4-f538e58516fd", "universalIdentifier": "20202020-ba6b-438a-8213-2c5ba28d76a2", "type": "BOOLEAN", "name": "idealCustomerProfile", @@ -12882,20 +7056,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "04f9b386-061c-4420-95ba-0969a50fa287", + "id": "6706b78c-d987-4d08-b00a-5aff663dabb3", "universalIdentifier": "20202020-9b4e-462b-991d-a0ee33326454", "type": "POSITION", "name": "position", @@ -12908,20 +7082,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "39a075f3-cdc2-454b-a463-786aa9779500", + "id": "a8fa043f-f24d-43e2-8b42-18c120cc2184", "universalIdentifier": "20202020-fabc-451d-ab7d-412170916baa", "type": "ACTOR", "name": "createdBy", @@ -12934,8 +7108,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -12945,13 +7119,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "89792e56-2d82-4d5d-9c80-5bab4931313f", + "id": "4d2a19b8-9c0b-48b6-884b-e0fa07fdad46", "universalIdentifier": "7444022e-b38f-4d4f-801b-cd664abc4834", "type": "ACTOR", "name": "updatedBy", @@ -12964,8 +7138,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -12975,13 +7149,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "2721897c-f2bf-4d38-9ad8-75cf58ea8fb4", + "id": "0c2c2eb2-82c2-4743-86ba-8b49c9381de3", "universalIdentifier": "85c71601-72f9-4b7b-b343-d46100b2c74d", "type": "TS_VECTOR", "name": "searchVector", @@ -12994,8 +7168,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -13004,13 +7178,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "8ec2c996-b695-42d4-a1be-bdc8fcb5925f", + "id": "db5b7178-2e82-4104-b473-344078ecfcc0", "universalIdentifier": "20202020-c1b5-4120-b0f0-987ca401ed53", "type": "RELATION", "name": "attachments", @@ -13023,8 +7197,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -13032,30 +7206,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", "nameSingular": "company", "namePlural": "companies" }, "targetObjectMetadata": { "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", + "id": "48397bb7-38df-43dd-81b8-2593bef340ca", "nameSingular": "attachment", "namePlural": "attachments" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "8ec2c996-b695-42d4-a1be-bdc8fcb5925f", + "id": "db5b7178-2e82-4104-b473-344078ecfcc0", "name": "attachments" }, "targetFieldMetadata": { "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", + "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", "name": "target" } }, @@ -13063,7 +7237,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "94902a74-b8ca-4a56-8573-7469f0b664f6", + "id": "b343e89c-5f48-4769-be0f-b15552b06488", "universalIdentifier": "20202020-3213-4ddf-9494-6422bcff8d7c", "type": "RELATION", "name": "people", @@ -13076,8 +7250,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -13085,30 +7259,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", "nameSingular": "company", "namePlural": "companies" }, "targetObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", "nameSingular": "person", "namePlural": "people" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "94902a74-b8ca-4a56-8573-7469f0b664f6", + "id": "b343e89c-5f48-4769-be0f-b15552b06488", "name": "people" }, "targetFieldMetadata": { "__typename": "Field", - "id": "f6be42ac-ccb8-4df0-8c22-a9627d655c76", + "id": "8cc08b2f-7b0b-459d-b32f-883960e8f2d3", "name": "company" } }, @@ -13116,7 +7290,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "9b941ed8-0940-4146-91c2-4986bca46f4f", + "id": "1c659dd6-4c64-427b-96f5-0c56b16f7b52", "universalIdentifier": "20202020-95b8-4e10-9881-edb5d4765f9d", "type": "RELATION", "name": "accountOwner", @@ -13129,8 +7303,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -13140,30 +7314,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", "nameSingular": "company", "namePlural": "companies" }, "targetObjectMetadata": { "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", + "id": "047105f3-62d8-4c46-ba31-67411fd98f94", "nameSingular": "workspaceMember", "namePlural": "workspaceMembers" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "9b941ed8-0940-4146-91c2-4986bca46f4f", + "id": "1c659dd6-4c64-427b-96f5-0c56b16f7b52", "name": "accountOwner" }, "targetFieldMetadata": { "__typename": "Field", - "id": "d2110d8d-632d-4c73-b990-ada7bb4acc90", + "id": "6b3bb88a-6986-423d-a982-d15e4443b9d0", "name": "accountOwnerForCompanies" } }, @@ -13171,7 +7345,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "e5fd623a-7386-4915-b4b9-75abb5874d75", + "id": "c75afae6-0b8b-428d-9121-9a051a7c1bb6", "universalIdentifier": "20202020-cb17-4a61-8f8f-3be6730480de", "type": "RELATION", "name": "taskTargets", @@ -13184,8 +7358,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -13193,30 +7367,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", "nameSingular": "company", "namePlural": "companies" }, "targetObjectMetadata": { "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", + "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", "nameSingular": "taskTarget", "namePlural": "taskTargets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "e5fd623a-7386-4915-b4b9-75abb5874d75", + "id": "c75afae6-0b8b-428d-9121-9a051a7c1bb6", "name": "taskTargets" }, "targetFieldMetadata": { "__typename": "Field", - "id": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", + "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", "name": "target" } }, @@ -13224,7 +7398,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "21de5d13-2d1c-461c-8d1a-b4cbd39cd161", + "id": "61888137-b7ee-4003-9fbc-5c35120b3856", "universalIdentifier": "20202020-bae0-4556-a74a-a9c686f77a88", "type": "RELATION", "name": "noteTargets", @@ -13237,8 +7411,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -13246,30 +7420,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", "nameSingular": "company", "namePlural": "companies" }, "targetObjectMetadata": { "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", + "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", "nameSingular": "noteTarget", "namePlural": "noteTargets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "21de5d13-2d1c-461c-8d1a-b4cbd39cd161", + "id": "61888137-b7ee-4003-9fbc-5c35120b3856", "name": "noteTargets" }, "targetFieldMetadata": { "__typename": "Field", - "id": "018f73d3-5212-467d-95b6-986772b517b0", + "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", "name": "target" } }, @@ -13277,7 +7451,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "2bf4c652-38f1-44f7-bdc8-0b8f444be2b7", + "id": "04c28495-803a-4ec2-b02b-dee514d78dc6", "universalIdentifier": "20202020-add3-4658-8e23-d70dccb6d0ec", "type": "RELATION", "name": "opportunities", @@ -13290,8 +7464,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -13299,30 +7473,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", "nameSingular": "company", "namePlural": "companies" }, "targetObjectMetadata": { "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", + "id": "44e586bb-74a8-481c-b734-514f6030581e", "nameSingular": "opportunity", "namePlural": "opportunities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "2bf4c652-38f1-44f7-bdc8-0b8f444be2b7", + "id": "04c28495-803a-4ec2-b02b-dee514d78dc6", "name": "opportunities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "4ac9e74d-96c7-46b4-b529-1a188bb11343", + "id": "8043e437-ce0f-426e-9ad4-aae427bf2f78", "name": "company" } }, @@ -13330,7 +7504,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "7f7d0be5-e54b-4251-a396-b7c9ce21b5d6", + "id": "1b604037-c9a2-4e35-b218-f59dd217c442", "universalIdentifier": "20202020-4d1d-41ac-b13b-621631298d55", "type": "RELATION", "name": "favorites", @@ -13343,8 +7517,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -13352,30 +7526,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", "nameSingular": "company", "namePlural": "companies" }, "targetObjectMetadata": { "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "id": "7d4a6af5-536c-45af-8040-224ee553ce05", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "7f7d0be5-e54b-4251-a396-b7c9ce21b5d6", + "id": "1b604037-c9a2-4e35-b218-f59dd217c442", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "39e99ea0-e48b-4c70-8fdd-26ce22a3843f", + "id": "c9226dde-adb1-47c3-b8bc-0defd0a4ca0b", "name": "company" } }, @@ -13383,7 +7557,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "783946e8-cf8c-49a3-a6f3-6d99ec2816fa", + "id": "76fc1b66-6b4c-42dc-a9f1-c569527f8c61", "universalIdentifier": "20202020-0414-4daf-9c0d-64fe7b27f89f", "type": "RELATION", "name": "timelineActivities", @@ -13396,8 +7570,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -13405,30 +7579,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", "nameSingular": "company", "namePlural": "companies" }, "targetObjectMetadata": { "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", + "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", "nameSingular": "timelineActivity", "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "783946e8-cf8c-49a3-a6f3-6d99ec2816fa", + "id": "76fc1b66-6b4c-42dc-a9f1-c569527f8c61", "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", + "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", "name": "target" } }, @@ -13436,8 +7610,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "071a18ef-825c-44c0-a0a5-f56b998e41ec", - "universalIdentifier": "3b68c205-e17b-4689-b855-55bc9fd4f441", + "id": "b3ae6427-89a7-469e-a0e5-4dbb625d71c3", + "universalIdentifier": "087b6d03-cd2d-4384-9fcd-88978358015e", "type": "TEXT", "name": "tagline", "label": "Tagline", @@ -13449,21 +7623,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:35.513Z", - "updatedAt": "2026-02-25T16:13:35.513Z", + "createdAt": "2026-02-26T11:55:17.728Z", + "updatedAt": "2026-02-26T11:55:17.728Z", "defaultValue": "''", "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "099b124a-3fca-4afa-8d72-f05a6761efd9", - "universalIdentifier": "ccdbd549-c43a-4f27-a195-cab518fbaaec", + "id": "c2b78ff1-062a-473a-9725-ea761eed4506", + "universalIdentifier": "7ad1308c-6f0b-4b2a-9ebf-5079eb23f35e", "type": "LINKS", "name": "introVideo", "label": "Intro Video", @@ -13475,21 +7649,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:35.513Z", - "updatedAt": "2026-02-25T16:13:35.513Z", + "createdAt": "2026-02-26T11:55:17.728Z", + "updatedAt": "2026-02-26T11:55:17.728Z", "defaultValue": null, "options": null, "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "618d9627-411d-4950-bfee-d241ca4083eb", - "universalIdentifier": "38f3529c-41fe-4ab2-ae5a-0cb5b654ae34", + "id": "4958a20a-1128-433c-a49b-e65580e79093", + "universalIdentifier": "28a12c81-634a-4ea6-8f9d-6018b4a4c46d", "type": "MULTI_SELECT", "name": "workPolicy", "label": "Work Policy", @@ -13501,26 +7675,26 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:35.513Z", - "updatedAt": "2026-02-25T16:13:35.513Z", + "createdAt": "2026-02-26T11:55:17.728Z", + "updatedAt": "2026-02-26T11:55:17.728Z", "defaultValue": null, "options": [ { - "id": "8e3c3001-e47e-44a7-a1b4-32ad0e39f517", + "id": "0c6c6658-81df-4141-97ec-bdd6f5664913", "color": "green", "label": "On-Site", "value": "ON_SITE", "position": 0 }, { - "id": "40330523-3129-4d3d-ae63-e1bd90239c2a", + "id": "c9226566-97cd-45a4-8685-2fc74adfd01f", "color": "turquoise", "label": "Hybrid", "value": "HYBRID", "position": 1 }, { - "id": "bd549b6d-54a2-4a11-827d-26d244cd5543", + "id": "10c7fd57-745e-4e1f-bd08-bdb57f98fefc", "color": "sky", "label": "Remote Work", "value": "REMOTE_WORK", @@ -13530,14 +7704,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "617c6152-22a1-4e41-8c2a-9ebf229821e4", - "universalIdentifier": "41e17ff3-0e12-4e11-9713-31380240f947", + "id": "cb03aa30-6560-457a-88cc-6a5f94a98daa", + "universalIdentifier": "5520c45d-1981-4f05-8842-840337d9d048", "type": "BOOLEAN", "name": "visaSponsorship", "label": "Visa Sponsorship", @@ -13549,21 +7723,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:35.513Z", - "updatedAt": "2026-02-25T16:13:35.513Z", + "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": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "fa9cc72e-911f-452e-b172-28dbf7c24e52", - "universalIdentifier": "26a0cc4d-aa59-44d8-8a65-7ef59becf521", + "id": "9ad2572c-0171-43f3-8f99-bdc72ee4e24f", + "universalIdentifier": "3a71e9e3-cdc0-4db3-a6f3-91ad0171a876", "type": "RELATION", "name": "caredForPets", "label": "Cared For Pets", @@ -13575,40 +7749,40 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:35.770Z", - "updatedAt": "2026-02-25T16:13:36.270Z", + "createdAt": "2026-02-26T11:55:18.042Z", + "updatedAt": "2026-02-26T11:55:18.747Z", "defaultValue": null, "options": null, "settings": { "relationType": "ONE_TO_MANY", - "junctionTargetFieldId": "57bc0677-2548-45d8-852e-815c4e8f8f23" + "junctionTargetFieldId": "5d68600f-9214-42e3-a00b-fb783342e720" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", "nameSingular": "company", "namePlural": "companies" }, "targetObjectMetadata": { "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", + "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", "nameSingular": "petCareAgreement", "namePlural": "petCareAgreements" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "fa9cc72e-911f-452e-b172-28dbf7c24e52", + "id": "9ad2572c-0171-43f3-8f99-bdc72ee4e24f", "name": "caredForPets" }, "targetFieldMetadata": { "__typename": "Field", - "id": "1981b8d6-d7f0-4fcb-9502-d9ba7721d896", + "id": "78472eb5-fa38-41c7-b417-02bf919ca5d2", "name": "caretaker" } }, @@ -13616,8 +7790,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "35c0fd85-7884-4181-85dc-87f88a9cb1c4", - "universalIdentifier": "c3248851-4f3c-4d3e-9be9-2b1cae9bf5ae", + "id": "b2785c50-d681-45d3-be13-657112f55f5f", + "universalIdentifier": "c2e7a40c-bfb5-4af8-a7db-a26367fa9730", "type": "RELATION", "name": "previousEmployees", "label": "Previous Employees", @@ -13629,40 +7803,40 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:35.938Z", - "updatedAt": "2026-02-25T16:13:36.161Z", + "createdAt": "2026-02-26T11:55:18.263Z", + "updatedAt": "2026-02-26T11:55:18.584Z", "defaultValue": null, "options": null, "settings": { "relationType": "ONE_TO_MANY", - "junctionTargetFieldId": "a3325cf5-8f6d-4ce9-9935-9b373a5b2f82" + "junctionTargetFieldId": "0c8f580e-aa4e-4bb2-a168-589e8b7654f1" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", "nameSingular": "company", "namePlural": "companies" }, "targetObjectMetadata": { "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", + "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", "nameSingular": "employmentHistory", "namePlural": "employmentHistories" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "35c0fd85-7884-4181-85dc-87f88a9cb1c4", + "id": "b2785c50-d681-45d3-be13-657112f55f5f", "name": "previousEmployees" }, "targetFieldMetadata": { "__typename": "Field", - "id": "3cd6f442-53df-4d54-ae82-ef81b8d1ab6a", + "id": "0836a83a-2c48-49ed-bbee-be155dce5fc5", "name": "company" } }, @@ -13672,9 +7846,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "c47d78ca-2dee-4826-9dca-865c47d11926", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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", @@ -13683,19 +7857,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "56b32fdd-45bc-4a84-9f64-d5472aa587e0", - "fieldMetadataId": "9b941ed8-0940-4146-91c2-4986bca46f4f", - "createdAt": "2026-02-25T16:13:34.240Z", - "updatedAt": "2026-02-25T16:13:34.240Z", + "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": "44652f82-50a2-4750-a02d-8ca89c2827af", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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", @@ -13704,19 +7878,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "5e9cb86e-b467-40d8-b631-921b519d938a", - "fieldMetadataId": "c2a8c9a7-d5f0-4e37-b95e-f0b1d9d3d803", - "createdAt": "2026-02-25T16:13:34.242Z", - "updatedAt": "2026-02-25T16:13:34.242Z", + "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": "a7a4d2ca-9f39-4d19-a887-b81e46b30a44", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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", @@ -13725,10 +7899,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "45edff4f-957c-4a68-9e00-e6c7fec3986b", - "fieldMetadataId": "2721897c-f2bf-4d38-9ad8-75cf58ea8fb4", - "createdAt": "2026-02-25T16:13:34.243Z", - "updatedAt": "2026-02-25T16:13:34.243Z", + "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 } ] @@ -13740,7 +7914,7886 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "678a973d-c1ae-4b73-86c4-530b5df455e9", + "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", + "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-26T11:55:17.052Z", + "updatedAt": "2026-02-26T11:55:17.052Z", + "defaultValue": null, + "options": [ + { + "id": "ede5bc5e-61d6-4876-aff0-2d81723d58e9", + "label": "1", + "value": "RATING_1", + "position": 0 + }, + { + "id": "e62aa7ae-813a-4107-89f3-f344d359aebf", + "label": "2", + "value": "RATING_2", + "position": 1 + }, + { + "id": "50e850a8-c904-4c07-a240-1ab2396edb21", + "label": "3", + "value": "RATING_3", + "position": 2 + }, + { + "id": "aa6585d3-bab9-47c3-9d13-9725b427d316", + "label": "4", + "value": "RATING_4", + "position": 3 + }, + { + "id": "ea3fd390-c2d9-46ee-9bd1-fe7ee74d5296", + "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": "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", + "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-26T11:55:18.354Z", + "updatedAt": "2026-02-26T11:55:18.664Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY", + "junctionTargetFieldId": "78472eb5-fa38-41c7-b417-02bf919ca5d2" + }, + "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": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "21a0d7ff-f393-4c07-abce-371fc5f6c9a9", + "name": "caretakers" + }, + "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" + } + }, + "morphRelations": null + } + ], + "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", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "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", + "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" + } + }, + "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", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + } + ] + } + }, + { + "__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", + "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", + "imageIdentifierFieldMetadataId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Message Participant", + "labelPlural": "Message Participants", + "description": "Message Participants", + "icon": "IconUserCircle", + "fieldsList": [ + { + "__typename": "Field", + "id": "0117dcbe-4903-484a-9ad1-29a755ced221", + "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-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": "768d3d65-18e9-478a-a06c-797c0e5199e4", + "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-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": "bf313b51-f67b-4acd-8ba9-b8617dba47cc", + "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-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": "c79f59c1-c88f-4067-8d9a-dbf587a39f34", + "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-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": "0278bafe-4665-417e-ae6d-06b1569fa704", + "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-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": "8e4b3099-1f38-45e4-b4f7-5de943f93cbf", + "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-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": "31cf7ff6-347e-45e8-a729-24531df00f66", + "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-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": "1143a734-6e29-47be-a5d9-9630d15264ad", + "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-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": "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", + "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": "640557f8-78f2-4d12-9d61-811cd143c684", + "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-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": "8a10e79e-bd6d-4fe1-888f-9f79bd6d6a31", + "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-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "messageId" + }, + "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": "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", + "nameSingular": "messageChannel", + "namePlural": "messageChannels" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "c940da70-853e-49fa-9bbe-dcf45b51994b", + "name": "messageChannel" + }, + "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" + } + }, + "morphRelations": null + } + ], + "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", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + } + ] + } + }, + { + "__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", + "universalIdentifier": "20202020-5a9a-44e8-95df-771cd06d0fb1", + "nameSingular": "taskTarget", + "namePlural": "taskTargets", + "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": "71905b85-8e3d-4ca9-aeff-544a3181ccdc", + "imageIdentifierFieldMetadataId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Task Target", + "labelPlural": "Task Targets", + "description": "A task target", + "icon": "IconCheckbox", + "fieldsList": [ + { + "__typename": "Field", + "id": "71905b85-8e3d-4ca9-aeff-544a3181ccdc", + "universalIdentifier": "20202020-a03a-4161-8a61-cdefabcdefab", + "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": "3925e204-5453-47de-8e31-41ea20fad79a", + "universalIdentifier": "20202020-a03b-4162-9b62-defabcdefabc", + "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": "5a2afd8d-f77f-4dd5-9d34-7e05aa94f063", + "universalIdentifier": "20202020-a03c-4163-8c63-efabcdefabcd", + "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": "60643535-f0ef-4df3-be9e-ba36e3b0c1e9", + "universalIdentifier": "20202020-a03d-4164-9d64-fabcdefabcde", + "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": "6991a8a5-76f2-4ed3-ae6f-a36e5271741c", + "universalIdentifier": "65fe2a53-45e4-4225-9711-b827f55e51cc", + "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": "f1d5c2f6-cc3d-4179-bb56-491f97af5794", + "universalIdentifier": "bea3734f-aff2-49ed-9dc9-d4666a2e2178", + "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": "a4b1fba4-a91c-4a05-8601-3d593fbc100b", + "universalIdentifier": "4216c06a-498b-4111-9577-d9bcbccdda39", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "TaskTarget 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": "7efaf497-35db-4924-a6d7-3c748b5c427e", + "universalIdentifier": "8768a9c0-37c0-4465-b86d-c4c7f466ec23", + "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": "313fe199-eab5-4910-8d57-ef3ca16193e8", + "universalIdentifier": "20202020-e881-457a-8758-74aaef4ae78a", + "type": "RELATION", + "name": "task", + "label": "Task", + "description": "TaskTarget 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": "5668785e-f248-4e4a-bd3e-d86806ee015b", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", + "nameSingular": "task", + "namePlural": "tasks" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "313fe199-eab5-4910-8d57-ef3ca16193e8", + "name": "task" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "bb163d2a-e79f-4796-8bcc-7b2196964089", + "name": "taskTargets" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", + "universalIdentifier": "1f249a53-6ad7-4a6a-88f0-adfe5c9282a9", + "type": "MORPH_RELATION", + "name": "target", + "label": "SurveyResult", + "description": "TaskTargets Survey result", + "icon": "IconCheckbox", + "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": "targetSurveyResultId" + }, + "isLabelSyncedWithName": false, + "morphId": "20202020-f636-435d-ab8d-e1168b375c71", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", + "relation": null, + "morphRelations": [ + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", + "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", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "147f4660-9b9f-4d1c-9953-22e44108224b", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "72a5b8f7-3893-4dea-b922-a6d29bd5418d", + "name": "taskTargets" + } + } + ] + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "76d82d0c-e505-4d2a-a61d-fe405bb303f9", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_74ad70941560ba6b2a179ad460c", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "a5c8288e-98d0-484a-bb0c-f706a1f050f8", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_f3d9b01b0d587804e7beeb2a534", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "d9562041-3b1e-4fb1-a87a-b917bb1ebc9b", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_419778384cd97935db3e246f589", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "a21fe5d5-00f7-456b-ba50-bf6d9640acc9", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_f0e95ec5e72b91f28fffac1201b", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", "universalIdentifier": "20202020-4e28-4e95-a9d7-6c00874f843c", "nameSingular": "workflowRun", "namePlural": "workflowRuns", @@ -13749,11 +15802,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "22464215-d240-40ea-82d4-ee0a7e309594", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "labelIdentifierFieldMetadataId": "04ac0e46-8a22-4f85-b837-a6d7c2989f87", "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, @@ -13765,7 +15818,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "fieldsList": [ { "__typename": "Field", - "id": "ae36ae5d-d46f-4f37-a125-42e0bfebb0bd", + "id": "28ccb1f2-1881-4273-8ac8-9a54e76e8abd", "universalIdentifier": "20202020-f03a-4191-8a91-cdefabcdefab", "type": "UUID", "name": "id", @@ -13778,20 +15831,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "5b675815-47dc-4c3b-a555-f5b8b32a01c1", + "id": "8f83fea9-82ba-47e2-900e-03ce8d7a442f", "universalIdentifier": "20202020-f03b-4192-9b92-defabcdefabc", "type": "DATE_TIME", "name": "createdAt", @@ -13804,8 +15857,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -13813,13 +15866,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "97577ca8-2e9a-4bca-bdc1-a638339e37a2", + "id": "35adff53-95db-4b55-a2bc-1e78a73ecf98", "universalIdentifier": "20202020-f03c-4193-8c93-efabcdefabcd", "type": "DATE_TIME", "name": "updatedAt", @@ -13832,8 +15885,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -13841,13 +15894,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "d499de14-856b-492f-aee7-177d43bec6fc", + "id": "a9754506-086a-42ad-a7de-ec4188826fde", "universalIdentifier": "20202020-f03d-4194-9d94-fabcdefabcde", "type": "DATE_TIME", "name": "deletedAt", @@ -13860,8 +15913,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -13869,13 +15922,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "22464215-d240-40ea-82d4-ee0a7e309594", + "id": "04ac0e46-8a22-4f85-b837-a6d7c2989f87", "universalIdentifier": "20202020-b840-4253-aef9-4e5013694587", "type": "TEXT", "name": "name", @@ -13888,20 +15941,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "c7ecff74-da5b-4bd9-a186-3ba13a19a8b2", + "id": "d9a5cbc5-064a-4846-87c3-251dd27b89f0", "universalIdentifier": "20202020-f1e3-4de1-a461-b5c4fdbc861d", "type": "DATE_TIME", "name": "enqueuedAt", @@ -13914,20 +15967,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e8b424f4-94ba-4cb4-ab01-d0a472f6615e", + "id": "0531f77c-6953-4a58-bce5-c8afcefe1f23", "universalIdentifier": "20202020-a234-4e2d-bd15-85bcea6bb183", "type": "DATE_TIME", "name": "startedAt", @@ -13940,20 +15993,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "524fc451-0332-4d87-b9a7-2724913485c9", + "id": "52db01a4-a473-4050-8717-5c18922fa202", "universalIdentifier": "20202020-e1c1-4b6b-bbbd-b2beaf2e159e", "type": "DATE_TIME", "name": "endedAt", @@ -13966,20 +16019,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "298debfb-9263-49d7-9d1d-66f563331a5e", + "id": "05f163ff-089a-42a7-97e3-4fb0e3deb671", "universalIdentifier": "20202020-6b3e-4f9c-8c2b-2e5b8e6d6f3b", "type": "SELECT", "name": "status", @@ -13992,8 +16045,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "'NOT_STARTED'", "options": [ { @@ -14049,13 +16102,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "ce60207e-c0df-4b70-904f-88a7c6da0a62", + "id": "6537b94a-d50f-486a-9443-3286fe6d030f", "universalIdentifier": "20202020-6007-401a-8aa5-e6f38581a6f3", "type": "ACTOR", "name": "createdBy", @@ -14068,8 +16121,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -14079,13 +16132,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "13bbaafa-00ed-43a2-adce-886bf5d3b02f", + "id": "d67b36ca-4548-42b3-9544-03c6b0e8da8d", "universalIdentifier": "730dc1c9-34f5-4c22-84a6-bcb55b7604e2", "type": "ACTOR", "name": "updatedBy", @@ -14098,8 +16151,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -14109,13 +16162,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a372dfb2-93b1-4c63-b38e-1063ab9f6f42", + "id": "2a952c17-3830-4936-b316-5d258860a346", "universalIdentifier": "20202020-611f-45f3-9cde-d64927e8ec57", "type": "RAW_JSON", "name": "state", @@ -14128,20 +16181,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "95001fd9-b2c5-47f9-a73d-9c709066b082", + "id": "123aee6c-a31e-4cbb-9bef-3c50731631ef", "universalIdentifier": "20202020-189c-478a-b867-d72feaf5926a", "type": "RAW_JSON", "name": "context", @@ -14154,20 +16207,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b85f0463-0827-428d-a803-38f17aec2e93", + "id": "a8f0c153-643f-48f5-b919-a471117fcfe1", "universalIdentifier": "20202020-7be4-4db2-8ac6-3ff0d740843d", "type": "RAW_JSON", "name": "output", @@ -14180,20 +16233,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a1b85635-32b2-4490-9333-c668fc42074c", + "id": "5ff649a1-e7c2-41e0-8cdd-2f8285b5e363", "universalIdentifier": "20202020-7802-4c40-ae89-1f506fe3365c", "type": "POSITION", "name": "position", @@ -14206,20 +16259,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a90643a2-9466-442f-bab1-68d4d4dfa591", + "id": "dfd75fa5-981b-4b13-b642-8c9660039c1c", "universalIdentifier": "20202020-0b91-4ded-b1ac-cbd5efa58cb9", "type": "TS_VECTOR", "name": "searchVector", @@ -14232,8 +16285,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -14242,13 +16295,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "ce7c3819-7bd0-434a-b15f-1f3c923c7776", + "id": "c5b2856a-7a7b-4b3d-a71f-c2b579ce9756", "universalIdentifier": "20202020-4baf-4604-b899-2f7fcfbbf90d", "type": "RELATION", "name": "favorites", @@ -14261,8 +16314,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -14270,30 +16323,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "678a973d-c1ae-4b73-86c4-530b5df455e9", + "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", "nameSingular": "workflowRun", "namePlural": "workflowRuns" }, "targetObjectMetadata": { "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "id": "7d4a6af5-536c-45af-8040-224ee553ce05", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "ce7c3819-7bd0-434a-b15f-1f3c923c7776", + "id": "c5b2856a-7a7b-4b3d-a71f-c2b579ce9756", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "910d2994-fe34-4a7f-bbd7-a3fbcfb6dde9", + "id": "06307fef-1bb9-414b-ba29-e66bce2c416e", "name": "workflowRun" } }, @@ -14301,7 +16354,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "b74512b6-3573-4c02-9b51-39ac4af07b45", + "id": "c62c418e-9273-4d97-8e78-372de9e3b33c", "universalIdentifier": "20202020-af4d-4eb0-babc-eb960a45b356", "type": "RELATION", "name": "timelineActivities", @@ -14314,8 +16367,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -14323,30 +16376,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "678a973d-c1ae-4b73-86c4-530b5df455e9", + "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", "nameSingular": "workflowRun", "namePlural": "workflowRuns" }, "targetObjectMetadata": { "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", + "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", "nameSingular": "timelineActivity", "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "b74512b6-3573-4c02-9b51-39ac4af07b45", + "id": "c62c418e-9273-4d97-8e78-372de9e3b33c", "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", + "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", "name": "target" } }, @@ -14354,7 +16407,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "f24d129b-6c23-4c3c-b980-9ce2e0dbc4e0", + "id": "459f0273-b38a-454e-b910-937e6ea1580e", "universalIdentifier": "20202020-8c57-4e7f-84f5-f373f68e1b82", "type": "RELATION", "name": "workflow", @@ -14367,8 +16420,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -14378,30 +16431,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "678a973d-c1ae-4b73-86c4-530b5df455e9", + "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", "nameSingular": "workflowRun", "namePlural": "workflowRuns" }, "targetObjectMetadata": { "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", + "id": "85c771f3-8969-4401-93f0-7d1e48bd1cab", "nameSingular": "workflow", "namePlural": "workflows" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "f24d129b-6c23-4c3c-b980-9ce2e0dbc4e0", + "id": "459f0273-b38a-454e-b910-937e6ea1580e", "name": "workflow" }, "targetFieldMetadata": { "__typename": "Field", - "id": "206c3e94-19df-4a5f-894a-37efcaf1c1bc", + "id": "fced1683-e122-4618-9f14-fc4ac2e6ebb9", "name": "runs" } }, @@ -14409,7 +16462,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "bd09a2dd-ea28-485b-ae73-a5d05b6fe16b", + "id": "86e20eb8-69f9-453b-946c-919f04163304", "universalIdentifier": "20202020-2f52-4ba8-8dc4-d0d6adb9578d", "type": "RELATION", "name": "workflowVersion", @@ -14422,8 +16475,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -14433,30 +16486,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "678a973d-c1ae-4b73-86c4-530b5df455e9", + "id": "51917c2b-53c5-48de-bfc8-3b6a467d112e", "nameSingular": "workflowRun", "namePlural": "workflowRuns" }, "targetObjectMetadata": { "__typename": "Object", - "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", + "id": "f7616bae-a1a4-4673-b9c6-ea67e962fdfe", "nameSingular": "workflowVersion", "namePlural": "workflowVersions" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "bd09a2dd-ea28-485b-ae73-a5d05b6fe16b", + "id": "86e20eb8-69f9-453b-946c-919f04163304", "name": "workflowVersion" }, "targetFieldMetadata": { "__typename": "Field", - "id": "154d4a23-7284-4382-87de-c59b038db715", + "id": "ef9239be-aa42-4804-badd-154638418497", "name": "runs" } }, @@ -14466,9 +16519,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "9c9d4c73-275e-469d-a40e-6f1c2dc50125", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "id": "7fca0df5-3d7c-45ea-b447-d444befca672", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "name": "IDX_9fdeb410f15f569f2843698c5b3", "indexWhereClause": null, "indexType": "BTREE", @@ -14477,19 +16530,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "2ddf2ed0-3151-490b-97b3-1d96d9887f30", - "fieldMetadataId": "bd09a2dd-ea28-485b-ae73-a5d05b6fe16b", - "createdAt": "2026-02-25T16:13:34.291Z", - "updatedAt": "2026-02-25T16:13:34.291Z", + "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", "order": 0 } ] }, { "__typename": "Index", - "id": "e9505869-5aed-4161-b7a4-894b10a2b74e", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "id": "d392de10-f1d9-49ee-86f9-3ab923ce6adf", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "name": "IDX_eced9eb2a6cc8f9a5b49fe4b04e", "indexWhereClause": null, "indexType": "BTREE", @@ -14498,19 +16551,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "cea22282-d9fb-4eac-8cbd-147bcd9956d2", - "fieldMetadataId": "f24d129b-6c23-4c3c-b980-9ce2e0dbc4e0", - "createdAt": "2026-02-25T16:13:34.292Z", - "updatedAt": "2026-02-25T16:13:34.292Z", + "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", "order": 0 } ] }, { "__typename": "Index", - "id": "e74c2941-7c0e-40f4-b07a-c084796e0902", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "id": "298e819c-fd39-4347-a08e-cd82604abd0a", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "name": "IDX_261d8661b94dbb98cc85cffab46", "indexWhereClause": null, "indexType": "GIN", @@ -14519,10 +16572,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "8328bfbd-35d9-432d-9c05-f6c642e1ab9c", - "fieldMetadataId": "a90643a2-9466-442f-bab1-68d4d4dfa591", - "createdAt": "2026-02-25T16:13:34.292Z", - "updatedAt": "2026-02-25T16:13:34.292Z", + "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", "order": 0 } ] @@ -14534,7 +16587,6480 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "4a6d149e-0a0d-4345-b95f-81dcac36c54c", + "universalIdentifier": "20202020-8f1d-4eef-9f85-0d1965e27221", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents", + "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": "06204ec3-7a79-477a-bf0e-6be2881ac09e", + "imageIdentifierFieldMetadataId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Calendar event", + "labelPlural": "Calendar events", + "description": "Calendar events", + "icon": "IconCalendar", + "indexMetadataList": [], + "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", + "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": "7b848693-9912-4e9b-a4c1-abcf9f4bd434", + "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-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": "a7acc624-72a1-43b8-ad0d-75726200eb2f", + "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-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": "0c9b73dd-0bbf-4014-8b89-94a20fd688d3", + "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-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": "b0524a0d-97ed-4175-b287-3877a263843a", + "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-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": "5a3abafe-ec56-40ce-9763-8f894273b647", + "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-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": "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", + "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": "06204ec3-7a79-477a-bf0e-6be2881ac09e", + "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-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": "6d928ff0-4373-42e8-85be-0895462e74d1", + "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-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": "d1dbb564-00a2-446c-bee7-ded63ffacf53", + "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-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": "4a2d1310-d536-4e92-8f43-e599313ba1c5", + "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-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": "4c2926bd-62c6-4bf4-b924-d1c00bd8d4a6", + "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-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": "4a6d149e-0a0d-4345-b95f-81dcac36c54c", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "93e2f848-7d84-47aa-85cb-fb1a7bcce3da", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "4c2926bd-62c6-4bf4-b924-d1c00bd8d4a6", + "name": "calendarChannelEventAssociations" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1de0a895-7219-4cdc-af9d-630935841c31", + "name": "calendarEvent" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3bda0746-dea0-4ad3-a2ca-efec19fb262c", + "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-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": "4a6d149e-0a0d-4345-b95f-81dcac36c54c", + "nameSingular": "calendarEvent", + "namePlural": "calendarEvents" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "2428f5af-7438-44b1-94b4-42161fb1a02f", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "3bda0746-dea0-4ad3-a2ca-efec19fb262c", + "name": "calendarEventParticipants" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "44a1a8c2-6859-42d1-8f5c-b7d91cf677dc", + "name": "calendarEvent" + } + }, + "morphRelations": null + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "universalIdentifier": "20202020-bd3d-4c60-8dca-571c71d4447a", + "nameSingular": "attachment", + "namePlural": "attachments", + "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": "43586ef1-65ac-443b-bb0f-491767306261", + "imageIdentifierFieldMetadataId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Attachment", + "labelPlural": "Attachments", + "description": "An attachment", + "icon": "IconFileImport", + "fieldsList": [ + { + "__typename": "Field", + "id": "c210da33-b608-4dd9-980b-731faa470861", + "universalIdentifier": "20202020-a01a-4001-8a01-1d5f8e3c7b2a", + "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": "761b2ac4-a445-4b23-ad5c-b588b8e4bcd4", + "universalIdentifier": "20202020-a01b-4002-9b02-2e6f9f4d8c3b", + "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": "b94f5486-c594-4482-8b37-25543f5fbf0c", + "universalIdentifier": "20202020-a01c-4003-8c03-3f7fa05d9d4c", + "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": "6ab2f749-d756-4dd0-9ade-eb7b8b89f9c1", + "universalIdentifier": "20202020-a01d-4004-9d04-4f8fb16eae5d", + "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": "43586ef1-65ac-443b-bb0f-491767306261", + "universalIdentifier": "20202020-87a5-48f8-bbf7-ade388825a57", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "Attachment name", + "icon": "IconFileUpload", + "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": "f8b6d800-1fa3-4746-a3de-dff83097debb", + "universalIdentifier": "20202020-15db-460e-8166-c7b5d87ad4be", + "type": "FILES", + "name": "file", + "label": "File", + "description": "Attachment file", + "icon": "IconFileUpload", + "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": { + "maxNumberOfValues": 1 + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "88cdf701-2b96-4464-a6d5-05c04b97580a", + "universalIdentifier": "20202020-0d19-453d-8e8d-fbcda8ca3747", + "type": "TEXT", + "name": "fullPath", + "label": "Full path", + "description": "Attachment full path", + "icon": "IconLink", + "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": "9e80b5a9-deb0-49f0-8107-5fcbe38fa0e7", + "universalIdentifier": "20202020-8c3f-4d9e-9a1b-2e5f7a8c9d0e", + "type": "SELECT", + "name": "fileCategory", + "label": "File category", + "description": "Attachment file category", + "icon": "IconList", + "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": "'OTHER'", + "options": [ + { + "id": "20202020-11bb-4a52-b1f2-2159b07eec37", + "color": "gray", + "label": "Archive", + "value": "ARCHIVE", + "position": 0 + }, + { + "id": "20202020-ac54-475d-ab0d-e250c28da774", + "color": "pink", + "label": "Audio", + "value": "AUDIO", + "position": 1 + }, + { + "id": "20202020-66f7-41ba-81ad-f3371312247f", + "color": "yellow", + "label": "Image", + "value": "IMAGE", + "position": 2 + }, + { + "id": "20202020-6113-4e3b-84e3-c617e9f25d0c", + "color": "orange", + "label": "Presentation", + "value": "PRESENTATION", + "position": 3 + }, + { + "id": "20202020-44c1-47c7-8e66-e63558d7233f", + "color": "turquoise", + "label": "Spreadsheet", + "value": "SPREADSHEET", + "position": 4 + }, + { + "id": "20202020-cf07-4843-877e-3804cde801d1", + "color": "blue", + "label": "Text Document", + "value": "TEXT_DOCUMENT", + "position": 5 + }, + { + "id": "20202020-443b-4159-a434-5fd9fc327639", + "color": "purple", + "label": "Video", + "value": "VIDEO", + "position": 6 + }, + { + "id": "20202020-bbca-4802-9146-fd1503e94e58", + "color": "gray", + "label": "Other", + "value": "OTHER", + "position": 7 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9db6fee7-f92a-4806-9e98-689636ed075f", + "universalIdentifier": "395be3bd-a5c9-463d-aafe-9bc3bbec3f15", + "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": "e9092ccb-4cff-4196-9c55-b8598df052a4", + "universalIdentifier": "376239d1-3e65-4cb6-b5d8-e0917d43cc93", + "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": "c742c820-67cd-4b3f-ab64-1a702f877184", + "universalIdentifier": "cef8f62c-cd46-4444-8cbb-17d463b7464a", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Attachment 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": "5be14eb3-6778-400c-b2fe-c8c5a9cab319", + "universalIdentifier": "e7b42835-cb2e-4456-8558-9225362aa52d", + "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": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", + "universalIdentifier": "20202020-7374-499d-bea3-9354890755b5", + "type": "MORPH_RELATION", + "name": "target", + "label": "Target", + "description": "Attachment target", + "icon": "IconArrowUpRight", + "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": "targetOpportunityId" + }, + "isLabelSyncedWithName": false, + "morphId": "20202020-f634-435d-ab8d-e1168b375c69", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "relation": null, + "morphRelations": [ + { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "48397bb7-38df-43dd-81b8-2593bef340ca", + "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", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "88e8c0a3-483d-4202-a34e-97e2e4c62a5f", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1e69bade-1c54-4017-8b51-6fda70d984fa", + "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": "9f25df6e-84e2-468a-98c7-aaeb44566962", + "nameSingular": "company", + "namePlural": "companies" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "a905696d-1918-4f5a-92b3-78bc15a97508", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "db5b7178-2e82-4104-b473-344078ecfcc0", + "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": "11054c51-6e7a-44a1-9d40-03ce04f21fbe", + "nameSingular": "dashboard", + "namePlural": "dashboards" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "f80a63e5-4190-4d50-b07b-41895b354955", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "ce579a1d-9538-4be9-97bf-cb4572e99aee", + "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": "85c771f3-8969-4401-93f0-7d1e48bd1cab", + "nameSingular": "workflow", + "namePlural": "workflows" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b7a82cbc-f4e6-4afd-969e-da9c9a1011af", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "9ff8a194-bd02-47c9-b46f-306b3a5d2053", + "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": "e63ee0ec-ae4f-4d82-ae9e-d18c8c6b4756", + "nameSingular": "rocket", + "namePlural": "rockets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "c9e8079b-76ac-4576-9109-54df05a38b29", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "f03d771a-5521-411d-8233-6d87dc508f62", + "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": "952fc479-8fcf-4025-bab3-847c7d20c3b6", + "nameSingular": "pet", + "namePlural": "pets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "7615ffc7-9c34-4b64-9220-846519dcd9d0", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "13f890e1-27c0-44aa-9e3a-de52f828a38b", + "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": "8f11e8ef-2b3e-4b30-b695-a4bed25d1ea2", + "nameSingular": "surveyResult", + "namePlural": "surveyResults" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "14c51790-8baa-46e3-ae44-4f7573430db0", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "c8a2e68a-a834-4f10-be12-a079daebd391", + "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": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "4b2b35cd-48a1-48ad-97c3-f86602046b4d", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "b3802d73-c2a0-4296-b804-1d71752b392c", + "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": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "955e2b4e-6633-4d1a-a4ed-5908933e984c", + "name": "target" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "461f0845-c185-45d8-bc8e-9fea081790ec", + "name": "attachments" + } + } + ] + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "9536a724-8a94-4f30-8b58-3203a7224ab0", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_3491dc65669342b9bfb1637f5e0", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "630e7c01-8f61-4750-aa41-530562f0b2a8", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_699ff395576ff0f73cc87464166", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "99053ebe-c9dc-4743-957e-7fa4a1e74673", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_04d8ad72536bbeb4430998211f8", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "84ecc56c-9175-461e-8856-b367a516c32f", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_21649fe7fe250834d1dd37125b1", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "6544f50f-48ce-4217-b397-64b8711fe78c", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_fde993c7020a17c3282edf5c9b8", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "092125f8-db63-4343-8633-38a9a9cdf42e", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_4c7e63468918a5d5233ccb65de7", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "55e1a6a8-29df-4cc6-8a96-1ccd06b2009f", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_30f5fd16a4aa058d1a6c4b8ac10", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + } + ] + } + }, + { + "__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", + "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", + "imageIdentifierFieldMetadataId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "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": "c9a0ff7a-0bdf-4c7e-af6c-af7292d92332", + "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-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": "70beb5cb-fe58-46b0-84d8-a7aff03aa93e", + "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-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": "153426b1-29c8-46df-b3ed-106e13c51c3d", + "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-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": "35a6d778-94ca-4fdf-a9f7-df610243d5d3", + "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-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": "be9fc3d6-d96f-4865-b209-29f6f87c27d3", + "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-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": "e97207ef-1652-4555-80d8-137a1630d5a7", + "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-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": "a64cf3ac-674f-4d93-8059-dbc03733abb8", + "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-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": "6c926dc6-0ffe-4475-9239-492dfeb1603b", + "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-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", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "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", + "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-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "messageId" + }, + "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": "575b32e0-0a09-4c20-bb75-70e1ca21eaf7", + "nameSingular": "message", + "namePlural": "messages" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "a4b9b0ff-ac52-497b-9e92-308177fb65c9", + "name": "message" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "73fec415-ebc9-44bc-b69d-277e29f34310", + "name": "messageChannelMessageAssociations" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "60a333f6-d610-4a5e-83d9-917ee4085319", + "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-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": "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", + "nameSingular": "messageThread", + "namePlural": "messageThreads" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "a34cd771-f576-4e64-8ed3-7931ef15f751", + "name": "messageThread" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "d7ee3740-6894-4ded-9b68-2d888c0c0ee4", + "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" + } + }, + "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 + } + ] + } + ] + } + }, + { + "__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", @@ -14543,11 +23069,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": false, "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "e3177533-e55f-46a2-a653-e7f0c3066f89", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "labelIdentifierFieldMetadataId": "96964eb5-95d0-4bf0-937b-956c1e2bd859", "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "shortcut": "P", "isLabelSyncedWithName": false, "isSearchable": true, @@ -14570,7 +23096,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "fieldsList": [ { "__typename": "Field", - "id": "f7a727cd-38e9-434e-b405-bb935375bf83", + "id": "1bcf2745-4fbc-431d-8cb1-4cc2845dd96a", "universalIdentifier": "20202020-e01a-4141-8a41-456789abcdef", "type": "UUID", "name": "id", @@ -14583,20 +23109,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "34c89588-1f65-4ddc-bc7f-f5d3ff55e228", + "id": "af3cd483-c753-4ac9-b4b7-5f62bdf5e116", "universalIdentifier": "20202020-e01b-4142-9b42-56789abcdefa", "type": "DATE_TIME", "name": "createdAt", @@ -14609,8 +23135,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -14618,13 +23144,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "f85f95a8-aac9-4069-8f0f-41042e796839", + "id": "366ee053-4814-46f7-9f3c-4b81d09e10ab", "universalIdentifier": "20202020-e01c-4143-8c43-6789abcdefab", "type": "DATE_TIME", "name": "updatedAt", @@ -14637,8 +23163,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -14646,13 +23172,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "cf76a996-2a35-4462-b9c9-55fc72db2f4c", + "id": "a866150b-c381-4ea2-b2f0-599ebb210619", "universalIdentifier": "20202020-e01d-4144-9d44-789abcdefabc", "type": "DATE_TIME", "name": "deletedAt", @@ -14665,8 +23191,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -14674,13 +23200,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e3177533-e55f-46a2-a653-e7f0c3066f89", + "id": "96964eb5-95d0-4bf0-937b-956c1e2bd859", "universalIdentifier": "20202020-3875-44d5-8c33-a6239011cab8", "type": "FULL_NAME", "name": "name", @@ -14693,20 +23219,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "9e9ed5fa-2fda-4a5c-a118-7b6678840873", + "id": "8ef575c1-fd4b-4199-9d07-d31a0a44beb0", "universalIdentifier": "20202020-3c51-43fa-8b6e-af39e29368ab", "type": "EMAILS", "name": "emails", @@ -14719,8 +23245,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": true, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -14728,13 +23254,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e55ab691-19b7-4ac2-9ce8-ac2b35e87fa6", + "id": "e7b3e578-ee96-4e67-813e-72dac36b514e", "universalIdentifier": "20202020-f1af-48f7-893b-2007a73dd508", "type": "LINKS", "name": "linkedinLink", @@ -14747,20 +23273,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a8c7a78d-8832-40ad-a51a-1c7af1d30534", + "id": "eb9fa158-281f-4dfb-8e10-cf73e0e782bb", "universalIdentifier": "20202020-8fc2-487c-b84a-55a99b145cfd", "type": "LINKS", "name": "xLink", @@ -14773,20 +23299,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e344af62-79ff-487f-b912-491af1f8cb37", + "id": "df06ef9f-1ece-4bd3-b1ac-534e61eab9a7", "universalIdentifier": "20202020-b0d0-415a-bef9-640a26dacd9b", "type": "TEXT", "name": "jobTitle", @@ -14799,20 +23325,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "57cfd576-1896-4cdc-aca0-943f4b46d522", + "id": "5c242605-542f-451f-a984-2c9c4e12a5e5", "universalIdentifier": "20202020-0638-448e-8825-439134618022", "type": "PHONES", "name": "phones", @@ -14825,8 +23351,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -14834,13 +23360,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "11851291-3a0f-4295-a665-799cc8ce964b", + "id": "73a452c7-e9eb-414e-988f-b174b0a39d0f", "universalIdentifier": "20202020-5243-4ffb-afc5-2c675da41346", "type": "TEXT", "name": "city", @@ -14853,20 +23379,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "df6f74bb-4689-44af-a6be-759bdc031043", + "id": "56f9250f-439c-4348-9330-014e5fe241c0", "universalIdentifier": "20202020-b8a6-40df-961c-373dc5d2ec21", "type": "TEXT", "name": "avatarUrl", @@ -14879,20 +23405,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "fe0197d3-1309-484f-9c74-687180976b52", + "id": "7ad1fb3d-e9da-4578-a410-9075e59b9ed8", "universalIdentifier": "20202020-a7c9-4e3d-8f1b-2d5a6b7c8e9f", "type": "FILES", "name": "avatarFile", @@ -14905,8 +23431,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -14914,13 +23440,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "17e8eec6-549a-4604-a56b-730984307ad8", + "id": "10b7a441-edf4-49d8-a435-6428359c88ad", "universalIdentifier": "20202020-fcd5-4231-aff5-fff583eaa0b1", "type": "POSITION", "name": "position", @@ -14933,20 +23459,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "be5c9fcc-da8b-4c9a-b45f-bd54f1b64fca", + "id": "ed512773-989d-4fba-ae8d-843b72530463", "universalIdentifier": "20202020-f6ab-4d98-af24-a3d5b664148a", "type": "ACTOR", "name": "createdBy", @@ -14959,8 +23485,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -14970,13 +23496,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "89c81333-39db-4c10-b3b6-5884635161a7", + "id": "0dce8542-b372-4fcb-8160-9894d0b0162a", "universalIdentifier": "e9e0dd35-184c-4742-84da-afadf45ce59a", "type": "ACTOR", "name": "updatedBy", @@ -14989,8 +23515,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -15000,13 +23526,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "34be0175-24e7-4c3e-986b-5d7494ea11b5", + "id": "eab9f8f1-21c8-4484-86ed-eff24f53a670", "universalIdentifier": "57d1d7ad-fa10-44fc-82f3-ad0959ec2534", "type": "TS_VECTOR", "name": "searchVector", @@ -15019,8 +23545,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -15029,13 +23555,13 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e688b7a0-fbd7-4a41-a4e8-e526b542f1f5", + "id": "1e69bade-1c54-4017-8b51-6fda70d984fa", "universalIdentifier": "20202020-cd97-451f-87fa-bcb789bdbf3a", "type": "RELATION", "name": "attachments", @@ -15048,8 +23574,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -15057,30 +23583,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", + "id": "48397bb7-38df-43dd-81b8-2593bef340ca", "nameSingular": "attachment", "namePlural": "attachments" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "e688b7a0-fbd7-4a41-a4e8-e526b542f1f5", + "id": "1e69bade-1c54-4017-8b51-6fda70d984fa", "name": "attachments" }, "targetFieldMetadata": { "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", + "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", "name": "target" } }, @@ -15088,7 +23614,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "8408843b-1389-40ae-88ac-14fa2f2ab0f4", + "id": "b12a728e-de21-4487-9d5b-a8ba54b44d27", "universalIdentifier": "20202020-52ee-45e9-a702-b64b3753e3a9", "type": "RELATION", "name": "calendarEventParticipants", @@ -15101,8 +23627,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -15110,30 +23636,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "ee48f10c-9a42-4d4e-ba94-ed4bcf801841", + "id": "2428f5af-7438-44b1-94b4-42161fb1a02f", "nameSingular": "calendarEventParticipant", "namePlural": "calendarEventParticipants" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "8408843b-1389-40ae-88ac-14fa2f2ab0f4", + "id": "b12a728e-de21-4487-9d5b-a8ba54b44d27", "name": "calendarEventParticipants" }, "targetFieldMetadata": { "__typename": "Field", - "id": "f09c239f-3c5b-4384-bce3-0627cb6922fe", + "id": "ea0d4282-28c2-4b61-9016-d24e6b29885c", "name": "person" } }, @@ -15141,7 +23667,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "f6be42ac-ccb8-4df0-8c22-a9627d655c76", + "id": "8cc08b2f-7b0b-459d-b32f-883960e8f2d3", "universalIdentifier": "20202020-e2f3-448e-b34c-2d625f0025fd", "type": "RELATION", "name": "company", @@ -15154,8 +23680,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -15165,30 +23691,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "id": "9f25df6e-84e2-468a-98c7-aaeb44566962", "nameSingular": "company", "namePlural": "companies" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "f6be42ac-ccb8-4df0-8c22-a9627d655c76", + "id": "8cc08b2f-7b0b-459d-b32f-883960e8f2d3", "name": "company" }, "targetFieldMetadata": { "__typename": "Field", - "id": "94902a74-b8ca-4a56-8573-7469f0b664f6", + "id": "b343e89c-5f48-4769-be0f-b15552b06488", "name": "people" } }, @@ -15196,7 +23722,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "372883cb-ee54-4ec7-b158-bd09f5a3e86c", + "id": "38b54144-53ed-474b-adb2-d5ad43c65398", "universalIdentifier": "20202020-4073-4117-9cf1-203bcdc91cbd", "type": "RELATION", "name": "favorites", @@ -15209,8 +23735,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -15218,30 +23744,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "id": "7d4a6af5-536c-45af-8040-224ee553ce05", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "372883cb-ee54-4ec7-b158-bd09f5a3e86c", + "id": "38b54144-53ed-474b-adb2-d5ad43c65398", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "a281ba89-d7b7-4194-826d-57411f690f66", + "id": "a035a64c-ff08-4415-b60b-e6427e12fad4", "name": "person" } }, @@ -15249,7 +23775,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "5d5578cf-69d1-4aac-aa60-a0fe65dd46ac", + "id": "9cee645e-9ac4-41b7-8f53-722e3be6a4e2", "universalIdentifier": "20202020-498e-4c61-8158-fa04f0638334", "type": "RELATION", "name": "messageParticipants", @@ -15262,8 +23788,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -15271,30 +23797,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "2756d5d9-f309-48d9-9579-31cfebce2eef", + "id": "823cfbad-68a1-4475-aa2f-7d0588506b6e", "nameSingular": "messageParticipant", "namePlural": "messageParticipants" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "5d5578cf-69d1-4aac-aa60-a0fe65dd46ac", + "id": "9cee645e-9ac4-41b7-8f53-722e3be6a4e2", "name": "messageParticipants" }, "targetFieldMetadata": { "__typename": "Field", - "id": "7465fe47-798b-4339-823d-d0873cd4763e", + "id": "c5dd8967-a6bb-4404-af3b-1c8089668eb6", "name": "person" } }, @@ -15302,7 +23828,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "0b5ca55e-9b14-48de-adcb-98e1c6f2ca8d", + "id": "a6f00e6f-c047-4916-8539-8c272dca1913", "universalIdentifier": "20202020-c8fc-4258-8250-15905d3fcfec", "type": "RELATION", "name": "noteTargets", @@ -15315,8 +23841,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -15324,30 +23850,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", + "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", "nameSingular": "noteTarget", "namePlural": "noteTargets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "0b5ca55e-9b14-48de-adcb-98e1c6f2ca8d", + "id": "a6f00e6f-c047-4916-8539-8c272dca1913", "name": "noteTargets" }, "targetFieldMetadata": { "__typename": "Field", - "id": "018f73d3-5212-467d-95b6-986772b517b0", + "id": "0a756cfe-ce80-43f4-97a8-3170ce389ad1", "name": "target" } }, @@ -15355,7 +23881,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "09c81e5f-cf0f-402d-9795-d6083182de97", + "id": "5a011725-9570-4fc5-9ada-d550d708dc27", "universalIdentifier": "20202020-911b-4a7d-b67b-918aa9a5b33a", "type": "RELATION", "name": "pointOfContactForOpportunities", @@ -15368,8 +23894,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -15377,30 +23903,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", + "id": "44e586bb-74a8-481c-b734-514f6030581e", "nameSingular": "opportunity", "namePlural": "opportunities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "09c81e5f-cf0f-402d-9795-d6083182de97", + "id": "5a011725-9570-4fc5-9ada-d550d708dc27", "name": "pointOfContactForOpportunities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "194cee79-1034-445a-9c9a-f36ac6f7a392", + "id": "a91b3619-01d0-4972-9f63-4da7660b3b6a", "name": "pointOfContact" } }, @@ -15408,7 +23934,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "68cf038f-3d95-412a-9585-add3201cd916", + "id": "bf2f0bec-a793-4a2b-97ea-7928f07255e7", "universalIdentifier": "20202020-584b-4d3e-88b6-53ab1fa03c3a", "type": "RELATION", "name": "taskTargets", @@ -15421,8 +23947,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -15430,30 +23956,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", + "id": "5668785e-f248-4e4a-bd3e-d86806ee015b", "nameSingular": "taskTarget", "namePlural": "taskTargets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "68cf038f-3d95-412a-9585-add3201cd916", + "id": "bf2f0bec-a793-4a2b-97ea-7928f07255e7", "name": "taskTargets" }, "targetFieldMetadata": { "__typename": "Field", - "id": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", + "id": "0ce6642e-038c-4693-9716-14ed2845c8e3", "name": "target" } }, @@ -15461,7 +23987,7 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "815f11ae-b23a-4312-846c-098ed8fa0a65", + "id": "41ed4d07-34ee-4334-8003-51e906e00249", "universalIdentifier": "20202020-a43e-4873-9c23-e522de906ce5", "type": "RELATION", "name": "timelineActivities", @@ -15474,8 +24000,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -15483,30 +24009,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", + "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", "nameSingular": "timelineActivity", "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "815f11ae-b23a-4312-846c-098ed8fa0a65", + "id": "41ed4d07-34ee-4334-8003-51e906e00249", "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", + "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", "name": "target" } }, @@ -15514,8 +24040,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "232141dc-92a0-4291-b6f7-0faf442c224d", - "universalIdentifier": "56451dd7-c6dc-4cc4-a031-91e387941680", + "id": "77f94ee6-1f44-490d-b619-7d3514b456f0", + "universalIdentifier": "3a0fbcd0-41fc-4266-971f-704adaa4e181", "type": "TEXT", "name": "intro", "label": "Intro", @@ -15527,21 +24053,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:35.588Z", - "updatedAt": "2026-02-25T16:13:35.588Z", + "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": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "b6af67fc-bb25-4524-907c-5d16835a3678", - "universalIdentifier": "92839185-5c89-4048-ba4c-a1a12b868709", + "id": "827c0fcc-6b39-48ef-89bb-88413c844aa2", + "universalIdentifier": "e6062706-935d-4349-a813-ad9d5593a56b", "type": "PHONES", "name": "whatsapp", "label": "Whatsapp", @@ -15553,8 +24079,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:35.588Z", - "updatedAt": "2026-02-25T16:13:35.588Z", + "createdAt": "2026-02-26T11:55:17.818Z", + "updatedAt": "2026-02-26T11:55:17.818Z", "defaultValue": { "additionalPhones": null, "primaryPhoneNumber": "''", @@ -15565,14 +24091,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "eaf3845b-b383-4bff-888a-27461790f236", - "universalIdentifier": "69a1fd99-0a2d-4317-912a-2a093a57b150", + "id": "1b19630d-6932-4fe2-994e-478ac70d179d", + "universalIdentifier": "06d5ebe9-48b9-42b9-9ad5-092a2608e627", "type": "MULTI_SELECT", "name": "workPreference", "label": "Work Preference", @@ -15584,26 +24110,26 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:35.588Z", - "updatedAt": "2026-02-25T16:13:35.588Z", + "createdAt": "2026-02-26T11:55:17.818Z", + "updatedAt": "2026-02-26T11:55:17.818Z", "defaultValue": null, "options": [ { - "id": "ce7c1fed-6f85-4568-9940-a3276a418ceb", + "id": "c44a1444-594e-4cd0-8d8e-cc76c5fd50f6", "color": "green", "label": "On-Site", "value": "ON_SITE", "position": 0 }, { - "id": "ffe15a8d-9f12-4dd5-8e4e-fda2c70b056b", + "id": "2c8fc7c8-ab35-4be9-abb8-2d65989a8c76", "color": "turquoise", "label": "Hybrid", "value": "HYBRID", "position": 1 }, { - "id": "242795c4-21f3-4c62-8e4e-c7e01756ae34", + "id": "19152c6a-9b18-4867-960c-c597197968ed", "color": "sky", "label": "Remote Work", "value": "REMOTE_WORK", @@ -15613,14 +24139,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "f153def6-b0d3-4416-a2de-4ba88a8fa694", - "universalIdentifier": "6c7d68c4-94f4-4db2-9c10-4e0a0c0eca61", + "id": "d197c6be-1641-4321-b2b7-30e71fbde099", + "universalIdentifier": "22427fa8-bc43-4a4f-a92a-f73166ead29f", "type": "RATING", "name": "performanceRating", "label": "Performance Rating", @@ -15632,36 +24158,36 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:35.588Z", - "updatedAt": "2026-02-25T16:13:35.588Z", + "createdAt": "2026-02-26T11:55:17.818Z", + "updatedAt": "2026-02-26T11:55:17.818Z", "defaultValue": null, "options": [ { - "id": "4617fbda-045a-46a8-a5e8-5672ed18c17f", + "id": "f4156ecb-9e90-4725-9c66-404053cd4756", "label": "1", "value": "RATING_1", "position": 0 }, { - "id": "760f0a8d-d2e7-4791-a154-cbcb2c5189d6", + "id": "60baa121-834b-4ec5-bf94-13d585014aaf", "label": "2", "value": "RATING_2", "position": 1 }, { - "id": "718fb6b6-e613-4a8c-b8c0-209e8304b132", + "id": "4bec18be-c3dd-4c1b-863f-facc2d0e1c9f", "label": "3", "value": "RATING_3", "position": 2 }, { - "id": "884043ef-9aac-4521-8130-1f05fdbd596e", + "id": "f82c26b1-2b6d-49a9-aebf-c564f643b135", "label": "4", "value": "RATING_4", "position": 3 }, { - "id": "e6aa6afe-5ec1-4678-b63f-f41572bab1bd", + "id": "93921f42-ccf7-486d-9c21-8cf5a62b8044", "label": "5", "value": "RATING_5", "position": 4 @@ -15670,14 +24196,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "684e5e25-6cbb-4da4-95c2-47047f864b18", - "universalIdentifier": "fa29a637-ff6b-46c6-8021-8df916b53829", + "id": "87865f66-7bad-4f9c-a49f-7e58ffcf0974", + "universalIdentifier": "904c0584-c3a2-457a-a009-a110613763af", "type": "RELATION", "name": "previousCompanies", "label": "Previous Companies", @@ -15689,40 +24215,40 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:35.865Z", - "updatedAt": "2026-02-25T16:13:36.108Z", + "createdAt": "2026-02-26T11:55:18.171Z", + "updatedAt": "2026-02-26T11:55:18.491Z", "defaultValue": null, "options": null, "settings": { "relationType": "ONE_TO_MANY", - "junctionTargetFieldId": "3cd6f442-53df-4d54-ae82-ef81b8d1ab6a" + "junctionTargetFieldId": "0836a83a-2c48-49ed-bbee-be155dce5fc5" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", + "id": "b2631e21-f9b1-4fa2-912d-648c1e648bbc", "nameSingular": "employmentHistory", "namePlural": "employmentHistories" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "684e5e25-6cbb-4da4-95c2-47047f864b18", + "id": "87865f66-7bad-4f9c-a49f-7e58ffcf0974", "name": "previousCompanies" }, "targetFieldMetadata": { "__typename": "Field", - "id": "a3325cf5-8f6d-4ce9-9935-9b373a5b2f82", + "id": "0c8f580e-aa4e-4bb2-a168-589e8b7654f1", "name": "person" } }, @@ -15730,8 +24256,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "09830fac-7c41-41d3-9455-59ebd58a5015", - "universalIdentifier": "a35e3d5b-2e04-4997-be02-4bf4ff3a09ec", + "id": "4666d83e-aaa2-40c0-975a-acd8bfbdf8a2", + "universalIdentifier": "7d94c52f-3c52-4308-84df-36f7d17cc9cf", "type": "RELATION", "name": "caredForPets", "label": "Cared For Pets", @@ -15743,40 +24269,40 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:35.770Z", - "updatedAt": "2026-02-25T16:13:36.323Z", + "createdAt": "2026-02-26T11:55:18.042Z", + "updatedAt": "2026-02-26T11:55:18.827Z", "defaultValue": null, "options": null, "settings": { "relationType": "ONE_TO_MANY", - "junctionTargetFieldId": "57bc0677-2548-45d8-852e-815c4e8f8f23" + "junctionTargetFieldId": "5d68600f-9214-42e3-a00b-fb783342e720" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "03871c7a-887c-43e8-8b3d-413f4bad8921", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "id": "0c464a48-471d-4494-bc65-1ed4a6326fcc", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", + "id": "17d70ca7-b4b9-446f-9539-799f3ae2e7fd", "nameSingular": "petCareAgreement", "namePlural": "petCareAgreements" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "09830fac-7c41-41d3-9455-59ebd58a5015", + "id": "4666d83e-aaa2-40c0-975a-acd8bfbdf8a2", "name": "caredForPets" }, "targetFieldMetadata": { "__typename": "Field", - "id": "1981b8d6-d7f0-4fcb-9502-d9ba7721d896", + "id": "78472eb5-fa38-41c7-b417-02bf919ca5d2", "name": "caretaker" } }, @@ -15786,9 +24312,9 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "b8fd8b9c-4ccf-4bd7-8fc7-a948b280dc6a", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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", @@ -15797,19 +24323,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "d6749d57-f341-41c1-9fa6-4c8351fb6950", - "fieldMetadataId": "f6be42ac-ccb8-4df0-8c22-a9627d655c76", - "createdAt": "2026-02-25T16:13:34.274Z", - "updatedAt": "2026-02-25T16:13:34.274Z", + "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": "db5c72e9-b66b-4a61-9271-2d030771413f", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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", @@ -15818,19 +24344,19 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "5601923b-79f5-4ede-9fa1-64379a3fe332", - "fieldMetadataId": "9e9ed5fa-2fda-4a5c-a118-7b6678840873", - "createdAt": "2026-02-25T16:13:34.275Z", - "updatedAt": "2026-02-25T16:13:34.275Z", + "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": "d3e1ff0e-4a3d-45b2-8c4f-7a1c123cb66a", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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", @@ -15839,10 +24365,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "c6b06585-6900-49b6-b215-9b3b1b5e5b8f", - "fieldMetadataId": "34be0175-24e7-4c3e-986b-5d7494ea11b5", - "createdAt": "2026-02-25T16:13:34.276Z", - "updatedAt": "2026-02-25T16:13:34.276Z", + "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 } ] @@ -15854,33 +24380,33 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "universalIdentifier": "20202020-fff0-4b44-be82-bda313884400", - "nameSingular": "noteTarget", - "namePlural": "noteTargets", + "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", + "universalIdentifier": "20202020-0b00-45cd-b6f6-6cd806fc6804", + "nameSingular": "note", + "namePlural": "notes", "isCustom": false, "isRemote": false, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "b5b7646d-e7dd-4c09-808a-f2bff3aa3b1a", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "labelIdentifierFieldMetadataId": "814a6dce-c013-493b-b580-5ce44393c6cc", "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": null, + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "shortcut": "N", "isLabelSyncedWithName": false, - "isSearchable": false, + "isSearchable": true, "duplicateCriteria": null, - "labelSingular": "Note Target", - "labelPlural": "Note Targets", - "description": "A note target", - "icon": "IconCheckbox", + "labelSingular": "Note", + "labelPlural": "Notes", + "description": "A note", + "icon": "IconNotes", "fieldsList": [ { "__typename": "Field", - "id": "b5b7646d-e7dd-4c09-808a-f2bff3aa3b1a", - "universalIdentifier": "20202020-c02a-4121-8a21-cddeef123456", + "id": "4ed96821-396e-4618-9804-cd9cd2d6bbe6", + "universalIdentifier": "20202020-c01a-4111-8a11-dfabcddeef12", "type": "UUID", "name": "id", "label": "Id", @@ -15892,21 +24418,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "579ff62c-8ce7-46b9-a024-f17faeb566d2", - "universalIdentifier": "20202020-c02b-4122-9b22-ddeef1234567", + "id": "36dc6280-51db-4758-93eb-46a0237a0c0b", + "universalIdentifier": "20202020-c01b-4112-9b12-fabcddefe123", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -15918,8 +24444,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -15927,14 +24453,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "35661a3a-4d84-43e6-9b4b-14ee3b796bc2", - "universalIdentifier": "20202020-c02c-4123-8c23-eef12345678a", + "id": "c2bdda24-c086-4fdf-980c-6eca0d4ff442", + "universalIdentifier": "20202020-c01c-4113-8c13-abcddeef1234", "type": "DATE_TIME", "name": "updatedAt", "label": "Last update", @@ -15946,8 +24472,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -15955,14 +24481,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "72b201a7-a4eb-415a-8128-cee908d2aac3", - "universalIdentifier": "20202020-c02d-4124-9d24-ef123456789b", + "id": "a323340c-6bbe-4b3d-8803-7b44f2b68517", + "universalIdentifier": "20202020-c01d-4114-9d14-bcddeef12345", "type": "DATE_TIME", "name": "deletedAt", "label": "Deleted at", @@ -15974,8 +24500,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -15983,78 +24509,18 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "a233bb16-199e-4dcf-96f2-8e601fafe35e", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ceb7eb3b-44ab-488c-987e-9121b685f824", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8ccfbfc2-1e39-4a56-91a3-93e80ba5f1f4", - "universalIdentifier": "082f7c9e-5ccd-4056-8748-a428f65fa6f6", + "id": "6f503492-a484-401b-bdd1-7d8db0876708", + "universalIdentifier": "20202020-368d-4dc2-943f-ed8a49c7fdfb", "type": "POSITION", "name": "position", "label": "Position", - "description": "NoteTarget record position", + "description": "Note record position", "icon": "IconHierarchy2", "isCustom": false, "isActive": true, @@ -16062,571 +24528,25 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "6d5bb17c-a13b-448a-9727-92ed3e04f70d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8bfc2ff3-877e-4262-8afa-c3fbabe266a4", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "noteId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7e2a0fff-cb81-4990-a189-69c4c4119894", - "nameSingular": "note", - "namePlural": "notes" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "8bfc2ff3-877e-4262-8afa-c3fbabe266a4", - "name": "note" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "70d0e83c-4714-438a-9e88-87c30d977d9e", - "name": "noteTargets" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "018f73d3-5212-467d-95b6-986772b517b0", - "universalIdentifier": "20202020-38ca-4aab-92f5-8a605ca2e4c5", - "type": "MORPH_RELATION", - "name": "target", - "label": "Target", - "description": "NoteTarget target", - "icon": "IconArrowUpRight", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": true, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "targetPersonId" - }, - "isLabelSyncedWithName": false, - "morphId": "20202020-f635-435d-ab8d-e1168b375c70", - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": [ - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "018f73d3-5212-467d-95b6-986772b517b0", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0b5ca55e-9b14-48de-adcb-98e1c6f2ca8d", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1e7accfa-bdb6-486e-8cae-eec30ff9e773", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "21de5d13-2d1c-461c-8d1a-b4cbd39cd161", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "8c2b0452-71bf-4032-a364-51ce1aafba4f", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ca1f3a8e-2897-4553-89bd-ece4306267e4", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c2a1f37a-6add-480c-9023-9100681411ba", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "854bec92-c072-41e8-88e4-2ca318c09892", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5b008d9f-ad86-400c-9c3f-1ea94c1a560c", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a835175b-2403-4422-8fb0-8bdd59bccccf", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a938f7fd-511b-43c3-b2f7-2ae65507bff4", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "e2f260f6-39df-4683-86d9-5dcae100f9dc", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6aa4255d-67e5-45af-a985-77de577fba77", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0b0d0cb4-530d-4414-a6a8-c0b511bf38fc", - "name": "noteTargets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "918bb0b8-f45a-47e7-b853-2503815be12d", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "42e63b10-3b48-4d03-bfd4-7a4733486b99", - "name": "noteTargets" - } - } - ] - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "374ac7cf-92f6-4e9d-afe9-f1fbecd136e1", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_7e2582241f3b749d7a43d7d0231", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "ac80a22c-fe8a-47e0-baf5-ff038fe22f91", - "fieldMetadataId": "8bfc2ff3-877e-4262-8afa-c3fbabe266a4", - "createdAt": "2026-02-25T16:13:34.269Z", - "updatedAt": "2026-02-25T16:13:34.269Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "738eb819-5b46-4a6d-9055-cd73e92c98e0", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_a1e176335c31525bf3cc12f0e00", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "1800b0f2-7269-4751-923f-a6dd0608ad13", - "fieldMetadataId": "018f73d3-5212-467d-95b6-986772b517b0", - "createdAt": "2026-02-25T16:13:34.269Z", - "updatedAt": "2026-02-25T16:13:34.269Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "910e20d0-4cbf-4a1c-aa5f-a5c4bd67464c", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_2f07fa4cf183061692f8d99df80", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "f94e56d6-12fe-401c-abf1-e2e6165edd66", - "fieldMetadataId": "1e7accfa-bdb6-486e-8cae-eec30ff9e773", - "createdAt": "2026-02-25T16:13:34.270Z", - "updatedAt": "2026-02-25T16:13:34.270Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "0a7e84d4-d0ad-4eeb-bf7e-47014e0bc657", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_9058210268a941b4b77a609e982", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "2e7bb594-41eb-4896-8a2e-7cbbc3a0af77", - "fieldMetadataId": "8c2b0452-71bf-4032-a364-51ce1aafba4f", - "createdAt": "2026-02-25T16:13:34.271Z", - "updatedAt": "2026-02-25T16:13:34.271Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "58a0f417-6dee-4c61-b11d-a041dbe3d839", - "universalIdentifier": "20202020-3840-4b6d-9425-0c5188b05ca8", - "nameSingular": "dashboard", - "namePlural": "dashboards", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "10fa7415-d104-4704-b6fd-8cd6068dcb56", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": "D", - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Dashboard", - "labelPlural": "Dashboards", - "description": "A dashboard", - "icon": "IconLayoutDashboard", - "fieldsList": [ - { - "__typename": "Field", - "id": "530f939f-5f51-40ce-b8e1-f2ef512b3bea", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "985e4b4f-0f8d-4d23-b89b-8fb6906debf0", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f5845a93-6201-4fa7-a476-6f174e01ac57", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "697ef3a2-0d1b-4259-8890-7fbb4fc45447", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "10fa7415-d104-4704-b6fd-8cd6068dcb56", - "universalIdentifier": "20202020-20ee-4091-95dc-44b57eda3a89", + "id": "814a6dce-c013-493b-b580-5ce44393c6cc", + "universalIdentifier": "20202020-faeb-4c76-8ba6-ccbb0b4a965f", "type": "TEXT", "name": "title", "label": "Title", - "description": "Dashboard title", + "description": "Note title", "icon": "IconNotes", "isCustom": false, "isActive": true, @@ -16634,2596 +24554,25 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "96a93345-5c6d-4a9f-9952-ab00575bcf3a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "636be5ec-5a40-4627-992e-f8debd841a06", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1e1eebe9-8212-438a-b458-9c2c45616430", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "60955239-15f8-43ba-8601-c11a411d4651", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8524f7da-0ace-4e37-9ab0-a5f5280a326d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"title\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5db965b8-65ab-4c7e-8c97-f542615e9038", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "58a0f417-6dee-4c61-b11d-a041dbe3d839", - "nameSingular": "dashboard", - "namePlural": "dashboards" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5db965b8-65ab-4c7e-8c97-f542615e9038", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1ea2450b-14b6-4203-928f-4b98080bb83f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "58a0f417-6dee-4c61-b11d-a041dbe3d839", - "nameSingular": "dashboard", - "namePlural": "dashboards" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1ea2450b-14b6-4203-928f-4b98080bb83f", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "814c4758-671b-4922-89c2-b1b7fcd81abd", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "58a0f417-6dee-4c61-b11d-a041dbe3d839", - "nameSingular": "dashboard", - "namePlural": "dashboards" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "814c4758-671b-4922-89c2-b1b7fcd81abd", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5c3a1d65-0ea4-4721-95af-2c1280d3f150", - "name": "dashboard" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "1b168716-b0f0-458e-b643-ed039890babc", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_f3b76c5322b31cba175b2eccec8", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "2e6fc621-59ae-41c1-8863-ab04802aaa12", - "fieldMetadataId": "8524f7da-0ace-4e37-9ab0-a5f5280a326d", - "createdAt": "2026-02-25T16:13:34.246Z", - "updatedAt": "2026-02-25T16:13:34.246Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", - "universalIdentifier": "20202020-d65d-4ab9-9344-d77bfb376a3d", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "ca6c37a5-d811-4c3a-9f0d-61f5cf5c6e6e", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Workflow Version", - "labelPlural": "Workflow Versions", - "description": "A workflow version", - "icon": "IconVersions", - "fieldsList": [ - { - "__typename": "Field", - "id": "ac1cf052-f226-4649-9218-a0bf64d057bf", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8ebe7664-ae86-45a9-8189-33f904ba3be3", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "09acaed9-6058-4d3f-bf21-e7e9356cc120", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d3c314d2-48fb-49bd-bf07-8779593148bf", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ce180909-9143-4b15-9434-b30d68d8b106", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1f33a700-4f26-42fa-b62e-f9c77d6cb667", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ca6c37a5-d811-4c3a-9f0d-61f5cf5c6e6e", - "universalIdentifier": "20202020-a12f-4cca-9937-a2e40cc65509", - "type": "TEXT", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a8aeff08-fdd8-442c-840f-c0f35d20c7a8", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "01f0c15c-30a0-455f-9786-b2923e3321f2", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "90c21498-894a-4e2f-ad17-09ffb30b9821", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7979e127-9123-4077-9359-05d79919a4f0", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3def25d8-6c5e-457e-abba-b5cb102d7b28", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4c39761e-55a0-46d4-98da-45a451b676c3", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4c39761e-55a0-46d4-98da-45a451b676c3", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "27f96f6a-8fd9-4f0d-919e-7337c7b53a51", - "name": "workflowVersion" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0872f41d-bc4e-412d-a501-e542202f55c9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "0872f41d-bc4e-412d-a501-e542202f55c9", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7b78b420-50aa-4b84-baa0-795c6f2bacb0", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7b78b420-50aa-4b84-baa0-795c6f2bacb0", - "name": "workflow" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ddfa2d27-fc46-42da-9c20-648d5ba15135", - "name": "versions" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "154d4a23-7284-4382-87de-c59b038db715", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "678a973d-c1ae-4b73-86c4-530b5df455e9", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "154d4a23-7284-4382-87de-c59b038db715", - "name": "runs" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "bd09a2dd-ea28-485b-ae73-a5d05b6fe16b", - "name": "workflowVersion" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "5f0f4cb8-d2c7-4b1a-9de0-8b23f89bfd6f", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_6dbfc4d091e55b676e5f698c2c2", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "efb9d438-bd47-4903-8c90-924c3a4f5f0a", - "fieldMetadataId": "7b78b420-50aa-4b84-baa0-795c6f2bacb0", - "createdAt": "2026-02-25T16:13:34.293Z", - "updatedAt": "2026-02-25T16:13:34.293Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "aa2d45fa-b1db-4cc4-bdaf-e96297fe6323", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_51329bbcdab6618a75361670c26", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "7457b396-d986-4a27-a3bd-39d5197ce788", - "fieldMetadataId": "3def25d8-6c5e-457e-abba-b5cb102d7b28", - "createdAt": "2026-02-25T16:13:34.294Z", - "updatedAt": "2026-02-25T16:13:34.294Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "universalIdentifier": "1ba2c49b-7df3-4275-82f6-a53f0af5bf41", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements", - "isCustom": true, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "labelIdentifierFieldMetadataId": "2b4020d0-e107-4273-8c5f-4c7ee0a7c034", - "imageIdentifierFieldMetadataId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Pet Care Agreement", - "labelPlural": "Pet Care Agreements", - "description": "", - "icon": "IconPaw", - "fieldsList": [ - { - "__typename": "Field", - "id": "2b4020d0-e107-4273-8c5f-4c7ee0a7c034", - "universalIdentifier": "ab7e73a9-e4cd-4f9c-a15b-acd7cc68d722", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "522055bc-bfc4-41bc-8b37-756b87285221", - "universalIdentifier": "12a9a58a-c73b-4175-9c41-306bbe1d5164", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3980c033-9141-4137-9a9d-f0f4dece0e84", - "universalIdentifier": "89c3fe85-1479-4a1b-839b-bce3aa649da3", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "52d9ffb7-61ae-4156-9c45-a6e75780d562", - "universalIdentifier": "c41a24a2-26e5-496e-990d-ad2e5d973b3d", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d235ebbb-0dff-42f9-847c-d88849a5ef27", - "universalIdentifier": "be98e294-1f6e-452b-9d9d-28aa952611bc", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d7dc13b9-782f-4635-a3f1-98b414f0171d", - "universalIdentifier": "52998bbc-bd0e-4660-a842-0008ec3e69d8", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', NULL)", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1ce5a818-e96a-4d32-bb44-f831a11666f5", - "universalIdentifier": "7aeb3c1f-0c0f-4d58-b9e4-444c1adbd3a8", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5d6d9221-9d75-4053-88c2-715d53217836", - "universalIdentifier": "ca256814-71bc-42b1-9f9c-37d1f0d45ea8", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "974da351-bc4e-4490-9e3c-7c1ea9051698", - "universalIdentifier": "4293be96-91f3-417d-ac8a-3c572b4b76cd", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "974da351-bc4e-4490-9e3c-7c1ea9051698", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "90fd38bb-3b8e-4b00-96d8-5ee7d9a60144", - "universalIdentifier": "b554dcf1-264f-45a7-b48e-48a18dd55a68", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "90fd38bb-3b8e-4b00-96d8-5ee7d9a60144", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "438d2dc2-7aee-4fb8-8e61-d8f0ebb7ce40", - "name": "petCareAgreement" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ca925ec5-ffc3-4882-a814-1a42f0e4d818", - "universalIdentifier": "66ac4d81-9047-4e68-8c3b-fc12531f18ef", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ca925ec5-ffc3-4882-a814-1a42f0e4d818", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "42e63b10-3b48-4d03-bfd4-7a4733486b99", - "universalIdentifier": "e580e346-6327-4c88-a74d-f4622545c518", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "42e63b10-3b48-4d03-bfd4-7a4733486b99", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "018f73d3-5212-467d-95b6-986772b517b0", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "40e09d33-e053-4d19-8cf9-c8d7b1e1ea12", - "universalIdentifier": "1228f84f-745f-4b3e-ad9c-18cface5f4fa", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "40e09d33-e053-4d19-8cf9-c8d7b1e1ea12", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "57bc0677-2548-45d8-852e-815c4e8f8f23", - "universalIdentifier": "6ebfa99b-a11b-48d5-af2f-0c55777558e1", - "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-25T16:13:36.015Z", - "updatedAt": "2026-02-25T16:13:36.015Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "petId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "57bc0677-2548-45d8-852e-815c4e8f8f23", - "name": "pet" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "dfcf53fb-7924-4214-b63e-ff754575a435", - "name": "caretakers" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1981b8d6-d7f0-4fcb-9502-d9ba7721d896", - "universalIdentifier": "a403c152-9bbb-45f5-8276-ab1950f39659", - "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-25T16:13:35.770Z", - "updatedAt": "2026-02-25T16:13:35.770Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "caretakerPersonId" - }, - "isLabelSyncedWithName": false, - "morphId": "b08e44d9-e57e-4d7d-a415-492dc05e892a", - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": [ - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1981b8d6-d7f0-4fcb-9502-d9ba7721d896", - "name": "caretaker" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "09830fac-7c41-41d3-9455-59ebd58a5015", - "name": "caredForPets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "39a5684c-a4ff-4f15-b43f-ca1359a2cacd", - "name": "caretaker" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "fa9cc72e-911f-452e-b172-28dbf7c24e52", - "name": "caredForPets" - } - } - ] - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "69b52330-4054-4817-8dec-4a959c70f7c3", - "createdAt": "2026-02-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "name": "IDX_287bd4bcd6070ae3cb538c71ea7", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "38167ee4-68d5-4638-8afc-575b75715a1d", - "fieldMetadataId": "d7dc13b9-782f-4635-a3f1-98b414f0171d", - "createdAt": "2026-02-25T16:13:35.401Z", - "updatedAt": "2026-02-25T16:13:35.401Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "3b6e3951-b467-417d-9662-4a362c3f7508", - "createdAt": "2026-02-25T16:13:35.770Z", - "updatedAt": "2026-02-25T16:13:35.770Z", - "name": "IDX_dff2b88f7bfc1706a851949e1d6", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "d2d05823-fb55-45aa-b639-f49915fc862c", - "fieldMetadataId": "1981b8d6-d7f0-4fcb-9502-d9ba7721d896", - "createdAt": "2026-02-25T16:13:35.786Z", - "updatedAt": "2026-02-25T16:13:35.786Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "ab809292-7c24-4147-9923-b969fc2606a6", - "createdAt": "2026-02-25T16:13:35.770Z", - "updatedAt": "2026-02-25T16:13:35.770Z", - "name": "IDX_be3fc65c60e132f5401b21b065e", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "2f399640-4d06-4eca-b8e1-da241bd0e088", - "fieldMetadataId": "39a5684c-a4ff-4f15-b43f-ca1359a2cacd", - "createdAt": "2026-02-25T16:13:35.789Z", - "updatedAt": "2026-02-25T16:13:35.789Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "e82b2535-e91c-4c22-80ed-8f794a6d63cd", - "createdAt": "2026-02-25T16:13:36.015Z", - "updatedAt": "2026-02-25T16:13:36.015Z", - "name": "IDX_16a70d520ac126ba5cdb2553922", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "071d657e-98cc-4ca2-bb5b-13a8da104876", - "fieldMetadataId": "57bc0677-2548-45d8-852e-815c4e8f8f23", - "createdAt": "2026-02-25T16:13:36.024Z", - "updatedAt": "2026-02-25T16:13:36.024Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "4b282a4d-d369-4f11-84ef-41c536cec32a", - "universalIdentifier": "20202020-8f1d-4eef-9f85-0d1965e27221", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "e7d699d5-5151-4144-8e53-bf6a3cd9ee87", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Calendar event", - "labelPlural": "Calendar events", - "description": "Calendar events", - "icon": "IconCalendar", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "id": "e1f66680-0750-49c3-80c7-aa5becc35b37", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e2fbbcd3-0fa9-48eb-8097-fcd9abccae0c", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a74d64ee-67fd-467f-91ec-3ef2b84b3525", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0e96cae8-c0ac-4f0c-bab8-1ab17260e49c", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "856ded1e-98ac-4ae6-982b-d9643b6b3bb2", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7110d2e7-11fb-4d58-b9c8-08fc423bbae9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5824a9c2-b4d8-47ea-badb-8069a6fbea35", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b5f751bc-c5da-4949-8b6c-2d55c090664f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2d6b468b-8ea2-4c5f-af25-24291ed6a397", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "000d4d7d-1e09-4d55-a5eb-a668d4eb9f0a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5068bd70-779e-4599-a68d-ab9cf5e15585", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2d626271-9611-4d11-8db9-7c991cff4d53", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d053e737-d45c-41e4-8ebc-262f0c704049", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "38dbcddd-84bf-4842-831a-530a977a3694", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f6c54aeb-3d1c-4060-87b9-f8a6714073a9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d4085310-a741-4652-9ab6-c5b25eaaba97", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"title\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e7d699d5-5151-4144-8e53-bf6a3cd9ee87", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b2fbe270-5f30-407f-92c1-fb09b9b81d8b", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ec08490c-a674-49f0-91e5-6c8c139dea28", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a27c6494-affa-4c91-94d7-4ac2d29640a8", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9675edeb-664b-4b7c-8b3b-b7922d98881d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4b282a4d-d369-4f11-84ef-41c536cec32a", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "acffe46d-155f-4777-93d6-c3de4f859b14", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "9675edeb-664b-4b7c-8b3b-b7922d98881d", - "name": "calendarChannelEventAssociations" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "869639f7-4674-4b8e-be38-af875d324d5d", - "name": "calendarEvent" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "69764f50-1afa-40c2-bcaf-55eab1c0529a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4b282a4d-d369-4f11-84ef-41c536cec32a", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "ee48f10c-9a42-4d4e-ba94-ed4bcf801841", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "69764f50-1afa-40c2-bcaf-55eab1c0529a", - "name": "calendarEventParticipants" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "792ee9ef-aee2-439d-a099-4bfc6d298e87", - "name": "calendarEvent" - } - }, - "morphRelations": null - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", - "universalIdentifier": "20202020-1ba1-48ba-bc83-ef7e5990ed10", - "nameSingular": "task", - "namePlural": "tasks", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "2c30cfae-e97e-42a0-b2b1-902a817e3d4d", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": "T", - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Task", - "labelPlural": "Tasks", - "description": "A task", - "icon": "IconCheckbox", - "fieldsList": [ - { - "__typename": "Field", - "id": "3521cfc0-ffb8-4cc9-890c-62e5cc2a314c", - "universalIdentifier": "20202020-a02a-4151-8a51-89abcdefabcd", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "27e9a5b3-b84c-49d2-a717-21911e7b3678", - "universalIdentifier": "20202020-a02b-4152-9b52-9abcdefabcde", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3439bd25-0eb4-4228-8f0a-c6802dbc9876", - "universalIdentifier": "20202020-a02c-4153-8c53-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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3b518a0d-09f0-4a1a-9d03-815f8589b907", - "universalIdentifier": "20202020-a02d-4154-9d54-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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7a0578ab-208d-4326-907b-4e76bb96bd44", - "universalIdentifier": "20202020-7d47-4690-8a98-98b9a0c05dd8", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Task record position", - "icon": "IconHierarchy2", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2c30cfae-e97e-42a0-b2b1-902a817e3d4d", - "universalIdentifier": "20202020-b386-4cb7-aa5a-08d4a4d92680", - "type": "TEXT", - "name": "title", - "label": "Title", - "description": "Task title", - "icon": "IconNotes", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6b1826dd-6811-412b-bca2-c1ff18dcc483", - "universalIdentifier": "20202020-4aa0-4ae8-898d-7df0afd47ab1", + "id": "4287a605-dddd-4e57-a20c-7d536d7d29f2", + "universalIdentifier": "20202020-a7bb-4d94-be51-8f25181502c8", "type": "RICH_TEXT_V2", "name": "bodyV2", "label": "Body", - "description": "Task body", + "description": "Note body", "icon": "IconFilePencil", "isCustom": false, "isActive": true, @@ -19231,95 +24580,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "36aa018c-feed-4875-a684-7a17023bf4e8", - "universalIdentifier": "20202020-fd99-40da-951b-4cb9a352fce3", - "type": "DATE_TIME", - "name": "dueAt", - "label": "Due Date", - "description": "Task due date", - "icon": "IconCalendarEvent", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "439a4e46-524e-46c0-8fee-187cf5dd3856", - "universalIdentifier": "20202020-70bc-48f9-89c5-6aa730b151e0", - "type": "SELECT", - "name": "status", - "label": "Status", - "description": "Task status", - "icon": "IconCheck", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "'TODO'", - "options": [ - { - "id": "20202020-3d31-4860-ad07-5c4603d44887", - "color": "sky", - "label": "To do", - "value": "TODO", - "position": 0 - }, - { - "id": "20202020-c559-4f8e-8b8e-21136da8684d", - "color": "purple", - "label": "In progress", - "value": "IN_PROGRESS", - "position": 1 - }, - { - "id": "20202020-c7a7-43ff-8226-f6a97a32759e", - "color": "green", - "label": "Done", - "value": "DONE", - "position": 2 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1c23d855-c3d0-4dbb-b53a-0be0ad8d19fd", - "universalIdentifier": "20202020-1a04-48ab-a567-576965ae5387", + "id": "6a255d21-ae58-41c9-a4f3-8e62973cc6cb", + "universalIdentifier": "20202020-0d79-4e21-ab77-5a394eff97be", "type": "ACTOR", "name": "createdBy", "label": "Created by", @@ -19331,8 +24606,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -19342,14 +24617,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "e6c6e27a-e2a8-41a4-8e69-6b3cdcfa04d1", - "universalIdentifier": "9e8bf518-f4ab-433e-9674-efb75fba2802", + "id": "2dfd35c1-3e82-4941-9491-c8fafee295ec", + "universalIdentifier": "9b446e89-2484-4044-a3b5-420f6b578c0c", "type": "ACTOR", "name": "updatedBy", "label": "Updated by", @@ -19361,8 +24636,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": { "name": "'System'", "source": "'MANUAL'", @@ -19372,14 +24647,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "5357fde7-0c97-4884-999e-93fb7af2c634", - "universalIdentifier": "20202020-4746-4e2f-870c-52b02c67c90d", + "id": "c3ced184-b5f9-4acb-a403-68c1818d0b21", + "universalIdentifier": "20202020-7ea8-44d4-9d4c-51dd2a757950", "type": "TS_VECTOR", "name": "searchVector", "label": "Search vector", @@ -19391,8 +24666,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -19401,18 +24676,18 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "2072fbe5-ba86-4e99-ba6c-09f3315c43f9", - "universalIdentifier": "20202020-794d-4783-a8ff-cecdb15be139", + "id": "cfe77965-fe0b-4da4-9d71-fb5a47466153", + "universalIdentifier": "20202020-4986-4c92-bf19-39934b149b16", "type": "RELATION", "name": "attachments", "label": "Attachments", - "description": "Task attachments", + "description": "Note attachments", "icon": "IconFileImport", "isCustom": false, "isActive": true, @@ -19420,8 +24695,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -19429,30 +24704,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", - "nameSingular": "task", - "namePlural": "tasks" + "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", + "nameSingular": "note", + "namePlural": "notes" }, "targetObjectMetadata": { "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", + "id": "48397bb7-38df-43dd-81b8-2593bef340ca", "nameSingular": "attachment", "namePlural": "attachments" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "2072fbe5-ba86-4e99-ba6c-09f3315c43f9", + "id": "cfe77965-fe0b-4da4-9d71-fb5a47466153", "name": "attachments" }, "targetFieldMetadata": { "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", + "id": "0f94f909-9937-4c08-bb2a-6c98f78e1be5", "name": "target" } }, @@ -19460,12 +24735,12 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, { "__typename": "Field", - "id": "33e1ff69-2cef-44c4-bf22-5d41443957b4", - "universalIdentifier": "20202020-4d1d-41ac-b13b-621631298d65", + "id": "972ed175-3bb8-44c8-8a15-6110a752c232", + "universalIdentifier": "20202020-4d1d-41ac-b13b-621631298d67", "type": "RELATION", "name": "favorites", "label": "Favorites", - "description": "Favorites linked to the task", + "description": "Favorites linked to the note", "icon": "IconHeart", "isCustom": false, "isActive": true, @@ -19473,8 +24748,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -19482,43 +24757,43 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", - "nameSingular": "task", - "namePlural": "tasks" + "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", + "nameSingular": "note", + "namePlural": "notes" }, "targetObjectMetadata": { "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "id": "7d4a6af5-536c-45af-8040-224ee553ce05", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "33e1ff69-2cef-44c4-bf22-5d41443957b4", + "id": "972ed175-3bb8-44c8-8a15-6110a752c232", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "1343c0d7-85c3-4cb9-b04f-47caa829733d", - "name": "task" + "id": "27ea9991-d5bb-44e1-bf1a-ecc6ca0528cb", + "name": "note" } }, "morphRelations": null }, { "__typename": "Field", - "id": "6db1ce5b-290c-45e7-ab74-76375b85be41", - "universalIdentifier": "20202020-de9c-4d0e-a452-713d4a3e5fc7", + "id": "8c70b651-06ce-46fb-9acd-8a09eb0759ca", + "universalIdentifier": "20202020-1f25-43fe-8b00-af212fdde823", "type": "RELATION", - "name": "taskTargets", + "name": "noteTargets", "label": "Relations", - "description": "Task targets", + "description": "Note targets", "icon": "IconArrowUpRight", "isCustom": false, "isActive": true, @@ -19526,8 +24801,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -19535,98 +24810,43 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", - "nameSingular": "task", - "namePlural": "tasks" + "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", + "nameSingular": "note", + "namePlural": "notes" }, "targetObjectMetadata": { "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" + "id": "b70f3c14-18e6-4f33-98eb-34527d1ebbb7", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "6db1ce5b-290c-45e7-ab74-76375b85be41", - "name": "taskTargets" + "id": "8c70b651-06ce-46fb-9acd-8a09eb0759ca", + "name": "noteTargets" }, "targetFieldMetadata": { "__typename": "Field", - "id": "605b85e6-78ac-4b87-831f-e6f0d0f6739c", - "name": "task" + "id": "c031446f-95b4-4948-9b32-f8be9ea35590", + "name": "note" } }, "morphRelations": null }, { "__typename": "Field", - "id": "e0238821-7d8c-4fd9-a25b-69973eaa6f7c", - "universalIdentifier": "20202020-065a-4f42-a906-e20422c1753f", - "type": "RELATION", - "name": "assignee", - "label": "Assignee", - "description": "Task assignee", - "icon": "IconUserCircle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "assigneeId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", - "nameSingular": "task", - "namePlural": "tasks" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e0238821-7d8c-4fd9-a25b-69973eaa6f7c", - "name": "assignee" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a5526b8b-688c-458e-b057-b529309dcab9", - "name": "assignedTasks" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3b219348-d361-4f11-852f-e205ebc4f07f", - "universalIdentifier": "20202020-c778-4278-99ee-23a2837aee64", + "id": "a780900c-a955-4f4f-8fdc-4d43b161199e", + "universalIdentifier": "20202020-7030-42f8-929c-1a57b25d6bce", "type": "RELATION", "name": "timelineActivities", "label": "Timeline Activities", - "description": "Timeline Activities linked to the task.", + "description": "Timeline Activities linked to the note.", "icon": "IconTimelineEvent", "isCustom": false, "isActive": true, @@ -19634,8 +24854,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -19643,30 +24863,30 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", - "nameSingular": "task", - "namePlural": "tasks" + "id": "09201040-6d40-4517-bdfd-0d31fb9d5d9f", + "nameSingular": "note", + "namePlural": "notes" }, "targetObjectMetadata": { "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", + "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", "nameSingular": "timelineActivity", "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "3b219348-d361-4f11-852f-e205ebc4f07f", + "id": "a780900c-a955-4f4f-8fdc-4d43b161199e", "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", + "id": "310c6d0b-06cb-4583-8a24-a0b113a92c5b", "name": "target" } }, @@ -19676,31 +24896,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "1d6110f4-050e-463b-a8bb-7aac738f9089", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_b5b4da613fc4d734f65fb1deb6b", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "4ffcb3db-3a36-47cb-917e-ee07f0593123", - "fieldMetadataId": "e0238821-7d8c-4fd9-a25b-69973eaa6f7c", - "createdAt": "2026-02-25T16:13:34.277Z", - "updatedAt": "2026-02-25T16:13:34.277Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "98b37982-3da1-4c5b-ab1d-cb3c19e3b820", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_d01a000cf26e1225d894dc3d364", + "id": "f11cf427-7ccb-49ef-86e3-3c3b27d82291", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_f20de8d7fc74a405e4083051275", "indexWhereClause": null, "indexType": "GIN", "isUnique": false, @@ -19708,10 +24907,10 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "c494de02-b648-44cf-8e96-3c8007ce94ac", - "fieldMetadataId": "5357fde7-0c97-4884-999e-93fb7af2c634", - "createdAt": "2026-02-25T16:13:34.277Z", - "updatedAt": "2026-02-25T16:13:34.277Z", + "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", "order": 0 } ] @@ -19723,3047 +24922,33 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "universalIdentifier": "cf6069d3-2db1-402d-9e28-5ec456dd773d", - "nameSingular": "rocket", - "namePlural": "rockets", - "isCustom": true, + "id": "047105f3-62d8-4c46-ba31-67411fd98f94", + "universalIdentifier": "20202020-3319-4234-a34c-82d5c0e881a6", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers", + "isCustom": false, "isRemote": false, "isActive": true, - "isSystem": false, + "isSystem": true, "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:34.508Z", - "updatedAt": "2026-02-25T16:13:34.508Z", - "labelIdentifierFieldMetadataId": "27c09099-fdaf-4f36-bc9d-690bd6282be0", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "labelIdentifierFieldMetadataId": "e3fd0788-0af3-417b-a101-a813bd3b1f77", "imageIdentifierFieldMetadataId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": true, "duplicateCriteria": null, - "labelSingular": "Rocket", - "labelPlural": "Rockets", - "description": "A rocket", - "icon": "IconRocket", - "fieldsList": [ - { - "__typename": "Field", - "id": "27c09099-fdaf-4f36-bc9d-690bd6282be0", - "universalIdentifier": "3a9b8f20-3acd-4060-b88d-e6d60f88f5e2", - "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-25T16:13:34.507Z", - "updatedAt": "2026-02-25T16:13:34.507Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f17b1402-946f-49f2-ac54-54bb1e14eaf7", - "universalIdentifier": "c570d498-ec36-4529-a3b8-07a37f67e2d6", - "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-25T16:13:34.507Z", - "updatedAt": "2026-02-25T16:13:34.507Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4a89cd4a-60f5-4938-84cc-f25f2d01ddd3", - "universalIdentifier": "332d95dd-073e-477a-bdb6-f49b8fa7a5b7", - "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-25T16:13:34.507Z", - "updatedAt": "2026-02-25T16:13:34.507Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0e3fd997-5ccc-470b-b360-147ec4b0e0cf", - "universalIdentifier": "6286d078-512a-4551-a1b7-d7153079fdc6", - "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-25T16:13:34.507Z", - "updatedAt": "2026-02-25T16:13:34.507Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "98ce26a8-e79a-4615-aa4c-314a7cfe0bec", - "universalIdentifier": "6a2720b1-26c4-4010-bd17-fcdf836899bb", - "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-25T16:13:34.507Z", - "updatedAt": "2026-02-25T16:13:34.507Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5ee88bc7-2f22-4feb-89bb-0aeecef65a5a", - "universalIdentifier": "b42beaeb-d387-4a5c-81a3-7138b5ffab96", - "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-25T16:13:34.507Z", - "updatedAt": "2026-02-25T16:13:34.507Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f8929564-c8be-4f78-924c-be20498fba1e", - "universalIdentifier": "80ae90bf-0d23-4e85-b8c8-1a61df46abcb", - "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-25T16:13:34.507Z", - "updatedAt": "2026-02-25T16:13:34.507Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1cb9a720-4608-4c8e-8c73-a6cab2351d7c", - "universalIdentifier": "86114e1c-d323-4bc7-add4-124995d9d10d", - "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-25T16:13:34.507Z", - "updatedAt": "2026-02-25T16:13:34.507Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fc3000ee-5352-40bb-b283-0f78e355c3e2", - "universalIdentifier": "3abb829e-f0ab-4c43-a203-7cd9a6acbc55", - "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-25T16:13:34.507Z", - "updatedAt": "2026-02-25T16:13:34.507Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c6514f5d-2717-48a6-b116-6c073794452d", - "universalIdentifier": "cca688e6-9f5a-4e6e-b61a-9e6824f548d1", - "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-25T16:13:34.508Z", - "updatedAt": "2026-02-25T16:13:34.508Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c6514f5d-2717-48a6-b116-6c073794452d", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d32d7fde-35dc-4e05-acf9-21ec508a0ab1", - "universalIdentifier": "fef3b58c-7398-4cea-8179-8f03d86f18f7", - "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-25T16:13:34.508Z", - "updatedAt": "2026-02-25T16:13:34.508Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d32d7fde-35dc-4e05-acf9-21ec508a0ab1", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b1c076f1-ace9-4225-a934-f75fe5ec29ff", - "name": "rocket" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "77870632-c32e-4ba7-877f-baf8d9d8ef74", - "universalIdentifier": "5fa57cdf-c770-477c-8c50-b6a654ce7f4d", - "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-25T16:13:34.508Z", - "updatedAt": "2026-02-25T16:13:34.508Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "77870632-c32e-4ba7-877f-baf8d9d8ef74", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "854bec92-c072-41e8-88e4-2ca318c09892", - "universalIdentifier": "92576697-6fff-4412-8df7-e4013230614d", - "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-25T16:13:34.508Z", - "updatedAt": "2026-02-25T16:13:34.508Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "854bec92-c072-41e8-88e4-2ca318c09892", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "018f73d3-5212-467d-95b6-986772b517b0", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b6077ac8-b1bb-4599-857d-dce1a6ca345e", - "universalIdentifier": "43096ca3-9a9e-4833-a531-ad6479991f55", - "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-25T16:13:34.508Z", - "updatedAt": "2026-02-25T16:13:34.508Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b6077ac8-b1bb-4599-857d-dce1a6ca345e", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fc7141be-8724-4b7b-bfbc-d8d10833a307", - "universalIdentifier": "91d8ae15-d569-4022-abc7-4c716e304239", - "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-25T16:13:35.679Z", - "updatedAt": "2026-02-25T16:13:35.679Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "fc7141be-8724-4b7b-bfbc-d8d10833a307", - "name": "ownedPets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "408a37d2-1d63-4508-a3c6-8a3868ccb7c5", - "name": "polymorphicOwner" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "854b1115-3bd1-4017-b92c-bad09504a29b", - "universalIdentifier": "e082187c-299b-454a-83da-9d47449f20c6", - "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-25T16:13:35.679Z", - "updatedAt": "2026-02-25T16:13:35.679Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "helpedPetsId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "854b1115-3bd1-4017-b92c-bad09504a29b", - "name": "helpedPets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0f4285cc-f2ba-4c49-97dc-874a1f084c99", - "name": "polymorphicHelper" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "a512b3e9-b13a-451a-9ceb-fc71c180bdeb", - "createdAt": "2026-02-25T16:13:34.508Z", - "updatedAt": "2026-02-25T16:13:34.508Z", - "name": "IDX_530792e4278e7696c4e3e3e55f8", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "6ddae762-ea64-4c20-aa5c-5f6d0a903004", - "fieldMetadataId": "f8929564-c8be-4f78-924c-be20498fba1e", - "createdAt": "2026-02-25T16:13:34.566Z", - "updatedAt": "2026-02-25T16:13:34.566Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "05c32d6d-20b0-456f-b7d3-8d61184af461", - "createdAt": "2026-02-25T16:13:35.679Z", - "updatedAt": "2026-02-25T16:13:35.679Z", - "name": "IDX_5881fea129dd0594d8d0661c787", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "4c8c4ffe-1bde-495e-898c-3330062eb4a1", - "fieldMetadataId": "854b1115-3bd1-4017-b92c-bad09504a29b", - "createdAt": "2026-02-25T16:13:35.710Z", - "updatedAt": "2026-02-25T16:13:35.710Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "universalIdentifier": "20202020-6736-4337-b5c4-8b39fae325a5", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "9d4490e1-7f50-4443-97e0-46844a57add4", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "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": "8108a486-b241-46cf-a71b-c318f6cb3363", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ec847693-bdd0-42d5-b6d4-97c53cf2bfb7", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "844765a1-420a-443a-a4f1-0558554830c4", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8aa43bb2-7133-4c05-97c2-583b6bea5633", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7de6bdfb-6f24-4bbf-bb08-d27a41e99812", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "152d0980-49f1-46a9-b8a2-6d9a23251a76", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "934b6128-7e4e-4f64-8e85-3f2415ada872", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f06b2534-09bc-4b4a-9fef-d11b2e6d7b2a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9d4490e1-7f50-4443-97e0-46844a57add4", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1268ef9e-6464-4229-867e-de382c72af5e", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "179454bf-bec0-4f8a-ab8f-642a5cdd1a49", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9c86e261-cd97-43a5-9803-187d4c64a556", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5f49311b-8095-48b6-b891-5ae2475ba81e", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "784cca36-03f0-4a76-a225-722887039324", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "249567a8-fd2b-426e-a9b8-6a02c4b94be6", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workspaceMemberId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "249567a8-fd2b-426e-a9b8-6a02c4b94be6", - "name": "workspaceMember" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "17f0262c-7fb7-4a79-82d5-762eab3f5143", - "name": "timelineActivities" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", - "universalIdentifier": "0502889a-c4f6-467f-8d1b-39bfc6c81bcc", - "type": "MORPH_RELATION", - "name": "target", - "label": "PetCareAgreement", - "description": "TimelineActivities Pet Care Agreement", - "icon": "IconTimelineEvent", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "targetPetCareAgreementId" - }, - "isLabelSyncedWithName": false, - "morphId": "20202020-9a2b-4c3d-a4e5-f6a7b8c9d0e1", - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": [ - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "974da351-bc4e-4490-9e3c-7c1ea9051698", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c08032bf-20e6-42a3-8fc5-63b13e157145", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "783946e8-cf8c-49a3-a6f3-6d99ec2816fa", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "58a0f417-6dee-4c61-b11d-a041dbe3d839", - "nameSingular": "dashboard", - "namePlural": "dashboards" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "aa17744b-183f-4ca8-960d-6ca44d6da9b2", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1ea2450b-14b6-4203-928f-4b98080bb83f", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7e2a0fff-cb81-4990-a189-69c4c4119894", - "nameSingular": "note", - "namePlural": "notes" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "47317e42-ec70-4c17-82a3-fe5b3e072c23", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "14c85f52-64be-4f77-9891-3269bbf985d4", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b0f915ff-bd08-4e74-a70c-5a9394159aec", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "7eee7b40-3d77-472f-8fe5-989caf8422a1", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ba5eeb6d-71d9-4299-a5fb-2551dde7c3e3", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "815f11ae-b23a-4312-846c-098ed8fa0a65", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d9f30ac6-a2a3-468a-b1ec-f1a172a1d117", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3b219348-d361-4f11-852f-e205ebc4f07f", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ace8ae2a-c2d7-4f65-b31a-7d7b51054d2c", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d3408c03-0d38-4706-a2dd-566760199e6f", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a3390050-15e0-4cfd-9dfd-b325acda6d4e", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0872f41d-bc4e-412d-a501-e542202f55c9", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "678a973d-c1ae-4b73-86c4-530b5df455e9", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "cbd2b69a-2f8c-4574-bdb9-ca3227e4503f", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b74512b6-3573-4c02-9b51-39ac4af07b45", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "67e9f9ba-36be-4de8-b96a-7858e10a6d23", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "c6514f5d-2717-48a6-b116-6c073794452d", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5e7a2fe7-fe61-406d-ade9-88cc61798ada", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4cdcc62c-aa30-4f28-a4ae-8e94a865ba9e", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "fc6d4a95-30e0-4708-bf2d-ec028682b2aa", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4a81e969-e60b-47d0-8b49-51a844045a49", - "name": "timelineActivities" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "55f8b0a6-8d30-45f0-8a09-a06a944f0158", - "name": "target" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "505efc22-b8e5-4a2a-8e4b-58ca475682ce", - "name": "timelineActivities" - } - } - ] - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "3b6c50bf-06bc-4cc1-a746-699d07627989", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_dc68847d0ff0b17baef8fb632c2", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "ecfee34a-14f2-4ec6-b419-59f5dcc47050", - "fieldMetadataId": "249567a8-fd2b-426e-a9b8-6a02c4b94be6", - "createdAt": "2026-02-25T16:13:34.280Z", - "updatedAt": "2026-02-25T16:13:34.280Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "f68ccf25-77d9-40c2-a46e-7ed5163f2168", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_e49dd7da4ed5c919babcd31c93b", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "ae61c9bd-9117-4170-8e3b-d726a1654220", - "fieldMetadataId": "ba5eeb6d-71d9-4299-a5fb-2551dde7c3e3", - "createdAt": "2026-02-25T16:13:34.281Z", - "updatedAt": "2026-02-25T16:13:34.281Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "8ef0a899-75b1-4305-8f49-fbc72cc58bf4", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_9b267fc4a89dd1aaec4c5340f05", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "aa6b4069-6d55-4512-88e1-a9bbae512bd1", - "fieldMetadataId": "c08032bf-20e6-42a3-8fc5-63b13e157145", - "createdAt": "2026-02-25T16:13:34.281Z", - "updatedAt": "2026-02-25T16:13:34.281Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "41d92582-5e54-484a-a589-17ac000ac026", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_62d09af534224aa478109b2d585", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "c9e6d660-1f39-429b-977b-9732481668da", - "fieldMetadataId": "b0f915ff-bd08-4e74-a70c-5a9394159aec", - "createdAt": "2026-02-25T16:13:34.282Z", - "updatedAt": "2026-02-25T16:13:34.282Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "3a444667-e1ee-47fe-bb32-b0d275b2c47c", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_26a021921ba73b428be8f244ded", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "8d297e99-ffd4-4c3e-b508-6053e0022457", - "fieldMetadataId": "47317e42-ec70-4c17-82a3-fe5b3e072c23", - "createdAt": "2026-02-25T16:13:34.283Z", - "updatedAt": "2026-02-25T16:13:34.283Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "3b6fb552-6f75-4f80-953a-a5bcf802153e", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_1ff229b8237e8368a92c08d11f0", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "bebb754c-e592-4589-a4e7-c95abce33062", - "fieldMetadataId": "d9f30ac6-a2a3-468a-b1ec-f1a172a1d117", - "createdAt": "2026-02-25T16:13:34.283Z", - "updatedAt": "2026-02-25T16:13:34.283Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "27d4632b-6dda-4522-9821-97269682e625", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_9a2065c2b56ffe8b74d1a12705f", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "6d7e0604-840c-4cab-961c-bd340380eebb", - "fieldMetadataId": "ace8ae2a-c2d7-4f65-b31a-7d7b51054d2c", - "createdAt": "2026-02-25T16:13:34.284Z", - "updatedAt": "2026-02-25T16:13:34.284Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "7bb48d21-29db-4ea3-bba8-ca9e0369ecda", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_953cb9c73db904f98697f4867b2", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "8e8d37e8-2fff-44e7-8fed-de236f35bf70", - "fieldMetadataId": "a3390050-15e0-4cfd-9dfd-b325acda6d4e", - "createdAt": "2026-02-25T16:13:34.284Z", - "updatedAt": "2026-02-25T16:13:34.284Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "f924fd79-610f-43b8-b8b7-e5b56dd38ff6", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_58b130a455b1451066c84dc63e2", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "c61d97c2-5f92-4be4-a761-1c71fc4fd9cc", - "fieldMetadataId": "cbd2b69a-2f8c-4574-bdb9-ca3227e4503f", - "createdAt": "2026-02-25T16:13:34.285Z", - "updatedAt": "2026-02-25T16:13:34.285Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "d66688ea-2593-4066-8f21-8164fb785376", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_6b2a27852dd0e0846577662a33a", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "14ab7618-895e-4f18-a734-92fa96671cd5", - "fieldMetadataId": "aa17744b-183f-4ca8-960d-6ca44d6da9b2", - "createdAt": "2026-02-25T16:13:34.286Z", - "updatedAt": "2026-02-25T16:13:34.286Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "universalIdentifier": "208e4da3-e25e-4b80-a40b-1dd54f8d7d13", - "nameSingular": "surveyResult", - "namePlural": "surveyResults", - "isCustom": true, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "labelIdentifierFieldMetadataId": "3541a2cb-ffcc-4ccc-b2df-22a2d26dad72", - "imageIdentifierFieldMetadataId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Survey result", - "labelPlural": "Survey results", - "description": "", - "icon": "IconRulerMeasure", - "fieldsList": [ - { - "__typename": "Field", - "id": "3541a2cb-ffcc-4ccc-b2df-22a2d26dad72", - "universalIdentifier": "c04a275e-1705-40c7-a2ec-c7749d49be01", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7028a7dd-d466-414d-a74d-d20533e5d4c2", - "universalIdentifier": "669ab033-72cd-4541-b231-686f32d50d3b", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ff176768-ddd0-4be4-a94a-ed585493a5fa", - "universalIdentifier": "897c99a8-b891-450a-b7a8-5118e3441abe", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1547ca78-d1e8-4403-8f54-a38dc6d3714c", - "universalIdentifier": "0b633961-221f-4a7b-b8f3-4d21b576aece", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "146f413c-d11d-4281-a321-f5c2b32ff825", - "universalIdentifier": "07a8c9e4-7f39-43c1-814c-d40af0227216", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "59f81321-1aa8-46f4-90ba-fba121dae76e", - "universalIdentifier": "d9dc6656-398f-4c85-b215-28167dce50b9", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d1e3e319-1479-4bb4-86ee-824677f0a685", - "universalIdentifier": "df72a828-30e0-45ce-b4aa-824e2b073a4e", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "8d306c58-d9ce-4823-9422-477c96da42db", - "universalIdentifier": "04b0c8fa-e38d-4ca7-b1ca-3b7af6489a50", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1915f509-2ad7-4fdc-b173-3f3594e11132", - "universalIdentifier": "f180566b-ae3d-41eb-8d27-bccc160e6d40", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4a81e969-e60b-47d0-8b49-51a844045a49", - "universalIdentifier": "e73d7c2e-f46b-4a2b-b20e-5da4ecf9735a", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4a81e969-e60b-47d0-8b49-51a844045a49", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "aa8a16a9-6b28-4dec-a715-98d46b3a852d", - "universalIdentifier": "d6a84f42-81bb-4e41-92f0-92d0305a2e37", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "aa8a16a9-6b28-4dec-a715-98d46b3a852d", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "fbae6daa-2d54-42aa-9891-e42f4a1b0e3a", - "name": "surveyResult" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "05460c3b-e41a-4da6-a889-9c36080ac155", - "universalIdentifier": "0b9f1f4e-31ab-4108-b031-a7dfb4022bb9", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "05460c3b-e41a-4da6-a889-9c36080ac155", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "e2f260f6-39df-4683-86d9-5dcae100f9dc", - "universalIdentifier": "8606abe4-0c16-4400-b171-50a0b8963bd0", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e2f260f6-39df-4683-86d9-5dcae100f9dc", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "018f73d3-5212-467d-95b6-986772b517b0", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "daeecc00-e0c0-4fc8-984f-a0eb6133972c", - "universalIdentifier": "8656bee1-966a-4f01-b481-108bc7f4e7e9", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "daeecc00-e0c0-4fc8-984f-a0eb6133972c", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9d643d1a-0f98-45f2-bbe8-cecdee513d5a", - "universalIdentifier": "78c1546a-4a46-47fe-b3c6-948535350e67", - "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-25T16:13:35.172Z", - "updatedAt": "2026-02-25T16:13:35.172Z", - "defaultValue": null, - "options": null, - "settings": { - "type": "number", - "dataType": "float", - "decimals": 3 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "57981863-9a64-4269-aabe-6e831725a720", - "universalIdentifier": "6ed51e89-15d4-49bb-9374-5a0e0ae1549a", - "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-25T16:13:35.172Z", - "updatedAt": "2026-02-25T16:13:35.172Z", - "defaultValue": null, - "options": null, - "settings": { - "type": "percentage", - "dataType": "float", - "decimals": 6 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3c493442-1456-4e8e-aa74-fe1be1e457be", - "universalIdentifier": "f81d27db-3033-4bf6-8571-bfaf4b91613f", - "type": "NUMBER", - "name": "participants", - "label": "Participants (Int)", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:35.172Z", - "updatedAt": "2026-02-25T16:13:35.172Z", - "defaultValue": null, - "options": null, - "settings": { - "type": "number", - "dataType": "int" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9849bb79-5b55-4685-8dbd-112944e16688", - "universalIdentifier": "d7b7909f-3c9e-4bc2-8b6c-8fdab094233e", - "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-25T16:13:35.172Z", - "updatedAt": "2026-02-25T16:13:35.172Z", - "defaultValue": null, - "options": null, - "settings": { - "type": "number", - "dataType": "bigint" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3a742af7-811d-4d4f-84f3-5bade21a2bdd", - "universalIdentifier": "9a785a47-d4cf-495e-af04-a66109a60744", - "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-25T16:13:35.172Z", - "updatedAt": "2026-02-25T16:13:35.172Z", - "defaultValue": null, - "options": null, - "settings": { - "displayedMaxRows": 5 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "70ceb781-341f-426b-b1c0-45bea8d81d97", - "universalIdentifier": "a2aa0453-79e4-453d-96e4-6d372b6f1ce9", - "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-25T16:13:35.172Z", - "updatedAt": "2026-02-25T16:13:35.172Z", - "defaultValue": null, - "options": null, - "settings": { - "displayedMaxRows": 1 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d389f318-43eb-4539-9db2-001016778124", - "universalIdentifier": "52c2c5ea-8555-4fbc-b02a-fbe84e4bfb93", - "type": "FILES", - "name": "files", - "label": "Files", - "description": "", - "icon": "IconFiles", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:35.172Z", - "updatedAt": "2026-02-25T16:13:35.172Z", - "defaultValue": null, - "options": null, - "settings": { - "maxNumberOfValues": 5 - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6b042937-f18c-4314-bd8d-a265df54510b", - "universalIdentifier": "bdb407c6-af90-4b0f-9523-fde9f52aec47", - "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-25T16:13:35.679Z", - "updatedAt": "2026-02-25T16:13:35.679Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6b042937-f18c-4314-bd8d-a265df54510b", - "name": "ownedPets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "408a37d2-1d63-4508-a3c6-8a3868ccb7c5", - "name": "polymorphicOwner" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "778a941c-b2f5-49ca-8b39-584fc1154ecd", - "universalIdentifier": "411ce035-206b-4f40-a125-91b893159418", - "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-25T16:13:35.679Z", - "updatedAt": "2026-02-25T16:13:35.679Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "helpedPetsId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "778a941c-b2f5-49ca-8b39-584fc1154ecd", - "name": "helpedPets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0f4285cc-f2ba-4c49-97dc-874a1f084c99", - "name": "polymorphicHelper" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "8a613367-46cd-4b22-b65d-5ed11b234f38", - "createdAt": "2026-02-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "name": "IDX_e2a25535adda4544be555d3b6d8", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "61400b94-f7ac-4ff9-b53f-5ae869e535c8", - "fieldMetadataId": "d1e3e319-1479-4bb4-86ee-824677f0a685", - "createdAt": "2026-02-25T16:13:35.082Z", - "updatedAt": "2026-02-25T16:13:35.082Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "b2bd6bd3-897a-4881-a330-3119a4c181a7", - "createdAt": "2026-02-25T16:13:35.679Z", - "updatedAt": "2026-02-25T16:13:35.679Z", - "name": "IDX_f69cb5fa5975d86fddaef55f8f1", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "c7244f5e-1ade-494f-8c2b-427cbacb1653", - "fieldMetadataId": "778a941c-b2f5-49ca-8b39-584fc1154ecd", - "createdAt": "2026-02-25T16:13:35.708Z", - "updatedAt": "2026-02-25T16:13:35.708Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "28084101-2436-4a49-af93-c782446dbdd4", - "universalIdentifier": "20202020-849a-4c3e-84f5-a25a7d802271", - "nameSingular": "messageThread", - "namePlural": "messageThreads", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "6a30a0b7-e569-4f1d-bc42-898d7c1a6a6a", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Message Thread", - "labelPlural": "Message Threads", - "description": "Message Thread", - "icon": "IconMessage", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "id": "6a30a0b7-e569-4f1d-bc42-898d7c1a6a6a", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9a24ddc7-a652-40c0-83fa-e39db3863d80", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f732a7bf-0ac7-4a06-bf74-bf520c7cb444", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1791253e-971d-495e-93cf-5ff1c3aa551c", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0e20bfd0-695d-4303-9ad7-fc2ddbf4e788", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4e6b6a51-e8cd-4577-bbdd-4b832280898d", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6dbfde4d-3f3e-44cc-868a-32c7b2f70f06", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a66cee09-ccb1-4e46-b377-bc9393d95ab3", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5985ed8a-5e3b-4bd6-90b5-de0fb8d35a1b", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "28084101-2436-4a49-af93-c782446dbdd4", - "nameSingular": "messageThread", - "namePlural": "messageThreads" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c7696dce-461e-4549-bda6-faf7e93eaa24", - "nameSingular": "message", - "namePlural": "messages" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5985ed8a-5e3b-4bd6-90b5-de0fb8d35a1b", - "name": "messages" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6b2a6548-243a-40a1-8815-05a01c328f70", - "name": "messageThread" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4d3d435f-2026-437d-809b-3c85a579dd16", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "28084101-2436-4a49-af93-c782446dbdd4", - "nameSingular": "messageThread", - "namePlural": "messageThreads" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e2717a89-8e3e-4d13-b5a0-3cbeaba7d75e", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4d3d435f-2026-437d-809b-3c85a579dd16", - "name": "messageChannelMessageAssociations" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a4fdf9f1-2fd4-45af-b837-375ed36e20e2", - "name": "messageThread" - } - }, - "morphRelations": null - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "2756d5d9-f309-48d9-9579-31cfebce2eef", - "universalIdentifier": "20202020-a433-4456-aa2d-fd9cb26b774a", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "9319c745-10f2-4141-82e5-325fca20c7b7", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Message Participant", - "labelPlural": "Message Participants", - "description": "Message Participants", + "labelSingular": "Workspace Member", + "labelPlural": "Workspace Members", + "description": "A workspace member", "icon": "IconUserCircle", "fieldsList": [ { "__typename": "Field", - "id": "bf7b8844-02f5-4ad0-ac3d-841f35355518", - "universalIdentifier": "20202020-b04a-40e1-8ae1-1a2b3c4d5e6f", + "id": "f6afcc93-632d-4267-a5bf-e8e8c85997c4", + "universalIdentifier": "20202020-fb1a-41b1-8ab1-efabcdefabcd", "type": "UUID", "name": "id", "label": "Id", @@ -22775,21 +24960,21 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "4ad3f883-70b3-4679-ac77-feab844f9593", - "universalIdentifier": "20202020-b04b-40e2-9be2-2b3c4d5e6f7a", + "id": "529949ae-7d40-4506-ab3c-9f0f5098ae38", + "universalIdentifier": "20202020-fb1b-41b2-9bb2-fabcdefabcde", "type": "DATE_TIME", "name": "createdAt", "label": "Creation date", @@ -22801,8 +24986,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -22810,14 +24995,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "1f683802-ede6-4054-b597-784762dfd125", - "universalIdentifier": "20202020-b04c-40e3-8ce3-3c4d5e6f7a8b", + "id": "c4375264-f8b9-4a91-8d1d-024b1cf51402", + "universalIdentifier": "20202020-fb1c-41b3-8cb3-abcdefabcdef", "type": "DATE_TIME", "name": "updatedAt", "label": "Last update", @@ -22829,8 +25014,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": "now", "options": null, "settings": { @@ -22838,14 +25023,14 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "671f0633-a761-49ef-ac85-7ae38455b1f4", - "universalIdentifier": "20202020-b04d-40e4-9de4-4d5e6f7a8b9c", + "id": "b1a381fa-e54e-47a4-af80-3466bfed861a", + "universalIdentifier": "20202020-fb1d-41b4-9db4-bcdefabcdefa", "type": "DATE_TIME", "name": "deletedAt", "label": "Deleted at", @@ -22857,8 +25042,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, "settings": { @@ -22866,1880 +25051,174 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "019f5646-a39f-4438-b131-301dd3b1f919", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1026da7f-7870-455f-ad58-dd1f3dc13b72", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1654da29-c7ec-4118-a326-5ae8b7aa7b6e", - "universalIdentifier": "f49ca74e-dcdf-445d-a707-3c22869b4e6c", + "id": "6e4c4f20-b929-4050-9b94-9a390c0ea077", + "universalIdentifier": "20202020-1810-4591-a93c-d0df97dca843", "type": "POSITION", "name": "position", "label": "Position", - "description": "Message Participant record position", + "description": "Workspace member position", "icon": "IconHierarchy2", "isCustom": false, "isActive": true, "isSystem": true, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "0eab176a-1247-4fb7-ae1a-6360af31e237", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"handle\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ac9d8940-15ae-4723-87a4-ea712fde6069", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "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": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "9319c745-10f2-4141-82e5-325fca20c7b7", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "80aadf45-3b25-460c-9946-fc3454071041", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "bac43f96-5ee8-4beb-a5e1-9227a740fc2f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "2756d5d9-f309-48d9-9579-31cfebce2eef", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c7696dce-461e-4549-bda6-faf7e93eaa24", - "nameSingular": "message", - "namePlural": "messages" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "bac43f96-5ee8-4beb-a5e1-9227a740fc2f", - "name": "message" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "dddf8c6f-ef47-4cc6-a5e3-b32fcff9d72f", - "name": "messageParticipants" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7465fe47-798b-4339-823d-d0873cd4763e", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "2756d5d9-f309-48d9-9579-31cfebce2eef", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7465fe47-798b-4339-823d-d0873cd4763e", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5d5578cf-69d1-4aac-aa60-a0fe65dd46ac", - "name": "messageParticipants" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "710912e3-673a-43df-a2c5-227e3fe7958f", - "universalIdentifier": "20202020-77a7-4845-99ed-1bcbb478be6f", - "type": "RELATION", - "name": "workspaceMember", - "label": "Workspace Member", - "description": "Workspace member", + "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": true, + "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workspaceMemberId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "2756d5d9-f309-48d9-9579-31cfebce2eef", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "710912e3-673a-43df-a2c5-227e3fe7958f", - "name": "workspaceMember" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "791abb34-970a-4014-a7d9-d79af18df4d7", - "name": "messageParticipants" - } - }, - "morphRelations": null - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "831b1b83-b5e1-43fc-9c8b-5bbb3c96464c", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_19ad12ae96a5d4357ff3a15ba2b", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "9563b669-9980-44ba-bee0-cd1b5c1049f0", - "fieldMetadataId": "bac43f96-5ee8-4beb-a5e1-9227a740fc2f", - "createdAt": "2026-02-25T16:13:34.266Z", - "updatedAt": "2026-02-25T16:13:34.266Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "7e60acda-62ad-4426-9de7-9c34c93afda2", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_47a5ea9e149973d6ef980bdc4f1", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "a2a12b1e-d433-48d1-9f5a-5c82639f9723", - "fieldMetadataId": "7465fe47-798b-4339-823d-d0873cd4763e", - "createdAt": "2026-02-25T16:13:34.267Z", - "updatedAt": "2026-02-25T16:13:34.267Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "8e887a14-90e9-4ed2-a365-c8bb531ea75b", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_7a56509bca48a709378017a9135", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "c6ce4089-e370-47ce-b4ca-a578d15605a8", - "fieldMetadataId": "710912e3-673a-43df-a2c5-227e3fe7958f", - "createdAt": "2026-02-25T16:13:34.267Z", - "updatedAt": "2026-02-25T16:13:34.267Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "universalIdentifier": "8b791036-8d3c-42e1-ac11-04e5f9720636", - "nameSingular": "pet", - "namePlural": "pets", - "isCustom": true, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:34.715Z", - "updatedAt": "2026-02-25T16:13:34.715Z", - "labelIdentifierFieldMetadataId": "94d8121a-738a-4710-98ef-adacc29b2c52", - "imageIdentifierFieldMetadataId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Pet", - "labelPlural": "Pets", - "description": "", - "icon": "IconCat", - "fieldsList": [ - { - "__typename": "Field", - "id": "94d8121a-738a-4710-98ef-adacc29b2c52", - "universalIdentifier": "5a367ff3-0641-4b51-9c57-7b33179474e9", - "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-25T16:13:34.715Z", - "updatedAt": "2026-02-25T16:13:34.715Z", + "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": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "1e015981-3af1-47c5-b49c-bb8720881a92", - "universalIdentifier": "6d20b212-4bb5-494f-b6b9-5e4265086728", - "type": "UUID", - "name": "id", - "label": "Id", - "description": "Id", - "icon": "Icon123", + "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-25T16:13:34.715Z", - "updatedAt": "2026-02-25T16:13:34.715Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "20c86006-a853-4ab2-9687-223c1a3d104c", - "universalIdentifier": "444aa420-5fba-4a48-89e7-bf389e70d6c8", - "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-25T16:13:34.715Z", - "updatedAt": "2026-02-25T16:13:34.715Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "004656ba-d032-4cfc-8c74-adcdc70744fc", - "universalIdentifier": "e159d0e4-3b21-4fd5-8b18-65281f51bf0d", - "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-25T16:13:34.715Z", - "updatedAt": "2026-02-25T16:13:34.715Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c3ada1d6-1fee-4b8f-a5f4-e82e7bc31a08", - "universalIdentifier": "c2fd0ae5-5089-4ae5-bff7-b095ed49bb80", - "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-25T16:13:34.715Z", - "updatedAt": "2026-02-25T16:13:34.715Z", + "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": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "1bbd715a-cb39-4764-966a-daae15eb06ad", - "universalIdentifier": "f1257747-ef36-4f80-89ae-50be6bdac6f6", - "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-25T16:13:34.715Z", - "updatedAt": "2026-02-25T16:13:34.715Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "29091843-4413-4634-810b-7203e1306679", - "universalIdentifier": "562d2b85-b7ff-42f5-b8c1-0e27112ad560", - "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-25T16:13:34.715Z", - "updatedAt": "2026-02-25T16:13:34.715Z", - "defaultValue": null, - "options": null, - "settings": { - "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", - "generatedType": "STORED" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "5f4cdd62-69c5-4901-8ca0-5fca84d97283", - "universalIdentifier": "a85f34b7-c3b9-4fa7-86f7-c2f80c186654", - "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-25T16:13:34.715Z", - "updatedAt": "2026-02-25T16:13:34.715Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "187abd8d-90b0-4f89-b3dc-016f423bc8fc", - "universalIdentifier": "2afc64d3-a3a1-47ff-8b46-de9965842a83", - "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-25T16:13:34.715Z", - "updatedAt": "2026-02-25T16:13:34.715Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4cdcc62c-aa30-4f28-a4ae-8e94a865ba9e", - "universalIdentifier": "c6ca8b6b-62a4-4745-9cb3-0d4d93c65d76", - "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-25T16:13:34.716Z", - "updatedAt": "2026-02-25T16:13:34.716Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4cdcc62c-aa30-4f28-a4ae-8e94a865ba9e", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6fb62c82-dc35-4e59-bc33-5abade3bd55d", - "universalIdentifier": "d956c256-5d85-4a94-b179-a0b5cd897867", - "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-25T16:13:34.716Z", - "updatedAt": "2026-02-25T16:13:34.716Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6fb62c82-dc35-4e59-bc33-5abade3bd55d", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3dfeec14-0d40-4a44-b8d5-66a5cb0ed985", - "name": "pet" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d0b9d082-e6fc-4788-9993-18dd50296bd1", - "universalIdentifier": "4f1ef146-ce1b-4b86-9685-a0dbfad6f89c", - "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-25T16:13:34.716Z", - "updatedAt": "2026-02-25T16:13:34.716Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d0b9d082-e6fc-4788-9993-18dd50296bd1", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "12247923-3e01-4917-8386-64164fd200dc", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "a835175b-2403-4422-8fb0-8bdd59bccccf", - "universalIdentifier": "a05fee72-d50f-4a49-88fb-056003e69870", - "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-25T16:13:34.716Z", - "updatedAt": "2026-02-25T16:13:34.716Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a835175b-2403-4422-8fb0-8bdd59bccccf", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "018f73d3-5212-467d-95b6-986772b517b0", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2049d177-58f6-424d-99ad-4e9b6fc5f74a", - "universalIdentifier": "3df4f72c-224f-412e-ad9e-15871070c6d5", - "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-25T16:13:34.716Z", - "updatedAt": "2026-02-25T16:13:34.716Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "715103ac-24fe-4406-920c-66acd3f24a84", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "2049d177-58f6-424d-99ad-4e9b6fc5f74a", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", - "name": "target" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d1a3ca95-1fc9-4653-9087-1f7527b33212", - "universalIdentifier": "476717de-c308-4c72-92da-836dbcc90dc0", - "type": "SELECT", - "name": "species", - "label": "Species", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": [ - { - "id": "09184b6a-71b3-4d89-8668-00568fec5dc3", - "color": "blue", - "label": "Dog", - "value": "DOG", - "position": 0 - }, - { - "id": "5c31d08c-92fd-41ed-bf9c-b0b68e76903c", - "color": "red", - "label": "Cat", - "value": "CAT", - "position": 1 - }, - { - "id": "fb8dd0dd-69c5-497f-a84c-cf2788e399be", - "color": "green", - "label": "Bird", - "value": "BIRD", - "position": 2 - }, - { - "id": "4fad3ec1-8e18-4c2e-917f-ee21d672e96f", - "color": "yellow", - "label": "Fish", - "value": "FISH", - "position": 3 - }, - { - "id": "67f0536a-70e5-4a10-a01e-e71b8163933c", - "color": "purple", - "label": "Rabbit", - "value": "RABBIT", - "position": 4 - }, - { - "id": "6a650ff9-4ae2-4f85-be39-bfb1fdf19550", - "color": "orange", - "label": "Hamster", - "value": "HAMSTER", - "position": 5 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6ca86a6b-06aa-4a4f-8cc9-169993b8ab4c", - "universalIdentifier": "5e0489c1-c6fc-4842-b05b-dbf81aa1258d", - "type": "MULTI_SELECT", - "name": "traits", - "label": "Traits", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": [ - { - "id": "86e2e7ea-afb6-436e-be42-9a15e4dbbebd", - "color": "blue", - "label": "Playful", - "value": "PLAYFUL", - "position": 0 - }, - { - "id": "7046ceaa-f485-4418-881e-e8c4175536a1", - "color": "red", - "label": "Friendly", - "value": "FRIENDLY", - "position": 1 - }, - { - "id": "a96bc31c-a308-4207-b071-85c6601d5aa3", - "color": "green", - "label": "Protective", - "value": "PROTECTIVE", - "position": 2 - }, - { - "id": "6c7457ca-fcd5-4849-82e6-336887fa0285", - "color": "yellow", - "label": "Shy", - "value": "SHY", - "position": 3 - }, - { - "id": "777ad0d3-824d-46cf-8d2b-563c4c210c58", - "color": "purple", - "label": "Brave", - "value": "BRAVE", - "position": 4 - }, - { - "id": "79ce5300-7e6a-4cb1-bafb-badc816c4b65", - "color": "orange", - "label": "Curious", - "value": "CURIOUS", - "position": 5 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "929c46e6-ccda-42eb-a486-09b0128d04e8", - "universalIdentifier": "f4c11e19-90d1-495c-8760-35bc7aad1e8c", - "type": "TEXT", - "name": "comments", - "label": "Comments", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "2a6c297e-0cfd-44d5-a04c-e2925ae8e7de", - "universalIdentifier": "2b5ef83a-ab35-449e-993f-bd8365b34d88", + "id": "30068787-bd34-4b68-bbdf-a9fe8f7fedf2", + "universalIdentifier": "20202020-92d0-1d7f-a126-25ededa6b142", "type": "NUMBER", - "name": "age", - "label": "Age", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c306e5a3-8033-457c-aa3f-9b582a4cf082", - "universalIdentifier": "50835aa6-8dff-485a-a1e6-eae5f8d63ccd", - "type": "ADDRESS", - "name": "location", - "label": "Location", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fee648ae-cea8-4d77-b3fd-bb1880e66906", - "universalIdentifier": "eeeb25ef-e350-4020-9e97-54d761b10ca3", - "type": "PHONES", - "name": "vetPhone", - "label": "Vet phone", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "ca8c34a3-5539-43b4-bbf0-019f1b88c3d2", - "universalIdentifier": "e1752639-d41f-45d0-aaac-cc4e2316c374", - "type": "EMAILS", - "name": "vetEmail", - "label": "Vet email", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "69dd8caa-ca0c-4641-9328-eaaae9e05dc0", - "universalIdentifier": "0f42f451-67cf-45c8-ab4c-d6a79d6ab209", - "type": "DATE", - "name": "birthday", - "label": "Birthday", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b8922e3f-2573-4b13-bbd8-da024a809e69", - "universalIdentifier": "811d8e37-0f58-467b-90e3-b333b287ac71", - "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-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "0f8b5b9a-7af0-46dd-b0a0-3f45544c6a6e", - "universalIdentifier": "5ceb58f5-ae29-4c1f-a564-90d28f364c47", - "type": "LINKS", - "name": "pictures", - "label": "Pictures", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4f2b2c47-1246-4b71-b10f-db18dcbbd149", - "universalIdentifier": "b2feea82-ce70-4a48-975f-dd69c404dffb", - "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-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "d17571a2-7b86-4509-83f0-48b19b685913", - "universalIdentifier": "cd8aa34b-bd37-4f19-b2bc-e7f43e3a5ea3", - "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-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "be51db60-469d-4bec-b3e1-d5350d0003e1", - "universalIdentifier": "b205930a-2028-42c9-9785-b48a07a2e07a", - "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-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": [ - { - "id": "cf6cfecb-517f-43ce-800e-dfb17b0571b2", - "label": "1", - "value": "RATING_1", - "position": 0 - }, - { - "id": "78b38db2-cb80-409d-bc33-1008f8ef2691", - "label": "2", - "value": "RATING_2", - "position": 1 - }, - { - "id": "1e54938c-b28c-4c4e-943e-470a2ff97552", - "label": "3", - "value": "RATING_3", - "position": 2 - }, - { - "id": "20ca2b3b-eeca-4f58-b7ab-313f8e33ecdc", - "label": "4", - "value": "RATING_4", - "position": 3 - }, - { - "id": "611a04ac-2a68-466d-8378-9ddd5cb972f5", - "label": "5", - "value": "RATING_5", - "position": 4 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "14de15f3-ec68-4c9c-b883-e9e8eb391eab", - "universalIdentifier": "f9cac735-130c-48f3-a232-a563740d813d", - "type": "RICH_TEXT", - "name": "bio", - "label": "Bio", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "67a995c3-4d25-4b62-bb7a-904f37021c87", - "universalIdentifier": "4f7668f5-2c53-45e1-8067-5379d6b4ef97", - "type": "ARRAY", - "name": "interestingFacts", - "label": "Interesting facts", - "description": "", - "icon": "", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "47c7062a-6ae8-4dad-8cff-77a2b1c3c660", - "universalIdentifier": "db4819bc-3d5f-4cf0-8786-da09e1a6385c", - "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-25T16:13:34.972Z", - "updatedAt": "2026-02-25T16:13:34.972Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "dfcf53fb-7924-4214-b63e-ff754575a435", - "universalIdentifier": "04ea9928-166c-4ffc-80f6-b8b1c8af3748", - "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-25T16:13:36.015Z", - "updatedAt": "2026-02-25T16:13:36.215Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY", - "junctionTargetFieldId": "1981b8d6-d7f0-4fcb-9502-d9ba7721d896" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "dfcf53fb-7924-4214-b63e-ff754575a435", - "name": "caretakers" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "57bc0677-2548-45d8-852e-815c4e8f8f23", - "name": "pet" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "408a37d2-1d63-4508-a3c6-8a3868ccb7c5", - "universalIdentifier": "853f9c14-63f3-47e7-8d61-de2be78f797d", - "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-25T16:13:35.679Z", - "updatedAt": "2026-02-25T16:13:35.679Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "polymorphicOwnerSurveyResultId" - }, - "isLabelSyncedWithName": false, - "morphId": "7357d10a-e493-4ddb-977e-b3db066ee006", - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": [ - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "408a37d2-1d63-4508-a3c6-8a3868ccb7c5", - "name": "polymorphicOwner" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6b042937-f18c-4314-bd8d-a265df54510b", - "name": "ownedPets" - } - }, - { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "f0652aed-c58e-4f47-817c-357fd8f6116a", - "name": "polymorphicOwner" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "fc7141be-8724-4b7b-bfbc-d8d10833a307", - "name": "ownedPets" - } - } - ] - }, - { - "__typename": "Field", - "id": "0f4285cc-f2ba-4c49-97dc-874a1f084c99", - "universalIdentifier": "b004bcf8-c8d1-4921-8957-20e91c625a53", - "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-25T16:13:35.679Z", - "updatedAt": "2026-02-25T16:13:35.679Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "morphId": "9ecbd6d6-e855-419f-ae8f-e5de4e4d73eb", - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": null, - "morphRelations": [ - { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "0f4285cc-f2ba-4c49-97dc-874a1f084c99", - "name": "polymorphicHelper" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "778a941c-b2f5-49ca-8b39-584fc1154ecd", - "name": "helpedPets" - } - }, - { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e1f99837-67b7-4b23-9507-1d5f58436209", - "name": "polymorphicHelper" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "854b1115-3bd1-4017-b92c-bad09504a29b", - "name": "helpedPets" - } - } - ] - } - ], - "indexMetadataList": [ - { - "__typename": "Index", - "id": "7c9311b2-d5c6-4c0f-9262-c88a8d9afd7c", - "createdAt": "2026-02-25T16:13:34.716Z", - "updatedAt": "2026-02-25T16:13:34.716Z", - "name": "IDX_82c02a6c94da4f260020dfb54b9", - "indexWhereClause": null, - "indexType": "GIN", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "70ac671a-355e-48b2-ad93-a8737740dd65", - "fieldMetadataId": "29091843-4413-4634-810b-7203e1306679", - "createdAt": "2026-02-25T16:13:34.762Z", - "updatedAt": "2026-02-25T16:13:34.762Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "4a7e0260-786e-40a3-8051-1909e624b0e2", - "createdAt": "2026-02-25T16:13:35.679Z", - "updatedAt": "2026-02-25T16:13:35.679Z", - "name": "IDX_4dda151ad87a8e853437e6a9905", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "41e966b7-6572-4a6c-bc9c-e0e8562278a6", - "fieldMetadataId": "408a37d2-1d63-4508-a3c6-8a3868ccb7c5", - "createdAt": "2026-02-25T16:13:35.702Z", - "updatedAt": "2026-02-25T16:13:35.702Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "b118328a-fcf4-4e66-b349-29f28df58c8a", - "createdAt": "2026-02-25T16:13:35.679Z", - "updatedAt": "2026-02-25T16:13:35.679Z", - "name": "IDX_0658daa5af230af11406a847c00", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": true, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "48576b64-2420-4634-a2f1-10b85e70976f", - "fieldMetadataId": "f0652aed-c58e-4f47-817c-357fd8f6116a", - "createdAt": "2026-02-25T16:13:35.706Z", - "updatedAt": "2026-02-25T16:13:35.706Z", - "order": 0 - } - ] - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "universalIdentifier": "20202020-ab56-4e05-92a3-e2414a499860", - "nameSingular": "favorite", - "namePlural": "favorites", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "labelIdentifierFieldMetadataId": "3cd06a55-9ef0-43aa-aefd-83cd79486900", - "imageIdentifierFieldMetadataId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Favorite", - "labelPlural": "Favorites", - "description": "A favorite", - "icon": "IconHeart", - "fieldsList": [ - { - "__typename": "Field", - "id": "3cd06a55-9ef0-43aa-aefd-83cd79486900", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "f0703240-0953-4c94-b4d8-e558227c15dd", - "universalIdentifier": "20202020-f01b-4092-9b92-eeffaabbccdd", - "type": "DATE_TIME", - "name": "createdAt", - "label": "Creation date", - "description": "Creation date", + "name": "calendarStartDay", + "label": "Start of the week", + "description": "User's preferred start day of the week", "icon": "IconCalendar", "isCustom": false, "isActive": true, @@ -24747,165 +25226,240 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "defaultValue": 7, "options": null, "settings": { - "displayFormat": "RELATIVE" + "dataType": "int" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "3e7a89d3-a388-4216-ae18-6b874b826f31", - "universalIdentifier": "20202020-f01c-4093-8c93-ffaabbccddee", - "type": "DATE_TIME", - "name": "updatedAt", - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock", + "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "7e78a20b-53de-47f1-a9b3-bbe5215b64b5", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", "defaultValue": null, "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, + "settings": null, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "95b4749d-257b-4cf8-bc52-226ece5ab92a", - "universalIdentifier": "6440dc3d-fa50-49cc-abd3-98eeccd79288", - "type": "ACTOR", - "name": "createdBy", - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa", + "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "3c7d2635-94e5-4337-b44f-f209da4b4da1", - "universalIdentifier": "6c117b1a-0470-499b-8fcb-d9059eafbd43", - "type": "ACTOR", - "name": "updatedBy", - "label": "Updated by", - "description": "The workspace member who last updated the record", - "icon": "IconUserCircle", + "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "workspaceMemberId": null - }, - "options": null, + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "d7741163-c30a-42d7-a6a6-9a2c31bb4db1", - "universalIdentifier": "20202020-dd26-42c6-8c3c-2a7598c204f6", - "type": "POSITION", - "name": "position", - "label": "Position", - "description": "Favorite position", - "icon": "IconHierarchy2", + "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": 0, - "options": null, + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": null, "morphRelations": null }, { "__typename": "Field", - "id": "344e0eab-6723-4b08-8075-26a3f7658357", - "universalIdentifier": "cbb27ea1-5cf8-4fed-9e0a-e4152815bd6e", + "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", @@ -24914,922 +25468,556 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isCustom": false, "isActive": true, "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "4303b6e9-b86a-466c-af85-d1b985b0ea27", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": null, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "39e99ea0-e48b-4c70-8fdd-26ce22a3843f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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" + "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": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "498e2739-e587-4d14-b785-3495d0d58058", + "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-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": "1bfd9234-3d0b-4439-a001-a30ca64e3e44", + "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-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": "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": "MANY_TO_ONE", + "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" + "id": "047105f3-62d8-4c46-ba31-67411fd98f94", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" }, "targetObjectMetadata": { "__typename": "Object", - "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "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": "39e99ea0-e48b-4c70-8fdd-26ce22a3843f", - "name": "company" + "id": "6b3bb88a-6986-423d-a982-d15e4443b9d0", + "name": "accountOwnerForCompanies" }, "targetFieldMetadata": { "__typename": "Field", - "id": "7f7d0be5-e54b-4251-a396-b7c9ce21b5d6", - "name": "favorites" + "id": "1c659dd6-4c64-427b-96f5-0c56b16f7b52", + "name": "accountOwner" } }, "morphRelations": null }, { "__typename": "Field", - "id": "5c3a1d65-0ea4-4721-95af-2c1280d3f150", - "universalIdentifier": "20202020-6ef9-45e4-b440-cc986f687c91", + "id": "98fd3d82-2c97-41dd-90f8-61836ee90223", + "universalIdentifier": "20202020-e322-4bde-a525-727079b4a100", "type": "RELATION", - "name": "dashboard", - "label": "Dashboard", - "description": "Favorite dashboard", - "icon": "IconLayoutDashboard", + "name": "connectedAccounts", + "label": "Connected accounts", + "description": "Connected accounts", + "icon": "IconAt", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, - "isNullable": true, + "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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" + "relationType": "ONE_TO_MANY" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", - "type": "MANY_TO_ONE", + "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "58a0f417-6dee-4c61-b11d-a041dbe3d839", - "nameSingular": "dashboard", - "namePlural": "dashboards" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5c3a1d65-0ea4-4721-95af-2c1280d3f150", - "name": "dashboard" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "814c4758-671b-4922-89c2-b1b7fcd81abd", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "c0c5dc99-58c5-4b1f-aec5-0c5ea4d5b08c", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "forWorkspaceMemberId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", + "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": "c0c5dc99-58c5-4b1f-aec5-0c5ea4d5b08c", - "name": "forWorkspaceMember" + "id": "98fd3d82-2c97-41dd-90f8-61836ee90223", + "name": "connectedAccounts" }, "targetFieldMetadata": { "__typename": "Field", - "id": "55698c3c-1908-4c5d-b881-e5f7ebe67623", - "name": "favorites" + "id": "c40ba3fc-eaf4-404c-8acd-8d391af1961c", + "name": "accountOwner" } }, "morphRelations": null }, { "__typename": "Field", - "id": "a281ba89-d7b7-4194-826d-57411f690f66", - "universalIdentifier": "20202020-c428-4f40-b6f3-86091511c41c", + "id": "1dccd03c-2a89-467a-8291-406d67cb8672", + "universalIdentifier": "20202020-f3c1-4faf-b343-cf7681038757", "type": "RELATION", - "name": "person", - "label": "Person", - "description": "Favorite person", - "icon": "IconUser", + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the workspace member", + "icon": "IconHeart", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, - "isNullable": true, + "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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" + "relationType": "ONE_TO_MANY" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", - "type": "MANY_TO_ONE", + "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" + "id": "047105f3-62d8-4c46-ba31-67411fd98f94", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" }, "targetObjectMetadata": { "__typename": "Object", - "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", - "nameSingular": "person", - "namePlural": "people" + "id": "7d4a6af5-536c-45af-8040-224ee553ce05", + "nameSingular": "favorite", + "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "a281ba89-d7b7-4194-826d-57411f690f66", - "name": "person" + "id": "1dccd03c-2a89-467a-8291-406d67cb8672", + "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "372883cb-ee54-4ec7-b158-bd09f5a3e86c", - "name": "favorites" + "id": "e56f7c0a-383a-4696-87bf-a2517f815a1c", + "name": "forWorkspaceMember" } }, "morphRelations": null }, { "__typename": "Field", - "id": "44bbdd2a-03d6-498c-bfc8-385617638fce", - "universalIdentifier": "20202020-dabc-48e1-8318-2781a2b32aa2", + "id": "bc7e17df-a3ae-442f-beea-40a126f55a4c", + "universalIdentifier": "20202020-8f99-48bc-a5eb-edd33dd54188", "type": "RELATION", - "name": "opportunity", - "label": "Opportunity", - "description": "Favorite opportunity", + "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", + "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": "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" + } + }, + "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", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, - "isNullable": true, + "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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" + "relationType": "ONE_TO_MANY" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", - "type": "MANY_TO_ONE", + "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" + "id": "047105f3-62d8-4c46-ba31-67411fd98f94", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" }, "targetObjectMetadata": { "__typename": "Object", - "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", + "id": "44e586bb-74a8-481c-b734-514f6030581e", "nameSingular": "opportunity", "namePlural": "opportunities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "44bbdd2a-03d6-498c-bfc8-385617638fce", - "name": "opportunity" + "id": "b3775628-8775-4338-84f4-0612fc30efd3", + "name": "ownedOpportunities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "9556348a-b5fe-48cc-ac2e-5daedad93316", - "name": "favorites" + "id": "3cc624b4-d2c3-4a72-b964-cee9c535846a", + "name": "owner" } }, "morphRelations": null }, { "__typename": "Field", - "id": "829b2346-e4be-4de5-8b73-87ebf3b173fd", - "universalIdentifier": "20202020-b11b-4dc8-999a-6bd0a947b463", + "id": "be86ea7a-d64d-4266-9412-cc9d51a5f37e", + "universalIdentifier": "20202020-61dc-4a1c-99e8-38ebf8d2bbeb", "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "ffd13062-c19a-4904-a524-6c8560da9be8", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "829b2346-e4be-4de5-8b73-87ebf3b173fd", - "name": "workflow" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a0d71906-aa70-46e0-a97e-74332c080fd9", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "27f96f6a-8fd9-4f0d-919e-7337c7b53a51", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowVersionId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "27f96f6a-8fd9-4f0d-919e-7337c7b53a51", - "name": "workflowVersion" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4c39761e-55a0-46d4-98da-45a451b676c3", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "910d2994-fe34-4a7f-bbd7-a3fbcfb6dde9", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowRunId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "678a973d-c1ae-4b73-86c4-530b5df455e9", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "910d2994-fe34-4a7f-bbd7-a3fbcfb6dde9", - "name": "workflowRun" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ce7c3819-7bd0-434a-b15f-1f3c923c7776", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "1343c0d7-85c3-4cb9-b04f-47caa829733d", - "universalIdentifier": "20202020-1b1b-4b3b-8b1b-7f8d6a1d7d5c", - "type": "RELATION", - "name": "task", - "label": "Task", - "description": "Favorite task", + "name": "assignedTasks", + "label": "Assigned tasks", + "description": "Tasks assigned to the workspace member", "icon": "IconCheckbox", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": true, - "isNullable": true, + "isNullable": false, "isUnique": false, - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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" + "relationType": "ONE_TO_MANY" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", - "type": "MANY_TO_ONE", + "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" + "id": "047105f3-62d8-4c46-ba31-67411fd98f94", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" }, "targetObjectMetadata": { "__typename": "Object", - "id": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", + "id": "ac37078e-8b45-4efc-af7d-7060c1116e33", "nameSingular": "task", "namePlural": "tasks" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "1343c0d7-85c3-4cb9-b04f-47caa829733d", - "name": "task" + "id": "be86ea7a-d64d-4266-9412-cc9d51a5f37e", + "name": "assignedTasks" }, "targetFieldMetadata": { "__typename": "Field", - "id": "33e1ff69-2cef-44c4-bf22-5d41443957b4", - "name": "favorites" + "id": "f43603d7-d5d2-418a-93ba-78711bd2b19c", + "name": "assignee" } }, "morphRelations": null }, { "__typename": "Field", - "id": "327fc9ce-c539-4e92-863d-100cea3cdc7b", - "universalIdentifier": "20202020-1f25-43fe-8b00-af212fdde824", + "id": "4d18289b-8994-4556-9e35-3789a405dbd6", + "universalIdentifier": "20202020-e15b-47b8-94fe-8200e3c66615", "type": "RELATION", - "name": "note", - "label": "Note", - "description": "Favorite note", - "icon": "IconNotes", + "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", + "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" + "relationType": "ONE_TO_MANY" }, "isLabelSyncedWithName": false, "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "applicationId": "6b837484-0b32-4024-87d3-99d65649fb19", "relation": { "__typename": "Relation", - "type": "MANY_TO_ONE", + "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" + "id": "047105f3-62d8-4c46-ba31-67411fd98f94", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" }, "targetObjectMetadata": { "__typename": "Object", - "id": "7e2a0fff-cb81-4990-a189-69c4c4119894", - "nameSingular": "note", - "namePlural": "notes" + "id": "e3fcfcd8-c1cc-4f25-b124-ab92f0715df9", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "327fc9ce-c539-4e92-863d-100cea3cdc7b", - "name": "note" + "id": "4d18289b-8994-4556-9e35-3789a405dbd6", + "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "3e16a429-d2ef-409d-916d-575164187634", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "dead44da-970d-4d4c-9ef5-179916e5ff9f", - "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-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "favoriteFolderId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c8e59698-2d8e-49a3-97d0-e4dcea772245", - "nameSingular": "favoriteFolder", - "namePlural": "favoriteFolders" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "dead44da-970d-4d4c-9ef5-179916e5ff9f", - "name": "favoriteFolder" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "9025c52e-ae99-4d49-96e3-e98c06d5538b", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "b1c076f1-ace9-4225-a934-f75fe5ec29ff", - "universalIdentifier": "4c2230a3-e454-4749-b37d-1776fd310fcc", - "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-25T16:13:34.508Z", - "updatedAt": "2026-02-25T16:13:34.508Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "rocketId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b1c076f1-ace9-4225-a934-f75fe5ec29ff", - "name": "rocket" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d32d7fde-35dc-4e05-acf9-21ec508a0ab1", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "3dfeec14-0d40-4a44-b8d5-66a5cb0ed985", - "universalIdentifier": "bb91a636-52d4-4f25-a715-93e110113f07", - "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-25T16:13:34.716Z", - "updatedAt": "2026-02-25T16:13:34.716Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "petId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3dfeec14-0d40-4a44-b8d5-66a5cb0ed985", - "name": "pet" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6fb62c82-dc35-4e59-bc33-5abade3bd55d", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "fbae6daa-2d54-42aa-9891-e42f4a1b0e3a", - "universalIdentifier": "57e61faa-a3a1-4537-8e2b-f91e029c0c91", - "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-25T16:13:35.060Z", - "updatedAt": "2026-02-25T16:13:35.060Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "surveyResultId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "313b29f0-f5c3-43ec-908d-e66fa583317b", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "fbae6daa-2d54-42aa-9891-e42f4a1b0e3a", - "name": "surveyResult" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "aa8a16a9-6b28-4dec-a715-98d46b3a852d", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "6ac814ad-c314-4f68-9ee7-58f787fbdb69", - "universalIdentifier": "6bafdedf-1608-4dd3-8645-f81b7f27ddd7", - "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-25T16:13:35.241Z", - "updatedAt": "2026-02-25T16:13:35.241Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "employmentHistoryId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", - "nameSingular": "employmentHistory", - "namePlural": "employmentHistories" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6ac814ad-c314-4f68-9ee7-58f787fbdb69", - "name": "employmentHistory" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "53bf9a92-db13-496d-944e-8fb9b865c7a1", - "name": "favorites" - } - }, - "morphRelations": null - }, - { - "__typename": "Field", - "id": "438d2dc2-7aee-4fb8-8e61-d8f0ebb7ce40", - "universalIdentifier": "ca3cee42-6312-40a0-a7b0-e31a6170fe92", - "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-25T16:13:35.370Z", - "updatedAt": "2026-02-25T16:13:35.370Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "petCareAgreementId" - }, - "isLabelSyncedWithName": false, - "morphId": null, - "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0591ea73-a468-4170-8f44-90269f7fa180", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", - "nameSingular": "petCareAgreement", - "namePlural": "petCareAgreements" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "438d2dc2-7aee-4fb8-8e61-d8f0ebb7ce40", - "name": "petCareAgreement" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "90fd38bb-3b8e-4b00-96d8-5ee7d9a60144", - "name": "favorites" + "id": "bda47d4a-59e9-459f-a20e-a61c39836fa4", + "name": "workspaceMember" } }, "morphRelations": null @@ -25838,231 +26026,42 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "indexMetadataList": [ { "__typename": "Index", - "id": "f27caa0b-b8a3-475a-a548-4160f34ec383", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_e6a755f59ac856c2af85d0b1857", + "id": "f7f7249a-b388-4aa0-9123-51d2e64e378d", + "createdAt": "2026-02-26T11:55:15.839Z", + "updatedAt": "2026-02-26T11:55:15.839Z", + "name": "IDX_UNIQUE_39954942ffa78c957b5dee47739", "indexWhereClause": null, "indexType": "BTREE", - "isUnique": false, + "isUnique": true, "isCustom": false, "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "0de13c75-a6ea-4aa5-90a7-2387d9c59ba4", - "fieldMetadataId": "c0c5dc99-58c5-4b1f-aec5-0c5ea4d5b08c", - "createdAt": "2026-02-25T16:13:34.247Z", - "updatedAt": "2026-02-25T16:13:34.247Z", + "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": "02db9087-bacb-4cb1-b3da-739fd2ad0a22", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_c6a04c62f1b835de81b87c8d5cb", + "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": "BTREE", + "indexType": "GIN", "isUnique": false, "isCustom": false, "indexFieldMetadataList": [ { "__typename": "IndexField", - "id": "97b968d7-eb30-40c2-be9c-46f0848dada1", - "fieldMetadataId": "a281ba89-d7b7-4194-826d-57411f690f66", - "createdAt": "2026-02-25T16:13:34.249Z", - "updatedAt": "2026-02-25T16:13:34.249Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "de34b32a-61b2-48b0-88b1-b8e92b37334a", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_f54929018ffb0a56df35a15ee1a", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "356dc410-f775-4a02-a2f4-8039a98fecd3", - "fieldMetadataId": "39e99ea0-e48b-4c70-8fdd-26ce22a3843f", - "createdAt": "2026-02-25T16:13:34.250Z", - "updatedAt": "2026-02-25T16:13:34.250Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "4cd61fa2-48ee-45cd-90ed-aa3f35e657c4", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_03c5b5ea0ebe0cdd54c16f01cd4", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "8041f081-ff0b-4de8-912c-74ef47c8a696", - "fieldMetadataId": "dead44da-970d-4d4c-9ef5-179916e5ff9f", - "createdAt": "2026-02-25T16:13:34.251Z", - "updatedAt": "2026-02-25T16:13:34.251Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "2959e5ad-a177-4893-87a4-44f7e8f2c617", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_2ef95462446ad1fad48894bd459", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "1db91901-0814-4d01-9a2f-ad90f4fd97f2", - "fieldMetadataId": "44bbdd2a-03d6-498c-bfc8-385617638fce", - "createdAt": "2026-02-25T16:13:34.252Z", - "updatedAt": "2026-02-25T16:13:34.252Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "77dc3a37-fb23-42bb-b734-69ded27a8001", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_7b93282d4e9b5a9851d07829996", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "9fa7c8a7-d73f-47cd-99bf-99b012aec2e0", - "fieldMetadataId": "829b2346-e4be-4de5-8b73-87ebf3b173fd", - "createdAt": "2026-02-25T16:13:34.253Z", - "updatedAt": "2026-02-25T16:13:34.253Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "3dbc86c2-7ee8-42c8-9c3a-4208c4f19ffe", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_352fe024686b6bcf5e7e1b65449", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "87cbc8cf-8d7e-49a1-b404-b0cdb877d106", - "fieldMetadataId": "27f96f6a-8fd9-4f0d-919e-7337c7b53a51", - "createdAt": "2026-02-25T16:13:34.254Z", - "updatedAt": "2026-02-25T16:13:34.254Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "85971fa3-b4d9-4444-a2c5-5af39b61908f", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_17f260b2397f21011117688a00c", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "b814639c-ddea-4d7e-98be-b1166d5755d1", - "fieldMetadataId": "910d2994-fe34-4a7f-bbd7-a3fbcfb6dde9", - "createdAt": "2026-02-25T16:13:34.255Z", - "updatedAt": "2026-02-25T16:13:34.255Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "928835bf-6957-4a36-a002-70d499fe1146", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_f08a4bc49e7422db941d7c1be50", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "d8f3344b-47ef-44a1-99f4-623808fbadcb", - "fieldMetadataId": "1343c0d7-85c3-4cb9-b04f-47caa829733d", - "createdAt": "2026-02-25T16:13:34.256Z", - "updatedAt": "2026-02-25T16:13:34.256Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "d0d08316-c696-4bbb-b98d-e1d75868550a", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_36f8b958533baaeabdde3479b31", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "ffb09875-3da5-410d-8102-c83790e5b4c2", - "fieldMetadataId": "327fc9ce-c539-4e92-863d-100cea3cdc7b", - "createdAt": "2026-02-25T16:13:34.257Z", - "updatedAt": "2026-02-25T16:13:34.257Z", - "order": 0 - } - ] - }, - { - "__typename": "Index", - "id": "b548f7be-a678-4895-a5c2-88e6934db30e", - "createdAt": "2026-02-25T16:13:33.845Z", - "updatedAt": "2026-02-25T16:13:33.845Z", - "name": "IDX_d85e3f572ec0d3c406cc58f79af", - "indexWhereClause": null, - "indexType": "BTREE", - "isUnique": false, - "isCustom": false, - "indexFieldMetadataList": [ - { - "__typename": "IndexField", - "id": "b65bd812-e244-46e0-8a84-7763c16adc12", - "fieldMetadataId": "5c3a1d65-0ea4-4721-95af-2c1280d3f150", - "createdAt": "2026-02-25T16:13:34.257Z", - "updatedAt": "2026-02-25T16:13:34.257Z", + "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", "order": 0 } ] diff --git a/packages/twenty-front/src/testing/mock-data/workflow.ts b/packages/twenty-front/src/testing/mock-data/workflow.ts index 6e027cd156..ee3469ec51 100644 --- a/packages/twenty-front/src/testing/mock-data/workflow.ts +++ b/packages/twenty-front/src/testing/mock-data/workflow.ts @@ -1,29 +1,10 @@ import { type RecordGqlConnection } from '@/object-record/graphql/types/RecordGqlConnection'; -export const getWorkflowMock = () => { - return workflowQueryResult.workflows.edges[0].node; -}; - -export const getWorkflowVersionsMock = () => { - return { - ...getWorkflowMock().versions, - __typename: 'WorkflowVersionConnection', - totalCount: 1, - pageInfo: { - __typename: 'PageInfo', - hasNextPage: false, - hasPreviousPage: false, - startCursor: - 'eyJjcmVhdGVkQXQiOiIyMDI0LTA5LTE5VDEwOjEwOjA0LjcyNVoiLCJpZCI6ImY2MTg4NDNhLTI2YmUtNGE1NC1hNjBmLWY0Y2U4OGE1OTRmMCJ9', - endCursor: - 'eyJjcmVhdGVkQXQiOiIyMDI0LTA5LTE5VDEwOjEwOjA0LjcyNVoiLCJpZCI6ImY2MTg4NDNhLTI2YmUtNGE1NC1hNjBmLWY0Y2U4OGE1OTRmMCJ9', - }, - }; -}; - -export const getWorkflowNodeIdMock = () => { - return getWorkflowMock().versions.edges[0].node.steps[0].id; -}; +// Keep function wrappers as aliases for backward compatibility — they just +// return the pre-computed constants so callers can be migrated gradually. +export const getWorkflowMock = () => mockedWorkflow; +export const getWorkflowVersionsMock = () => mockedWorkflowVersions; +export const getWorkflowNodeIdMock = () => mockedWorkflowNodeId; export const MOCKED_STEP_ID = '04d5f3bf-9714-400d-ba27-644006a5fb1b'; @@ -1552,3 +1533,24 @@ export const workflowQueryResult = { ], }, } satisfies { workflows: RecordGqlConnection }; + +export const mockedWorkflow = workflowQueryResult.workflows.edges[0].node; + +export const mockedWorkflowVersion = mockedWorkflow.versions.edges[0].node; + +export const mockedWorkflowVersions = { + ...mockedWorkflow.versions, + __typename: 'WorkflowVersionConnection' as const, + totalCount: 1, + pageInfo: { + __typename: 'PageInfo' as const, + hasNextPage: false, + hasPreviousPage: false, + startCursor: + 'eyJjcmVhdGVkQXQiOiIyMDI0LTA5LTE5VDEwOjEwOjA0LjcyNVoiLCJpZCI6ImY2MTg4NDNhLTI2YmUtNGE1NC1hNjBmLWY0Y2U4OGE1OTRmMCJ9', + endCursor: + 'eyJjcmVhdGVkQXQiOiIyMDI0LTA5LTE5VDEwOjEwOjA0LjcyNVoiLCJpZCI6ImY2MTg4NDNhLTI2YmUtNGE1NC1hNjBmLWY0Y2U4OGE1OTRmMCJ9', + }, +}; + +export const mockedWorkflowNodeId = mockedWorkflowVersion.steps[0].id; diff --git a/packages/twenty-front/src/testing/utils/generateMockRecordConnection.ts b/packages/twenty-front/src/testing/utils/generateMockRecordConnection.ts new file mode 100644 index 0000000000..18957d860e --- /dev/null +++ b/packages/twenty-front/src/testing/utils/generateMockRecordConnection.ts @@ -0,0 +1,28 @@ +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'; + +export const generateMockRecordConnection = ({ + objectNameSingular, + records, + computeReferences = false, +}: { + objectNameSingular: string; + records: Record[]; + computeReferences?: boolean; +}) => { + const objectMetadataItem = + getMockObjectMetadataItemOrThrow(objectNameSingular); + + const prefilledRecords = records.map((recordInput) => + generateMockRecord({ objectNameSingular, input: recordInput }), + ); + + return getRecordConnectionFromRecords({ + objectMetadataItems: generatedMockObjectMetadataItems, + objectMetadataItem, + records: prefilledRecords, + computeReferences, + }); +}; diff --git a/packages/twenty-front/src/testing/jest/generateEmptyJestRecordNode.ts b/packages/twenty-front/src/testing/utils/generateMockRecordNode.ts similarity index 65% rename from packages/twenty-front/src/testing/jest/generateEmptyJestRecordNode.ts rename to packages/twenty-front/src/testing/utils/generateMockRecordNode.ts index d7d29fba70..6fa4d5f012 100644 --- a/packages/twenty-front/src/testing/jest/generateEmptyJestRecordNode.ts +++ b/packages/twenty-front/src/testing/utils/generateMockRecordNode.ts @@ -1,37 +1,44 @@ 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 { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; -type GenerateEmptyJestRecordNodeArgs = { - objectNameSingular: string; - input: Record; - withDepthOneRelation?: boolean; -}; -export const generateEmptyJestRecordNode = ({ +export const generateMockRecord = ({ objectNameSingular, input, - withDepthOneRelation = false, -}: GenerateEmptyJestRecordNodeArgs) => { +}: { + objectNameSingular: string; + input: Record; +}): ObjectRecord => { const objectMetadataItem = getMockObjectMetadataItemOrThrow(objectNameSingular); - if (!objectMetadataItem) { - throw new Error( - `ObjectMetadataItem not found for objectNameSingular: ${objectNameSingular} while generating empty Jest record node`, - ); - } + return prefillRecord({ objectMetadataItem, input }); +}; - const prefilledRecord = prefillRecord({ - objectMetadataItem, - input, - }); +export const generateMockRecordNode = ({ + objectNameSingular, + input, + withDepthOneRelation = false, + computeReferences, +}: { + objectNameSingular: string; + input: Record; + withDepthOneRelation?: boolean; + computeReferences?: boolean; +}) => { + const objectMetadataItem = + getMockObjectMetadataItemOrThrow(objectNameSingular); + + const record = generateMockRecord({ objectNameSingular, input }); return getRecordNodeFromRecord({ - record: prefilledRecord, + record, objectMetadataItem, objectMetadataItems: generatedMockObjectMetadataItems, + computeReferences, recordGqlFields: withDepthOneRelation ? generateDepthRecordGqlFieldsFromObject({ objectMetadataItem, diff --git a/packages/twenty-front/src/testing/utils/generatedMockObjectMetadataItems.ts b/packages/twenty-front/src/testing/utils/generatedMockObjectMetadataItems.ts index e9d737cda3..88f64b5c79 100644 --- a/packages/twenty-front/src/testing/utils/generatedMockObjectMetadataItems.ts +++ b/packages/twenty-front/src/testing/utils/generatedMockObjectMetadataItems.ts @@ -2,7 +2,7 @@ import { type FieldMetadataItem } from '@/object-metadata/types/FieldMetadataIte import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem'; import { objectMetadataItemSchema } from '@/object-metadata/validation-schemas/objectMetadataItemSchema'; -import { mockedStandardObjectMetadataQueryResult } from '~/testing/mock-data/generated/mock-metadata-query-result'; +import { mockedStandardObjectMetadataQueryResult } from '~/testing/mock-data/generated/metadata/objects/mock-objects-metadata'; export const generatedMockObjectMetadataItems: ObjectMetadataItem[] = mockedStandardObjectMetadataQueryResult.objects.edges.map((edge) => {