diff --git a/packages/twenty-front/project.json b/packages/twenty-front/project.json index 6bdc6adf89..425e017ff5 100644 --- a/packages/twenty-front/project.json +++ b/packages/twenty-front/project.json @@ -255,6 +255,13 @@ } } }, + "mock:generate": { + "executor": "nx:run-commands", + "options": { + "cwd": "{projectRoot}", + "command": "dotenv npx tsx scripts/generate-mock-data.ts" + } + }, "chromatic": { "configurations": { "ci": {} diff --git a/packages/twenty-front/scripts/generate-mock-data.ts b/packages/twenty-front/scripts/generate-mock-data.ts new file mode 100644 index 0000000000..8507c5a352 --- /dev/null +++ b/packages/twenty-front/scripts/generate-mock-data.ts @@ -0,0 +1,284 @@ +/* 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 + } + } + } +`; + +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); + + 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!'); +}; + +main().catch((error) => { + console.error('Fatal error:', error); + process.exit(1); +}); diff --git a/packages/twenty-front/src/generated-metadata/graphql.ts b/packages/twenty-front/src/generated-metadata/graphql.ts index e2ea3dbac5..2186663c7d 100644 --- a/packages/twenty-front/src/generated-metadata/graphql.ts +++ b/packages/twenty-front/src/generated-metadata/graphql.ts @@ -5527,7 +5527,7 @@ export type UpdateOneApplicationVariableMutationVariables = Exact<{ export type UpdateOneApplicationVariableMutation = { __typename?: 'Mutation', updateOneApplicationVariable: boolean }; -export type ApplicationFieldsFragment = { __typename?: 'Application', id: string, name: string, description: string, version: string, universalIdentifier: string, canBeUninstalled: boolean, defaultRoleId?: string | null, availablePackages: any, applicationVariables: Array<{ __typename?: 'ApplicationVariable', id: string, key: string, value: string, description: string, isSecret: boolean }>, agents: Array<{ __typename?: 'Agent', id: string, name: string, label: string, description?: string | null, icon?: string | null, prompt: string, modelId: string, responseFormat?: any | null, roleId?: string | null, isCustom: boolean, modelConfiguration?: any | null, evaluationInputs: Array, applicationId?: string | null, createdAt: string, updatedAt: string }>, objects: Array<{ __typename?: 'Object', id: string, nameSingular: string, namePlural: string, labelSingular: string, labelPlural: string, description?: string | null, icon?: string | null, isCustom: boolean, isRemote: boolean, isActive: boolean, isSystem: boolean, isUIReadOnly: boolean, createdAt: string, updatedAt: string, labelIdentifierFieldMetadataId?: string | null, imageIdentifierFieldMetadataId?: string | null, applicationId: string, shortcut?: string | null, isLabelSyncedWithName: boolean, isSearchable: boolean, duplicateCriteria?: Array> | null, indexMetadataList: Array<{ __typename?: 'Index', id: string, createdAt: string, updatedAt: string, name: string, indexWhereClause?: string | null, indexType: IndexType, isUnique: boolean, isCustom?: boolean | null, indexFieldMetadataList: Array<{ __typename?: 'IndexField', id: string, fieldMetadataId: string, createdAt: string, updatedAt: string, order: number }> }>, fieldsList: Array<{ __typename?: 'Field', id: string, type: FieldMetadataType, name: string, label: string, description?: string | null, icon?: string | null, isCustom?: boolean | null, isActive?: boolean | null, isSystem?: boolean | null, isUIReadOnly?: boolean | null, isNullable?: boolean | null, isUnique?: boolean | null, createdAt: string, updatedAt: string, defaultValue?: any | null, options?: any | null, settings?: any | null, isLabelSyncedWithName?: boolean | null, morphId?: string | null, applicationId: string, relation?: { __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } } | null, morphRelations?: Array<{ __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } }> | null }> }>, logicFunctions: Array<{ __typename?: 'LogicFunction', id: string, name: string, description?: string | null, runtime: string, timeoutSeconds: number, sourceHandlerPath: string, handlerName: string, toolInputSchema?: any | null, isTool: boolean, applicationId?: string | null, createdAt: string, updatedAt: string }> }; +export type ApplicationFieldsFragment = { __typename?: 'Application', id: string, name: string, description: string, version: string, universalIdentifier: string, canBeUninstalled: boolean, defaultRoleId?: string | null, availablePackages: any, applicationVariables: Array<{ __typename?: 'ApplicationVariable', id: string, key: string, value: string, description: string, isSecret: boolean }>, agents: Array<{ __typename?: 'Agent', id: string, name: string, label: string, description?: string | null, icon?: string | null, prompt: string, modelId: string, responseFormat?: any | null, roleId?: string | null, isCustom: boolean, modelConfiguration?: any | null, evaluationInputs: Array, applicationId?: string | null, createdAt: string, updatedAt: string }>, objects: Array<{ __typename?: 'Object', id: string, universalIdentifier: string, nameSingular: string, namePlural: string, labelSingular: string, labelPlural: string, description?: string | null, icon?: string | null, isCustom: boolean, isRemote: boolean, isActive: boolean, isSystem: boolean, isUIReadOnly: boolean, createdAt: string, updatedAt: string, labelIdentifierFieldMetadataId?: string | null, imageIdentifierFieldMetadataId?: string | null, applicationId: string, shortcut?: string | null, isLabelSyncedWithName: boolean, isSearchable: boolean, duplicateCriteria?: Array> | null, indexMetadataList: Array<{ __typename?: 'Index', id: string, createdAt: string, updatedAt: string, name: string, indexWhereClause?: string | null, indexType: IndexType, isUnique: boolean, isCustom?: boolean | null, indexFieldMetadataList: Array<{ __typename?: 'IndexField', id: string, fieldMetadataId: string, createdAt: string, updatedAt: string, order: number }> }>, fieldsList: Array<{ __typename?: 'Field', id: string, universalIdentifier: string, type: FieldMetadataType, name: string, label: string, description?: string | null, icon?: string | null, isCustom?: boolean | null, isActive?: boolean | null, isSystem?: boolean | null, isUIReadOnly?: boolean | null, isNullable?: boolean | null, isUnique?: boolean | null, createdAt: string, updatedAt: string, defaultValue?: any | null, options?: any | null, settings?: any | null, isLabelSyncedWithName?: boolean | null, morphId?: string | null, applicationId: string, relation?: { __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } } | null, morphRelations?: Array<{ __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } }> | null }> }>, logicFunctions: Array<{ __typename?: 'LogicFunction', id: string, name: string, description?: string | null, runtime: string, timeoutSeconds: number, sourceHandlerPath: string, handlerName: string, toolInputSchema?: any | null, isTool: boolean, applicationId?: string | null, createdAt: string, updatedAt: string }> }; export type FindManyApplicationsQueryVariables = Exact<{ [key: string]: never; }>; @@ -5539,7 +5539,7 @@ export type FindOneApplicationQueryVariables = Exact<{ }>; -export type FindOneApplicationQuery = { __typename?: 'Query', findOneApplication: { __typename?: 'Application', id: string, name: string, description: string, version: string, universalIdentifier: string, canBeUninstalled: boolean, defaultRoleId?: string | null, availablePackages: any, applicationVariables: Array<{ __typename?: 'ApplicationVariable', id: string, key: string, value: string, description: string, isSecret: boolean }>, agents: Array<{ __typename?: 'Agent', id: string, name: string, label: string, description?: string | null, icon?: string | null, prompt: string, modelId: string, responseFormat?: any | null, roleId?: string | null, isCustom: boolean, modelConfiguration?: any | null, evaluationInputs: Array, applicationId?: string | null, createdAt: string, updatedAt: string }>, objects: Array<{ __typename?: 'Object', id: string, nameSingular: string, namePlural: string, labelSingular: string, labelPlural: string, description?: string | null, icon?: string | null, isCustom: boolean, isRemote: boolean, isActive: boolean, isSystem: boolean, isUIReadOnly: boolean, createdAt: string, updatedAt: string, labelIdentifierFieldMetadataId?: string | null, imageIdentifierFieldMetadataId?: string | null, applicationId: string, shortcut?: string | null, isLabelSyncedWithName: boolean, isSearchable: boolean, duplicateCriteria?: Array> | null, indexMetadataList: Array<{ __typename?: 'Index', id: string, createdAt: string, updatedAt: string, name: string, indexWhereClause?: string | null, indexType: IndexType, isUnique: boolean, isCustom?: boolean | null, indexFieldMetadataList: Array<{ __typename?: 'IndexField', id: string, fieldMetadataId: string, createdAt: string, updatedAt: string, order: number }> }>, fieldsList: Array<{ __typename?: 'Field', id: string, type: FieldMetadataType, name: string, label: string, description?: string | null, icon?: string | null, isCustom?: boolean | null, isActive?: boolean | null, isSystem?: boolean | null, isUIReadOnly?: boolean | null, isNullable?: boolean | null, isUnique?: boolean | null, createdAt: string, updatedAt: string, defaultValue?: any | null, options?: any | null, settings?: any | null, isLabelSyncedWithName?: boolean | null, morphId?: string | null, applicationId: string, relation?: { __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } } | null, morphRelations?: Array<{ __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } }> | null }> }>, logicFunctions: Array<{ __typename?: 'LogicFunction', id: string, name: string, description?: string | null, runtime: string, timeoutSeconds: number, sourceHandlerPath: string, handlerName: string, toolInputSchema?: any | null, isTool: boolean, applicationId?: string | null, createdAt: string, updatedAt: string }> } }; +export type FindOneApplicationQuery = { __typename?: 'Query', findOneApplication: { __typename?: 'Application', id: string, name: string, description: string, version: string, universalIdentifier: string, canBeUninstalled: boolean, defaultRoleId?: string | null, availablePackages: any, applicationVariables: Array<{ __typename?: 'ApplicationVariable', id: string, key: string, value: string, description: string, isSecret: boolean }>, agents: Array<{ __typename?: 'Agent', id: string, name: string, label: string, description?: string | null, icon?: string | null, prompt: string, modelId: string, responseFormat?: any | null, roleId?: string | null, isCustom: boolean, modelConfiguration?: any | null, evaluationInputs: Array, applicationId?: string | null, createdAt: string, updatedAt: string }>, objects: Array<{ __typename?: 'Object', id: string, universalIdentifier: string, nameSingular: string, namePlural: string, labelSingular: string, labelPlural: string, description?: string | null, icon?: string | null, isCustom: boolean, isRemote: boolean, isActive: boolean, isSystem: boolean, isUIReadOnly: boolean, createdAt: string, updatedAt: string, labelIdentifierFieldMetadataId?: string | null, imageIdentifierFieldMetadataId?: string | null, applicationId: string, shortcut?: string | null, isLabelSyncedWithName: boolean, isSearchable: boolean, duplicateCriteria?: Array> | null, indexMetadataList: Array<{ __typename?: 'Index', id: string, createdAt: string, updatedAt: string, name: string, indexWhereClause?: string | null, indexType: IndexType, isUnique: boolean, isCustom?: boolean | null, indexFieldMetadataList: Array<{ __typename?: 'IndexField', id: string, fieldMetadataId: string, createdAt: string, updatedAt: string, order: number }> }>, fieldsList: Array<{ __typename?: 'Field', id: string, universalIdentifier: string, type: FieldMetadataType, name: string, label: string, description?: string | null, icon?: string | null, isCustom?: boolean | null, isActive?: boolean | null, isSystem?: boolean | null, isUIReadOnly?: boolean | null, isNullable?: boolean | null, isUnique?: boolean | null, createdAt: string, updatedAt: string, defaultValue?: any | null, options?: any | null, settings?: any | null, isLabelSyncedWithName?: boolean | null, morphId?: string | null, applicationId: string, relation?: { __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } } | null, morphRelations?: Array<{ __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } }> | null }> }>, logicFunctions: Array<{ __typename?: 'LogicFunction', id: string, name: string, description?: string | null, runtime: string, timeoutSeconds: number, sourceHandlerPath: string, handlerName: string, toolInputSchema?: any | null, isTool: boolean, applicationId?: string | null, createdAt: string, updatedAt: string }> } }; export type UploadFileMutationVariables = Exact<{ file: Scalars['Upload']; @@ -6008,7 +6008,7 @@ export type FindOneNavigationMenuItemQueryVariables = Exact<{ export type FindOneNavigationMenuItemQuery = { __typename?: 'Query', navigationMenuItem?: { __typename?: 'NavigationMenuItem', id: string, userWorkspaceId?: string | null, targetRecordId?: string | null, targetObjectMetadataId?: string | null, viewId?: string | null, folderId?: string | null, name?: string | null, link?: string | null, icon?: string | null, position: number, applicationId?: string | null, createdAt: string, updatedAt: string, targetRecordIdentifier?: { __typename?: 'RecordIdentifier', id: string, labelIdentifier: string, imageIdentifier?: string | null } | null } | null }; -export type ObjectMetadataFieldsFragment = { __typename?: 'Object', id: string, nameSingular: string, namePlural: string, labelSingular: string, labelPlural: string, description?: string | null, icon?: string | null, isCustom: boolean, isRemote: boolean, isActive: boolean, isSystem: boolean, isUIReadOnly: boolean, createdAt: string, updatedAt: string, labelIdentifierFieldMetadataId?: string | null, imageIdentifierFieldMetadataId?: string | null, applicationId: string, shortcut?: string | null, isLabelSyncedWithName: boolean, isSearchable: boolean, duplicateCriteria?: Array> | null, indexMetadataList: Array<{ __typename?: 'Index', id: string, createdAt: string, updatedAt: string, name: string, indexWhereClause?: string | null, indexType: IndexType, isUnique: boolean, isCustom?: boolean | null, indexFieldMetadataList: Array<{ __typename?: 'IndexField', id: string, fieldMetadataId: string, createdAt: string, updatedAt: string, order: number }> }>, fieldsList: Array<{ __typename?: 'Field', id: string, type: FieldMetadataType, name: string, label: string, description?: string | null, icon?: string | null, isCustom?: boolean | null, isActive?: boolean | null, isSystem?: boolean | null, isUIReadOnly?: boolean | null, isNullable?: boolean | null, isUnique?: boolean | null, createdAt: string, updatedAt: string, defaultValue?: any | null, options?: any | null, settings?: any | null, isLabelSyncedWithName?: boolean | null, morphId?: string | null, applicationId: string, relation?: { __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } } | null, morphRelations?: Array<{ __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } }> | null }> }; +export type ObjectMetadataFieldsFragment = { __typename?: 'Object', id: string, universalIdentifier: string, nameSingular: string, namePlural: string, labelSingular: string, labelPlural: string, description?: string | null, icon?: string | null, isCustom: boolean, isRemote: boolean, isActive: boolean, isSystem: boolean, isUIReadOnly: boolean, createdAt: string, updatedAt: string, labelIdentifierFieldMetadataId?: string | null, imageIdentifierFieldMetadataId?: string | null, applicationId: string, shortcut?: string | null, isLabelSyncedWithName: boolean, isSearchable: boolean, duplicateCriteria?: Array> | null, indexMetadataList: Array<{ __typename?: 'Index', id: string, createdAt: string, updatedAt: string, name: string, indexWhereClause?: string | null, indexType: IndexType, isUnique: boolean, isCustom?: boolean | null, indexFieldMetadataList: Array<{ __typename?: 'IndexField', id: string, fieldMetadataId: string, createdAt: string, updatedAt: string, order: number }> }>, fieldsList: Array<{ __typename?: 'Field', id: string, universalIdentifier: string, type: FieldMetadataType, name: string, label: string, description?: string | null, icon?: string | null, isCustom?: boolean | null, isActive?: boolean | null, isSystem?: boolean | null, isUIReadOnly?: boolean | null, isNullable?: boolean | null, isUnique?: boolean | null, createdAt: string, updatedAt: string, defaultValue?: any | null, options?: any | null, settings?: any | null, isLabelSyncedWithName?: boolean | null, morphId?: string | null, applicationId: string, relation?: { __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } } | null, morphRelations?: Array<{ __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } }> | null }> }; export type CreateOneObjectMetadataItemMutationVariables = Exact<{ input: CreateOneObjectInput; @@ -6057,7 +6057,7 @@ export type DeleteOneFieldMetadataItemMutation = { __typename?: 'Mutation', dele export type ObjectMetadataItemsQueryVariables = Exact<{ [key: string]: never; }>; -export type ObjectMetadataItemsQuery = { __typename?: 'Query', objects: { __typename?: 'ObjectConnection', edges: Array<{ __typename?: 'ObjectEdge', node: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string, labelSingular: string, labelPlural: string, description?: string | null, icon?: string | null, isCustom: boolean, isRemote: boolean, isActive: boolean, isSystem: boolean, isUIReadOnly: boolean, createdAt: string, updatedAt: string, labelIdentifierFieldMetadataId?: string | null, imageIdentifierFieldMetadataId?: string | null, applicationId: string, shortcut?: string | null, isLabelSyncedWithName: boolean, isSearchable: boolean, duplicateCriteria?: Array> | null, indexMetadataList: Array<{ __typename?: 'Index', id: string, createdAt: string, updatedAt: string, name: string, indexWhereClause?: string | null, indexType: IndexType, isUnique: boolean, isCustom?: boolean | null, indexFieldMetadataList: Array<{ __typename?: 'IndexField', id: string, fieldMetadataId: string, createdAt: string, updatedAt: string, order: number }> }>, fieldsList: Array<{ __typename?: 'Field', id: string, type: FieldMetadataType, name: string, label: string, description?: string | null, icon?: string | null, isCustom?: boolean | null, isActive?: boolean | null, isSystem?: boolean | null, isUIReadOnly?: boolean | null, isNullable?: boolean | null, isUnique?: boolean | null, createdAt: string, updatedAt: string, defaultValue?: any | null, options?: any | null, settings?: any | null, isLabelSyncedWithName?: boolean | null, morphId?: string | null, applicationId: string, relation?: { __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } } | null, morphRelations?: Array<{ __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } }> | null }> } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage?: boolean | null, hasPreviousPage?: boolean | null, startCursor?: any | null, endCursor?: any | null } } }; +export type ObjectMetadataItemsQuery = { __typename?: 'Query', objects: { __typename?: 'ObjectConnection', edges: Array<{ __typename?: 'ObjectEdge', node: { __typename?: 'Object', id: string, universalIdentifier: string, nameSingular: string, namePlural: string, labelSingular: string, labelPlural: string, description?: string | null, icon?: string | null, isCustom: boolean, isRemote: boolean, isActive: boolean, isSystem: boolean, isUIReadOnly: boolean, createdAt: string, updatedAt: string, labelIdentifierFieldMetadataId?: string | null, imageIdentifierFieldMetadataId?: string | null, applicationId: string, shortcut?: string | null, isLabelSyncedWithName: boolean, isSearchable: boolean, duplicateCriteria?: Array> | null, indexMetadataList: Array<{ __typename?: 'Index', id: string, createdAt: string, updatedAt: string, name: string, indexWhereClause?: string | null, indexType: IndexType, isUnique: boolean, isCustom?: boolean | null, indexFieldMetadataList: Array<{ __typename?: 'IndexField', id: string, fieldMetadataId: string, createdAt: string, updatedAt: string, order: number }> }>, fieldsList: Array<{ __typename?: 'Field', id: string, universalIdentifier: string, type: FieldMetadataType, name: string, label: string, description?: string | null, icon?: string | null, isCustom?: boolean | null, isActive?: boolean | null, isSystem?: boolean | null, isUIReadOnly?: boolean | null, isNullable?: boolean | null, isUnique?: boolean | null, createdAt: string, updatedAt: string, defaultValue?: any | null, options?: any | null, settings?: any | null, isLabelSyncedWithName?: boolean | null, morphId?: string | null, applicationId: string, relation?: { __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } } | null, morphRelations?: Array<{ __typename?: 'Relation', type: RelationType, sourceObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, targetObjectMetadata: { __typename?: 'Object', id: string, nameSingular: string, namePlural: string }, sourceFieldMetadata: { __typename?: 'Field', id: string, name: string }, targetFieldMetadata: { __typename?: 'Field', id: string, name: string } }> | null }> } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage?: boolean | null, hasPreviousPage?: boolean | null, startCursor?: any | null, endCursor?: any | null } } }; export type ObjectRecordCountsQueryVariables = Exact<{ [key: string]: never; }>; @@ -7034,6 +7034,7 @@ export const AgentFieldsFragmentDoc = gql` export const ObjectMetadataFieldsFragmentDoc = gql` fragment ObjectMetadataFields on Object { id + universalIdentifier nameSingular namePlural labelSingular @@ -7073,6 +7074,7 @@ export const ObjectMetadataFieldsFragmentDoc = gql` } fieldsList { id + universalIdentifier type name label diff --git a/packages/twenty-front/src/modules/activities/hooks/__tests__/useActivityTargetObjectRecords.test.tsx b/packages/twenty-front/src/modules/activities/hooks/__tests__/useActivityTargetObjectRecords.test.tsx index 5eca208130..d46db433c3 100644 --- a/packages/twenty-front/src/modules/activities/hooks/__tests__/useActivityTargetObjectRecords.test.tsx +++ b/packages/twenty-front/src/modules/activities/hooks/__tests__/useActivityTargetObjectRecords.test.tsx @@ -21,10 +21,10 @@ const taskTarget = { id: '89bb825c-171e-4bcc-9cf7-43448d6fb300', createdAt: '2023-04-26T10:12:42.33625+00:00', updatedAt: '2023-04-26T10:23:42.33625+00:00', - companyId: null, - company: null, - personId: '89bb825c-171e-4bcc-9cf7-43448d6fb280', - person: { + targetCompanyId: null, + targetCompany: null, + targetPersonId: '89bb825c-171e-4bcc-9cf7-43448d6fb280', + targetPerson: { id: '89bb825c-171e-4bcc-9cf7-43448d6fb280', createdAt: '2023-04-26T10:12:42.33625+00:00', updatedAt: '2023-04-26T10:23:42.33625+00:00', @@ -58,21 +58,24 @@ cache.writeFragment({ __typename updatedAt createdAt - personId + targetPersonId taskId - companyId + targetCompanyId id task { __typename createdAt title updatedAt - body + bodyV2 { + blocknote + markdown + } dueAt id assigneeId } - person { + targetPerson { __typename id createdAt @@ -83,7 +86,7 @@ cache.writeFragment({ lastName } } - company { + targetCompany { __typename id createdAt @@ -164,7 +167,7 @@ describe('useActivityTargetObjectRecords', () => { expect(activityTargetObjectRecords).toHaveLength(1); expect(activityTargetObjectRecords[0].activityTarget).toEqual(taskTarget); expect(activityTargetObjectRecords[0].targetObject).toEqual( - taskTarget.person, + taskTarget.targetPerson, ); expect( activityTargetObjectRecords[0].targetObjectMetadataItem.nameSingular, diff --git a/packages/twenty-front/src/modules/activities/hooks/__tests__/useCreateActivityInDB.test.tsx b/packages/twenty-front/src/modules/activities/hooks/__tests__/useCreateActivityInDB.test.tsx index 7d3ad9399f..aa261a8638 100644 --- a/packages/twenty-front/src/modules/activities/hooks/__tests__/useCreateActivityInDB.test.tsx +++ b/packages/twenty-front/src/modules/activities/hooks/__tests__/useCreateActivityInDB.test.tsx @@ -1,11 +1,14 @@ import { type MockedResponse } from '@apollo/client/testing'; import { act, renderHook } from '@testing-library/react'; -import gql from 'graphql-tag'; +import { createOneActivityOperationSignatureFactory } from '@/activities/graphql/operation-signatures/factories/createOneActivityOperationSignatureFactory'; import { useCreateActivityInDB } from '@/activities/hooks/useCreateActivityInDB'; import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular'; +import { generateCreateOneRecordMutation } from '@/object-metadata/utils/generateCreateOneRecordMutation'; import { getJestMetadataAndApolloMocksWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksWrapper'; import { mockedTasks } from '~/testing/mock-data/tasks'; +import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; const mockedDate = '2024-03-15T12:00:00.000Z'; const toISOStringMock = jest.fn(() => mockedDate); @@ -21,74 +24,41 @@ const mockedActivity = { updatedAt: mockedDate, }; +const taskMetadataItem = getMockObjectMetadataItemOrThrow('task'); + +const operationSignature = createOneActivityOperationSignatureFactory({ + objectNameSingular: CoreObjectNameSingular.Task, +}); + +const createOneTaskMutation = generateCreateOneRecordMutation({ + objectMetadataItem: taskMetadataItem, + objectMetadataItems: generatedMockObjectMetadataItems, + recordGqlFields: operationSignature.fields, + objectPermissionsByObjectMetadataId: {}, +}); + +const mockResult = jest.fn(() => ({ + data: { + createTask: { + ...mockedActivity, + __typename: 'Activity', + assigneeId: '', + authorId: '1', + reminderAt: null, + createdAt: mockedDate, + }, + }, +})); + const mocks: MockedResponse[] = [ { request: { - query: gql` - mutation CreateOneTask($input: TaskCreateInput!) { - createTask(data: $input) { - __typename - assignee { - __typename - id - name { - firstName - lastName - } - } - assigneeId - attachments { - edges { - node { - __typename - authorId - companyId - createdAt - deletedAt - fullPath - id - name - noteId - opportunityId - personId - petId - rocketId - surveyResultId - taskId - type - updatedAt - } - } - } - bodyV2 { - blocknote - markdown - } - createdAt - dueAt - id - status - title - updatedAt - } - } - `, + query: createOneTaskMutation, variables: { input: mockedActivity, }, }, - result: jest.fn(() => ({ - data: { - createTask: { - ...mockedActivity, - __typename: 'Activity', - assigneeId: '', - authorId: '1', - reminderAt: null, - createdAt: mockedDate, - }, - }, - })), + result: mockResult, }, ]; @@ -114,6 +84,6 @@ describe('useCreateActivityInDB', () => { }); }); - expect(mocks[0].result).toHaveBeenCalled(); + expect(mockResult).toHaveBeenCalled(); }); }); diff --git a/packages/twenty-front/src/modules/ai/components/AIChatAssistantMessageRenderer.tsx b/packages/twenty-front/src/modules/ai/components/AIChatAssistantMessageRenderer.tsx index 4fb8c359bd..2f47d38372 100644 --- a/packages/twenty-front/src/modules/ai/components/AIChatAssistantMessageRenderer.tsx +++ b/packages/twenty-front/src/modules/ai/components/AIChatAssistantMessageRenderer.tsx @@ -8,7 +8,7 @@ import { ToolStepRenderer } from '@/ai/components/ToolStepRenderer'; import { groupContiguousThinkingStepParts } from '@/ai/utils/groupContiguousThinkingStepParts'; import { useTheme } from '@emotion/react'; import styled from '@emotion/styled'; -import { isStaticToolUIPart } from 'ai'; +import { isToolUIPart, type ToolUIPart } from 'ai'; import { type ExtendedUIMessagePart } from 'twenty-shared/ai'; const StyledMessagePartsContainer = styled.div` @@ -67,8 +67,13 @@ const MessagePartRenderer = ({ /> ); default: - if (isStaticToolUIPart(part) === true) { - return ; + if (isToolUIPart(part) === true && part.type !== 'dynamic-tool') { + return ( + + ); } return null; } diff --git a/packages/twenty-front/src/modules/ai/utils/isThinkingStepPart.ts b/packages/twenty-front/src/modules/ai/utils/isThinkingStepPart.ts index e1c30c7485..676246abc3 100644 --- a/packages/twenty-front/src/modules/ai/utils/isThinkingStepPart.ts +++ b/packages/twenty-front/src/modules/ai/utils/isThinkingStepPart.ts @@ -1,4 +1,4 @@ -import { isStaticToolUIPart } from 'ai'; +import { isToolUIPart } from 'ai'; import { type ExtendedUIMessagePart } from 'twenty-shared/ai'; import { type ThinkingStepPart } from '@/ai/utils/thinkingStepPart'; @@ -10,5 +10,5 @@ export const isThinkingStepPart = ( return true; } - return isStaticToolUIPart(part) && part.type !== 'tool-code_interpreter'; + return isToolUIPart(part) && part.type !== 'tool-code_interpreter'; }; 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 568e9b33c2..9a751ccc83 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 @@ -1,7 +1,10 @@ import { renderHook, waitFor } from '@testing-library/react'; +import { fetchAllThreadMessagesOperationSignatureFactory } from '@/activities/emails/graphql/operation-signatures/factories/fetchAllThreadMessagesOperationSignatureFactory'; +import { useEmailThreadInCommandMenu } from '@/command-menu/pages/message-thread/hooks/useEmailThreadInCommandMenu'; import { viewableRecordIdComponentState } from '@/command-menu/pages/record-page/states/viewableRecordIdComponentState'; import { CommandMenuPageComponentInstanceContext } from '@/command-menu/states/contexts/CommandMenuPageComponentInstanceContext'; +import { generateFindManyRecordsQuery } from '@/object-record/utils/generateFindManyRecordsQuery'; import gql from 'graphql-tag'; import { QUERY_DEFAULT_LIMIT_RECORDS, @@ -10,7 +13,39 @@ import { import { MessageParticipantRole } from 'twenty-shared/types'; import { generateEmptyJestRecordNode } from '~/testing/jest/generateEmptyJestRecordNode'; import { getJestMetadataAndApolloMocksWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksWrapper'; -import { useEmailThreadInCommandMenu } from '@/command-menu/pages/message-thread/hooks/useEmailThreadInCommandMenu'; +import { generatedMockObjectMetadataItems } from '~/testing/utils/generatedMockObjectMetadataItems'; +import { getMockObjectMetadataItemOrThrow } from '~/testing/utils/getMockObjectMetadataItemOrThrow'; + +const messageMetadataItem = getMockObjectMetadataItemOrThrow('message'); +const messageParticipantMetadataItem = + getMockObjectMetadataItemOrThrow('messageParticipant'); + +const messageOperationSignature = + fetchAllThreadMessagesOperationSignatureFactory({ + messageThreadId: '1', + }); + +const findManyMessagesQuery = generateFindManyRecordsQuery({ + objectMetadataItem: messageMetadataItem, + objectMetadataItems: generatedMockObjectMetadataItems, + recordGqlFields: messageOperationSignature.fields, + objectPermissionsByObjectMetadataId: {}, +}); + +const findManyMessageParticipantsQuery = generateFindManyRecordsQuery({ + objectMetadataItem: messageParticipantMetadataItem, + objectMetadataItems: generatedMockObjectMetadataItems, + recordGqlFields: { + id: true, + role: true, + displayName: true, + messageId: true, + handle: true, + person: true, + workspaceMember: true, + }, + objectPermissionsByObjectMetadataId: {}, +}); const mocks = [ { @@ -36,129 +71,7 @@ const mocks = [ }, { request: { - query: gql` - query FindManyMessages( - $filter: MessageFilterInput - $orderBy: [MessageOrderByInput] - $lastCursor: String - $limit: Int - $offset: Int - ) { - messages( - filter: $filter - orderBy: $orderBy - first: $limit - after: $lastCursor - offset: $offset - ) { - edges { - node { - __typename - createdAt - headerMessageId - id - messageParticipants { - edges { - node { - __typename - displayName - handle - id - person { - __typename - avatarUrl - city - companyId - createdAt - createdBy { - source - workspaceMemberId - name - context - } - deletedAt - emails { - primaryEmail - additionalEmails - } - id - intro - jobTitle - linkedinLink { - primaryLinkUrl - primaryLinkLabel - secondaryLinks - } - name { - firstName - lastName - } - performanceRating - phones { - primaryPhoneNumber - primaryPhoneCountryCode - primaryPhoneCallingCode - additionalPhones - } - position - updatedAt - whatsapp { - primaryPhoneNumber - primaryPhoneCountryCode - primaryPhoneCallingCode - additionalPhones - } - workPreference - xLink { - primaryLinkUrl - primaryLinkLabel - secondaryLinks - } - } - role - workspaceMember { - __typename - avatarUrl - colorScheme - createdAt - dateFormat - deletedAt - id - locale - name { - firstName - lastName - } - position - timeFormat - timeZone - updatedAt - userEmail - userId - } - } - } - } - messageThread { - __typename - id - } - receivedAt - subject - text - } - cursor - } - pageInfo { - hasNextPage - hasPreviousPage - startCursor - endCursor - } - totalCount - } - } - `, + query: findManyMessagesQuery, variables: { filter: { messageThreadId: { eq: '1' } }, orderBy: [{ receivedAt: 'AscNullsLast' }], @@ -206,113 +119,7 @@ const mocks = [ }, { request: { - query: gql` - query FindManyMessageParticipants( - $filter: MessageParticipantFilterInput - $orderBy: [MessageParticipantOrderByInput] - $lastCursor: String - $limit: Int - $offset: Int - ) { - messageParticipants( - filter: $filter - orderBy: $orderBy - first: $limit - after: $lastCursor - offset: $offset - ) { - edges { - node { - __typename - displayName - handle - id - messageId - person { - __typename - avatarUrl - city - companyId - createdAt - createdBy { - source - workspaceMemberId - name - context - } - deletedAt - emails { - primaryEmail - additionalEmails - } - id - intro - jobTitle - linkedinLink { - primaryLinkUrl - primaryLinkLabel - secondaryLinks - } - name { - firstName - lastName - } - performanceRating - phones { - primaryPhoneNumber - primaryPhoneCountryCode - primaryPhoneCallingCode - additionalPhones - } - position - updatedAt - whatsapp { - primaryPhoneNumber - primaryPhoneCountryCode - primaryPhoneCallingCode - additionalPhones - } - workPreference - xLink { - primaryLinkUrl - primaryLinkLabel - secondaryLinks - } - } - role - workspaceMember { - __typename - avatarUrl - colorScheme - createdAt - dateFormat - deletedAt - id - locale - name { - firstName - lastName - } - position - timeFormat - timeZone - updatedAt - userEmail - userId - } - } - cursor - } - pageInfo { - hasNextPage - hasPreviousPage - startCursor - endCursor - } - totalCount - } - } - `, + query: findManyMessageParticipantsQuery, variables: { filter: { messageId: { in: ['1', '2'] }, diff --git a/packages/twenty-front/src/modules/favorites/hooks/__mocks__/useFavorites.ts b/packages/twenty-front/src/modules/favorites/hooks/__mocks__/useFavorites.ts index e6291c4e40..44239e5e0c 100644 --- a/packages/twenty-front/src/modules/favorites/hooks/__mocks__/useFavorites.ts +++ b/packages/twenty-front/src/modules/favorites/hooks/__mocks__/useFavorites.ts @@ -66,30 +66,30 @@ export const initialFavorites: Favorite[] = [ export const sortedFavorites = [ { - id: '1', - recordId: '1', - position: 0, - avatarType: 'rounded', - avatarUrl: '', - labelIdentifier: ' ', - link: '/object/person/1', - objectNameSingular: 'person', - forWorkspaceMemberId: '1', - favoriteFolderId: '1', __typename: 'Favorite', + avatarType: 'squared', + avatarUrl: undefined, + favoriteFolderId: '1', + forWorkspaceMemberId: '1', + id: '1', + labelIdentifier: 'ABC Corp', + link: '/object/company/2', + objectNameSingular: 'company', + position: 0, + recordId: '2', }, { - id: '2', - recordId: '3', - position: 1, - avatarType: 'rounded', - avatarUrl: '', - labelIdentifier: ' ', - link: '/object/person/3', - objectNameSingular: 'person', - forWorkspaceMemberId: '1', - favoriteFolderId: '1', __typename: 'Favorite', + avatarType: 'squared', + avatarUrl: undefined, + favoriteFolderId: '1', + forWorkspaceMemberId: '1', + id: '2', + labelIdentifier: 'Company Test', + link: '/object/company/4', + objectNameSingular: 'company', + position: 1, + recordId: '4', }, { __typename: 'Favorite', diff --git a/packages/twenty-front/src/modules/object-metadata/hooks/__tests__/useColumnDefinitionsFromObjectMetadata.test.ts b/packages/twenty-front/src/modules/object-metadata/hooks/__tests__/useColumnDefinitionsFromObjectMetadata.test.ts index 37a6000fca..cbb717d617 100644 --- a/packages/twenty-front/src/modules/object-metadata/hooks/__tests__/useColumnDefinitionsFromObjectMetadata.test.ts +++ b/packages/twenty-front/src/modules/object-metadata/hooks/__tests__/useColumnDefinitionsFromObjectMetadata.test.ts @@ -90,6 +90,6 @@ describe('useColumnDefinitionsFromObjectMetadata', () => { const { columnDefinitions } = result.current; - expect(columnDefinitions.length).toBe(22); + expect(columnDefinitions.length).toBe(25); }); }); diff --git a/packages/twenty-front/src/modules/object-metadata/hooks/__tests__/useGetObjectRecordIdentifierByNameSingular.test.tsx b/packages/twenty-front/src/modules/object-metadata/hooks/__tests__/useGetObjectRecordIdentifierByNameSingular.test.tsx index bdf41aa2f6..3cdea07539 100644 --- a/packages/twenty-front/src/modules/object-metadata/hooks/__tests__/useGetObjectRecordIdentifierByNameSingular.test.tsx +++ b/packages/twenty-front/src/modules/object-metadata/hooks/__tests__/useGetObjectRecordIdentifierByNameSingular.test.tsx @@ -36,12 +36,12 @@ describe('useGetObjectRecordIdentifierByNameSingular', () => { wrapper: Wrapper, initialProps: { record: { id: 'recordId' } as any, - objectNameSingular: 'viewSort', + objectNameSingular: 'blocklist', }, }, ); - expect(result.current.linkToShowPage).toBe('/object/viewSort/recordId'); + expect(result.current.linkToShowPage).toBe('/object/blocklist/recordId'); rerender({ record: { id: 'recordId', avatarUrl: 'https://fake-url.com' }, diff --git a/packages/twenty-front/src/modules/object-metadata/utils/mapPaginatedObjectMetadataItemsToObjectMetadataItems.ts b/packages/twenty-front/src/modules/object-metadata/utils/mapPaginatedObjectMetadataItemsToObjectMetadataItems.ts index b6e6103b26..97b45c3f4b 100644 --- a/packages/twenty-front/src/modules/object-metadata/utils/mapPaginatedObjectMetadataItemsToObjectMetadataItems.ts +++ b/packages/twenty-front/src/modules/object-metadata/utils/mapPaginatedObjectMetadataItemsToObjectMetadataItems.ts @@ -25,10 +25,8 @@ export const mapPaginatedObjectMetadataItemsToObjectMetadataItems = ({ object.node; return { - universalIdentifier: object.node.id, ...objectWithoutFieldsList, fields: fieldsList.map((field) => ({ - universalIdentifier: field.id, ...field, })), labelIdentifierFieldMetadataId, diff --git a/packages/twenty-front/src/modules/object-metadata/validation-schemas/fieldMetadataItemSchema.ts b/packages/twenty-front/src/modules/object-metadata/validation-schemas/fieldMetadataItemSchema.ts index 09675a70b6..1eccdd1c53 100644 --- a/packages/twenty-front/src/modules/object-metadata/validation-schemas/fieldMetadataItemSchema.ts +++ b/packages/twenty-front/src/modules/object-metadata/validation-schemas/fieldMetadataItemSchema.ts @@ -6,6 +6,33 @@ import { FieldMetadataType, RelationType } from '~/generated-metadata/graphql'; import { camelCaseStringSchema } from '~/utils/validation-schemas/camelCaseStringSchema'; export const fieldMetadataItemSchema = (existingLabels?: string[]) => { + const relationObjectSchema = z.object({ + __typename: z.literal('Relation').optional(), + type: z.enum(RelationType), + sourceFieldMetadata: z.object({ + __typename: z.literal('Field').optional(), + id: z.uuid(), + name: z.string().trim().min(1), + }), + sourceObjectMetadata: z.object({ + __typename: z.literal('Object').optional(), + id: z.uuid(), + namePlural: z.string().trim().min(1), + nameSingular: z.string().trim().min(1), + }), + targetFieldMetadata: z.object({ + __typename: z.literal('Field').optional(), + id: z.uuid(), + name: z.string().trim().min(1), + }), + targetObjectMetadata: z.object({ + __typename: z.literal('Object').optional(), + id: z.uuid(), + namePlural: z.string().trim().min(1), + nameSingular: z.string().trim().min(1), + }), + }); + return z.object({ __typename: z.literal('Field').optional(), createdAt: z.iso.datetime(), @@ -16,6 +43,7 @@ export const fieldMetadataItemSchema = (existingLabels?: string[]) => { .nullable() .optional(), id: z.uuid(), + universalIdentifier: z.string(), applicationId: z.uuid(), isActive: z.boolean(), isCustom: z.boolean(), @@ -25,6 +53,8 @@ export const fieldMetadataItemSchema = (existingLabels?: string[]) => { isUIReadOnly: z.boolean(), label: metadataLabelSchema(existingLabels), isLabelSyncedWithName: z.boolean(), + morphId: z.string().nullable().optional(), + morphRelations: z.array(relationObjectSchema).nullable().optional(), name: camelCaseStringSchema, options: z .array( @@ -39,35 +69,7 @@ export const fieldMetadataItemSchema = (existingLabels?: string[]) => { .nullable() .optional(), settings: z.any().optional(), - relation: z - .object({ - __typename: z.literal('Relation').optional(), - type: z.enum(RelationType), - sourceFieldMetadata: z.object({ - __typename: z.literal('Field').optional(), - id: z.uuid(), - name: z.string().trim().min(1), - }), - sourceObjectMetadata: z.object({ - __typename: z.literal('Object').optional(), - id: z.uuid(), - namePlural: z.string().trim().min(1), - nameSingular: z.string().trim().min(1), - }), - targetFieldMetadata: z.object({ - __typename: z.literal('Field').optional(), - id: z.uuid(), - name: z.string().trim().min(1), - }), - targetObjectMetadata: z.object({ - __typename: z.literal('Object').optional(), - id: z.uuid(), - namePlural: z.string().trim().min(1), - nameSingular: z.string().trim().min(1), - }), - }) - .nullable() - .optional(), + relation: relationObjectSchema.nullable().optional(), type: z.enum(FieldMetadataType), updatedAt: z.iso.datetime(), }); diff --git a/packages/twenty-front/src/modules/object-metadata/validation-schemas/indexMetadataItemSchema.ts b/packages/twenty-front/src/modules/object-metadata/validation-schemas/indexMetadataItemSchema.ts index f88c31d828..70c8f5918e 100644 --- a/packages/twenty-front/src/modules/object-metadata/validation-schemas/indexMetadataItemSchema.ts +++ b/packages/twenty-front/src/modules/object-metadata/validation-schemas/indexMetadataItemSchema.ts @@ -14,5 +14,6 @@ export const indexMetadataItemSchema = z.object({ indexType: z.enum(IndexType), indexWhereClause: z.string().nullable(), isUnique: z.boolean(), + isCustom: z.boolean().nullable().optional(), objectMetadata: z.any(), }) satisfies z.ZodType; diff --git a/packages/twenty-front/src/modules/object-metadata/validation-schemas/objectMetadataItemSchema.ts b/packages/twenty-front/src/modules/object-metadata/validation-schemas/objectMetadataItemSchema.ts index e600001688..52e31c12db 100644 --- a/packages/twenty-front/src/modules/object-metadata/validation-schemas/objectMetadataItemSchema.ts +++ b/packages/twenty-front/src/modules/object-metadata/validation-schemas/objectMetadataItemSchema.ts @@ -16,7 +16,8 @@ export const objectMetadataItemSchema = z.object({ icon: z.string().startsWith('Icon').trim(), applicationId: z.uuid(), id: z.uuid(), - duplicateCriteria: z.array(z.array(z.string())), + universalIdentifier: z.string(), + duplicateCriteria: z.array(z.array(z.string())).nullable(), imageIdentifierFieldMetadataId: z.uuid().nullable(), isActive: z.boolean(), isCustom: z.boolean(), 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 f3b5ceaf12..f145f1af1d 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://jestjs.io/docs/snapshot-testing +// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`generateActivityTargetGqlFields snapshot tests should match snapshot for Note with loadRelations="activity" 1`] = ` { @@ -12,13 +12,8 @@ exports[`generateActivityTargetGqlFields snapshot tests should match snapshot fo exports[`generateActivityTargetGqlFields snapshot tests should match snapshot for Note with loadRelations="both" 1`] = ` { - "company": { - "domainName": true, - "id": true, - "name": true, - }, - "companyId": true, "createdAt": true, + "createdBy": true, "deletedAt": true, "id": true, "note": { @@ -26,54 +21,103 @@ exports[`generateActivityTargetGqlFields snapshot tests should match snapshot fo "title": true, }, "noteId": true, - "opportunity": { + "position": true, + "searchVector": true, + "targetCompany": { "id": true, "name": true, }, - "opportunityId": true, - "person": { - "avatarUrl": true, + "targetCompanyId": true, + "targetEmploymentHistory": { "id": true, "name": true, }, - "personId": true, - "pet": { + "targetEmploymentHistoryId": true, + "targetOpportunity": { "id": true, "name": true, }, - "petId": true, - "rocket": { + "targetOpportunityId": true, + "targetPerson": { "id": true, "name": true, }, - "rocketId": true, - "surveyResult": { + "targetPersonId": true, + "targetPet": { "id": true, "name": true, }, - "surveyResultId": true, + "targetPetCareAgreement": { + "id": true, + "name": true, + }, + "targetPetCareAgreementId": true, + "targetPetId": true, + "targetRocket": { + "id": true, + "name": true, + }, + "targetRocketId": true, + "targetSurveyResult": { + "id": true, + "name": true, + }, + "targetSurveyResultId": true, "updatedAt": true, + "updatedBy": true, } `; exports[`generateActivityTargetGqlFields snapshot tests should match snapshot for Note with loadRelations="relations" 1`] = ` { - "company": true, - "companyId": true, "createdAt": true, + "createdBy": true, "deletedAt": true, "id": true, - "opportunity": true, - "opportunityId": true, - "person": true, - "personId": true, - "pet": true, - "petId": true, - "rocket": true, - "rocketId": true, - "surveyResult": true, - "surveyResultId": true, + "position": true, + "searchVector": true, + "targetCompany": { + "id": true, + "name": true, + }, + "targetCompanyId": true, + "targetEmploymentHistory": { + "id": true, + "name": true, + }, + "targetEmploymentHistoryId": true, + "targetOpportunity": { + "id": true, + "name": true, + }, + "targetOpportunityId": true, + "targetPerson": { + "id": true, + "name": true, + }, + "targetPersonId": true, + "targetPet": { + "id": true, + "name": true, + }, + "targetPetCareAgreement": { + "id": true, + "name": true, + }, + "targetPetCareAgreementId": true, + "targetPetId": true, + "targetRocket": { + "id": true, + "name": true, + }, + "targetRocketId": true, + "targetSurveyResult": { + "id": true, + "name": true, + }, + "targetSurveyResultId": true, "updatedAt": true, + "updatedBy": true, } `; @@ -89,67 +133,111 @@ exports[`generateActivityTargetGqlFields snapshot tests should match snapshot fo exports[`generateActivityTargetGqlFields snapshot tests should match snapshot for Task with loadRelations="both" 1`] = ` { - "company": { - "domainName": true, - "id": true, - "name": true, - }, - "companyId": true, "createdAt": true, + "createdBy": true, "deletedAt": true, "id": true, - "opportunity": { + "position": true, + "searchVector": true, + "targetCompany": { "id": true, "name": true, }, - "opportunityId": true, - "person": { - "avatarUrl": true, + "targetCompanyId": true, + "targetEmploymentHistory": { "id": true, "name": true, }, - "personId": true, - "pet": { + "targetEmploymentHistoryId": true, + "targetOpportunity": { "id": true, "name": true, }, - "petId": true, - "rocket": { + "targetOpportunityId": true, + "targetPerson": { "id": true, "name": true, }, - "rocketId": true, - "surveyResult": { + "targetPersonId": true, + "targetPet": { "id": true, "name": true, }, - "surveyResultId": true, + "targetPetCareAgreement": { + "id": true, + "name": true, + }, + "targetPetCareAgreementId": true, + "targetPetId": true, + "targetRocket": { + "id": true, + "name": true, + }, + "targetRocketId": true, + "targetSurveyResult": { + "id": true, + "name": true, + }, + "targetSurveyResultId": true, "task": { "id": true, "title": true, }, "taskId": true, "updatedAt": true, + "updatedBy": true, } `; exports[`generateActivityTargetGqlFields snapshot tests should match snapshot for Task with loadRelations="relations" 1`] = ` { - "company": true, - "companyId": true, "createdAt": true, + "createdBy": true, "deletedAt": true, "id": true, - "opportunity": true, - "opportunityId": true, - "person": true, - "personId": true, - "pet": true, - "petId": true, - "rocket": true, - "rocketId": true, - "surveyResult": true, - "surveyResultId": true, + "position": true, + "searchVector": true, + "targetCompany": { + "id": true, + "name": true, + }, + "targetCompanyId": true, + "targetEmploymentHistory": { + "id": true, + "name": true, + }, + "targetEmploymentHistoryId": true, + "targetOpportunity": { + "id": true, + "name": true, + }, + "targetOpportunityId": true, + "targetPerson": { + "id": true, + "name": true, + }, + "targetPersonId": true, + "targetPet": { + "id": true, + "name": true, + }, + "targetPetCareAgreement": { + "id": true, + "name": true, + }, + "targetPetCareAgreementId": true, + "targetPetId": true, + "targetRocket": { + "id": true, + "name": true, + }, + "targetRocketId": true, + "targetSurveyResult": { + "id": true, + "name": true, + }, + "targetSurveyResultId": true, "updatedAt": true, + "updatedBy": true, } `; diff --git a/packages/twenty-front/src/modules/object-record/graphql/record-gql-fields/utils/__tests__/__snapshots__/generateDepthRecordGqlFieldsFromObject.test.ts.snap b/packages/twenty-front/src/modules/object-record/graphql/record-gql-fields/utils/__tests__/__snapshots__/generateDepthRecordGqlFieldsFromObject.test.ts.snap index 87f1191b7d..54af56fee5 100644 --- a/packages/twenty-front/src/modules/object-record/graphql/record-gql-fields/utils/__tests__/__snapshots__/generateDepthRecordGqlFieldsFromObject.test.ts.snap +++ b/packages/twenty-front/src/modules/object-record/graphql/record-gql-fields/utils/__tests__/__snapshots__/generateDepthRecordGqlFieldsFromObject.test.ts.snap @@ -1,9 +1,8 @@ -// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing +// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`generateDepthRecordGqlFieldsFromObject should generate depth one record gql fields from object 1`] = ` { "accountOwner": { - "avatarUrl": true, "id": true, "name": true, }, @@ -14,6 +13,13 @@ exports[`generateDepthRecordGqlFieldsFromObject should generate depth one record "id": true, "name": true, }, + "caredForPets": { + "id": true, + "pet": { + "id": true, + "name": true, + }, + }, "createdAt": true, "createdBy": true, "deletedAt": true, @@ -44,6 +50,14 @@ exports[`generateDepthRecordGqlFieldsFromObject should generate depth one record "name": true, }, "position": true, + "previousEmployees": { + "id": true, + "person": { + "avatarUrl": true, + "id": true, + "name": true, + }, + }, "searchVector": true, "tagline": true, "taskTargets": { @@ -55,8 +69,10 @@ exports[`generateDepthRecordGqlFieldsFromObject should generate depth one record }, "timelineActivities": { "id": true, + "name": true, }, "updatedAt": true, + "updatedBy": true, "visaSponsorship": true, "workPolicy": true, "xLink": true, @@ -82,6 +98,7 @@ exports[`generateDepthRecordGqlFieldsFromObject should generate depth zero recor "searchVector": true, "tagline": true, "updatedAt": true, + "updatedBy": true, "visaSponsorship": true, "workPolicy": true, "xLink": true, diff --git a/packages/twenty-front/src/modules/object-record/graphql/record-gql-fields/utils/__tests__/__snapshots__/generateDepthRecordGqlFieldsFromRecord.test.ts.snap b/packages/twenty-front/src/modules/object-record/graphql/record-gql-fields/utils/__tests__/__snapshots__/generateDepthRecordGqlFieldsFromRecord.test.ts.snap index 22f5fd8306..ba1ddc21b4 100644 --- a/packages/twenty-front/src/modules/object-record/graphql/record-gql-fields/utils/__tests__/__snapshots__/generateDepthRecordGqlFieldsFromRecord.test.ts.snap +++ b/packages/twenty-front/src/modules/object-record/graphql/record-gql-fields/utils/__tests__/__snapshots__/generateDepthRecordGqlFieldsFromRecord.test.ts.snap @@ -1,4 +1,4 @@ -// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing +// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`generateDepthRecordGqlFieldsFromRecord should generate depth one record gql fields from empty record 1`] = ` { @@ -7,6 +7,7 @@ exports[`generateDepthRecordGqlFieldsFromRecord should generate depth one record "address": false, "annualRecurringRevenue": false, "attachments": false, + "caredForPets": false, "createdAt": false, "createdBy": false, "deletedAt": false, @@ -22,11 +23,13 @@ exports[`generateDepthRecordGqlFieldsFromRecord should generate depth one record "opportunities": false, "people": false, "position": false, + "previousEmployees": false, "searchVector": false, "tagline": false, "taskTargets": false, "timelineActivities": false, "updatedAt": false, + "updatedBy": false, "visaSponsorship": false, "workPolicy": false, "xLink": false, @@ -40,6 +43,7 @@ exports[`generateDepthRecordGqlFieldsFromRecord should generate depth one record "address": false, "annualRecurringRevenue": false, "attachments": false, + "caredForPets": false, "createdAt": false, "createdBy": false, "deletedAt": false, @@ -55,11 +59,13 @@ exports[`generateDepthRecordGqlFieldsFromRecord should generate depth one record "opportunities": false, "people": false, "position": false, + "previousEmployees": false, "searchVector": false, "tagline": false, "taskTargets": false, "timelineActivities": false, "updatedAt": false, + "updatedBy": false, "visaSponsorship": false, "workPolicy": false, "xLink": false, @@ -85,6 +91,7 @@ exports[`generateDepthRecordGqlFieldsFromRecord should generate depth zero recor "searchVector": false, "tagline": false, "updatedAt": false, + "updatedBy": false, "visaSponsorship": false, "workPolicy": false, "xLink": false, diff --git a/packages/twenty-front/src/modules/object-record/hooks/__mocks__/personFragments.ts b/packages/twenty-front/src/modules/object-record/hooks/__mocks__/personFragments.ts index d0b4b8ccc0..fb07e5a736 100644 --- a/packages/twenty-front/src/modules/object-record/hooks/__mocks__/personFragments.ts +++ b/packages/twenty-front/src/modules/object-record/hooks/__mocks__/personFragments.ts @@ -1,5 +1,11 @@ export const PERSON_FRAGMENT_WITH_DEPTH_ZERO_RELATIONS = ` __typename + avatarFile { + fileId + label + extension + url + } avatarUrl city companyId @@ -36,6 +42,12 @@ export const PERSON_FRAGMENT_WITH_DEPTH_ZERO_RELATIONS = ` } position updatedAt + updatedBy { + source + workspaceMemberId + name + context + } whatsapp { primaryPhoneNumber primaryPhoneCountryCode @@ -61,6 +73,12 @@ export const PERSON_FRAGMENT_WITH_DEPTH_ONE_RELATIONS = ` } } } + avatarFile { + fileId + label + extension + url + } avatarUrl calendarEventParticipants { edges { @@ -71,6 +89,19 @@ export const PERSON_FRAGMENT_WITH_DEPTH_ONE_RELATIONS = ` } } } + caredForPets { + edges { + node { + __typename + id + pet { + __typename + id + name + } + } + } + } city company { __typename @@ -154,6 +185,24 @@ export const PERSON_FRAGMENT_WITH_DEPTH_ONE_RELATIONS = ` } } position + previousCompanies { + edges { + node { + __typename + company { + __typename + domainName { + primaryLinkUrl + primaryLinkLabel + secondaryLinks + } + id + name + } + id + } + } + } taskTargets { edges { node { @@ -172,10 +221,17 @@ export const PERSON_FRAGMENT_WITH_DEPTH_ONE_RELATIONS = ` node { __typename id + name } } } updatedAt + updatedBy { + source + workspaceMemberId + name + context + } whatsapp { primaryPhoneNumber primaryPhoneCountryCode 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 bff452b08d..6d04944601 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 @@ -32,7 +32,7 @@ import { getFieldInputEventContextProviderWithJestMocks } from './utils/getField const RelationWorkspaceSetterEffect = () => { const setRecordFieldInputLayoutDirectionLoading = useSetAtomComponentState( recordFieldInputLayoutDirectionLoadingComponentState, - 'relation-to-one-field-input-123-Relation', + 'relation-to-one-field-input-123-company', ); useEffect(() => { @@ -75,18 +75,18 @@ const RelationManyToOneFieldInputWithContext = ({ diff --git a/packages/twenty-front/src/modules/object-record/record-field/ui/meta-types/input/components/__stories__/RelationOneToManyFieldInput.stories.tsx b/packages/twenty-front/src/modules/object-record/record-field/ui/meta-types/input/components/__stories__/RelationOneToManyFieldInput.stories.tsx index 14a8307809..3367942775 100644 --- a/packages/twenty-front/src/modules/object-record/record-field/ui/meta-types/input/components/__stories__/RelationOneToManyFieldInput.stories.tsx +++ b/packages/twenty-front/src/modules/object-record/record-field/ui/meta-types/input/components/__stories__/RelationOneToManyFieldInput.stories.tsx @@ -39,17 +39,17 @@ const RelationOneToManyFieldInputWithContext = () => { const fieldDefinition = useMemo( () => ({ - fieldMetadataId: 'e82262eb-7f58-4167-a23c-fc51ec584d1b', + fieldMetadataId: '94902a74-b8ca-4a56-8573-7469f0b664f6', label: 'People', type: FieldMetadataType.RELATION, iconName: 'IconLink', metadata: { fieldName: 'people', relationType: RelationType.ONE_TO_MANY, - relationObjectMetadataNamePlural: 'companies', - relationObjectMetadataNameSingular: CoreObjectNameSingular.Company, - objectMetadataNameSingular: 'person', - relationFieldMetadataId: '3c211c59-02a1-4904-ad0f-5bb30b736461', + relationObjectMetadataNamePlural: 'people', + relationObjectMetadataNameSingular: CoreObjectNameSingular.Person, + objectMetadataNameSingular: 'company', + relationFieldMetadataId: 'f6be42ac-ccb8-4df0-8c22-a9627d655c76', }, }), [], diff --git a/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionUpdateRecord.stories.tsx b/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionUpdateRecord.stories.tsx index db71c4f831..52f1ae85d8 100644 --- a/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionUpdateRecord.stories.tsx +++ b/packages/twenty-front/src/modules/workflow/workflow-steps/workflow-actions/components/__stories__/WorkflowEditActionUpdateRecord.stories.tsx @@ -21,18 +21,7 @@ const DEFAULT_ACTION = { objectName: 'person', objectRecordId: '', objectRecord: {}, - fieldsToUpdate: [ - 'updatedAt', - 'averageEstimatedNumberOfAtomsInTheUniverse', - 'comments', - 'createdAt', - 'deletedAt', - 'name', - 'participants', - 'percentageOfCompletion', - 'score', - 'shortNotes', - ], + fieldsToUpdate: ['city', 'emails', 'jobTitle', 'name', 'phones'], }, outputSchema: {}, errorHandlingOptions: { @@ -107,7 +96,7 @@ export const DisabledWithEmptyValues: Story = { const firstSelectedUpdatableField = await within( await canvas.findByTestId('workflow-fields-multi-select'), - ).findByText('Creation date'); + ).findByText('City'); await userEvent.click(firstSelectedUpdatableField); @@ -164,7 +153,7 @@ export const DisabledWithDefaultStaticValues: Story = { const firstSelectedUpdatableField = await within( await canvas.findByTestId('workflow-fields-multi-select'), - ).findByText('Creation date'); + ).findByText('City'); await userEvent.click(firstSelectedUpdatableField); @@ -215,7 +204,7 @@ export const DisabledWithDefaultVariableValues: Story = { const firstSelectedUpdatableField = await within( await canvas.findByTestId('workflow-fields-multi-select'), - ).findByText('Creation date'); + ).findByText('City'); await userEvent.click(firstSelectedUpdatableField); 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/mock-metadata-query-result.ts index 8baf4223e2..134a08aed5 100644 --- a/packages/twenty-front/src/testing/mock-data/generated/mock-metadata-query-result.ts +++ b/packages/twenty-front/src/testing/mock-data/generated/mock-metadata-query-result.ts @@ -1,9 +1,9 @@ /* eslint-disable */ +// @ts-nocheck import { ObjectMetadataItemsQuery } from '~/generated-metadata/graphql'; -// This file is not designed to be manually edited. -// It's an extract from the dev seeded environment metadata call -// TODO: automate the generation of this file +// This file was automatically generated by scripts/generate-mock-data.ts +// Do not edit this file manually. // prettier-ignore export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = @@ -15,9236 +15,701 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "hasNextPage": false, "hasPreviousPage": false, "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", - "endCursor": "YXJyYXljb25uZWN0aW9uOjM4" + "endCursor": "YXJyYXljb25uZWN0aW9uOjM0" }, "edges": [ { "__typename": "ObjectEdge", "node": { "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "fac890af-68c5-4718-a16b-7401b1868429", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns", + "id": "ffd13062-c19a-4904-a524-6c8560da9be8", + "universalIdentifier": "20202020-62be-406c-b9ca-8caa50d51392", + "nameSingular": "workflow", + "namePlural": "workflows", "isCustom": false, "isRemote": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "69f9f64c-30ab-4a19-93a2-29596b6046c0", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "labelIdentifierFieldMetadataId": "27517387-8213-484c-a44a-adb189f6befe", "imageIdentifierFieldMetadataId": null, - "shortcut": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "shortcut": "W", "isLabelSyncedWithName": false, "isSearchable": false, "duplicateCriteria": null, - "labelSingular": "Workflow Run", - "labelPlural": "Workflow Runs", - "description": "A workflow run", - "icon": "IconHistoryToggle", - "indexMetadataList": [], + "labelSingular": "Workflow", + "labelPlural": "Workflows", + "description": "A workflow", + "icon": "IconSettingsAutomation", "fieldsList": [ { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "69f9f64c-30ab-4a19-93a2-29596b6046c0", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "Name of the workflow run", - "icon": "IconSettingsAutomation" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f9f152d1-e827-41bb-af5f-6a08a4ba9d6b", - "type": "DATE_TIME", - "name": "startedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Workflow run started at", - "description": "Workflow run started at", - "icon": "IconHistory" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2ad35021-b87f-43ac-8b48-ee7fc5b56387", - "type": "DATE_TIME", - "name": "endedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Workflow run ended at", - "description": "Workflow run ended at", - "icon": "IconHistory" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4221dd27-6e2b-4f5a-adb6-1ecbf52392fa", - "type": "SELECT", - "name": "status", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'NOT_STARTED'", - "options": [ - { - "id": "6b07cf46-637b-4164-a814-c756562bb6f1", - "color": "gray", - "label": "Not started", - "value": "NOT_STARTED", - "position": 0 - }, - { - "id": "a9c9cae1-aa3b-409c-8256-8efd5ffbef76", - "color": "yellow", - "label": "Running", - "value": "RUNNING", - "position": 1 - }, - { - "id": "ef356068-ef37-4898-889e-797e3a66ad51", - "color": "green", - "label": "Completed", - "value": "COMPLETED", - "position": 2 - }, - { - "id": "7e3b06ef-5991-4528-a5c0-ed127f8304b1", - "color": "red", - "label": "Failed", - "value": "FAILED", - "position": 3 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Workflow run status", - "description": "Workflow run status", - "icon": "IconStatusChange" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5bc4e957-6bbe-4481-8225-cf88f6b7ed4d", - "type": "ACTOR", - "name": "createdBy", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "context": {} - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Executed by", - "description": "The executor of the workflow", - "icon": "IconCreativeCommonsSa" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ba9595db-5f25-4fef-b0d7-c72dd63f9cc4", - "type": "RAW_JSON", - "name": "output", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Output", - "description": "Json object to provide output of the workflow run", - "icon": "IconText" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c1684ba7-c722-4839-9811-cd5af1d02ec2", - "type": "RAW_JSON", - "name": "context", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Context", - "description": "Context", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c47c0563-c7ff-4388-9bae-8db61f5d690e", - "type": "POSITION", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "Workflow run position", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "da4ab897-ea4d-45f7-8e9f-cf92080b6aaa", + "id": "8a1fd8cb-8558-4873-861d-77103d9a1bbf", + "universalIdentifier": "20202020-f02a-4181-8a81-efabcdefabcd", "type": "UUID", "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", "isCustom": false, "isActive": true, "isSystem": true, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Id", - "description": "Id", - "icon": "Icon123" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a72cad66-b9e5-4793-a032-023b607f3dfe", + "id": "6a709559-9d64-4043-8abf-eeb1b5d8647a", + "universalIdentifier": "20202020-f02b-4182-9b82-fabcdefabcde", "type": "DATE_TIME", "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, "label": "Creation date", "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ce433cdf-5a1c-4827-a217-a398705c3720", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6c4525cc-84b8-46e3-84d9-bf840eef10a2", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f26aee9e-883a-46d2-938b-8db3061ba579", - "type": "RELATION", - "name": "workflowVersion", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowVersionId" - }, - "isLabelSyncedWithName": false, - "label": "Workflow version", - "description": "Workflow version linked to the run.", - "icon": "IconVersions", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "fac890af-68c5-4718-a16b-7401b1868429", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4534bb30-62fb-46fd-899b-c03348acd97a", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "f26aee9e-883a-46d2-938b-8db3061ba579", - "name": "workflowVersion" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b960652a-142e-4772-9011-f261e66e59fe", - "name": "runs" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1a7584bc-5f3a-466c-ad24-587eda39b8f3", - "type": "RELATION", - "name": "workflow", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowId" - }, - "isLabelSyncedWithName": false, - "label": "Workflow", - "description": "Workflow linked to the run.", - "icon": "IconSettingsAutomation", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "fac890af-68c5-4718-a16b-7401b1868429", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "3d041dc9-e4f0-4cd0-ad45-7d15080c4ac7", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1a7584bc-5f3a-466c-ad24-587eda39b8f3", - "name": "workflow" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4608fc82-1fcf-46f4-bc14-86bfbbe0f47d", - "name": "runs" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "79f05bdb-1efb-4079-ab9d-a0d38fca8448", - "type": "RELATION", - "name": "favorites", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Favorites", - "description": "Favorites linked to the workflow run", - "icon": "IconHeart", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "fac890af-68c5-4718-a16b-7401b1868429", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "79f05bdb-1efb-4079-ab9d-a0d38fca8448", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "abd0bed2-d856-4fb3-8396-2e750d377ff1", - "name": "workflowRun" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "fe09259f-de35-4e8d-83b4-1c1137c16fd4", - "type": "RELATION", - "name": "timelineActivities", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Timeline Activities", - "description": "Timeline activities linked to the run", - "icon": "", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "fac890af-68c5-4718-a16b-7401b1868429", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "fe09259f-de35-4e8d-83b4-1c1137c16fd4", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3ed67245-68ed-4452-9453-cfa21e16e1cc", - "name": "workflowRun" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "c9708416-60bf-43c8-989e-3adfd7ed4977", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Note Target", - "labelPlural": "Note Targets", - "description": "A note target", - "icon": "IconCheckbox", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c9708416-60bf-43c8-989e-3adfd7ed4977", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0a6e602a-0a1f-43ab-935d-e3cac263fdd8", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1952e980-dc4c-4c94-806a-e57437e2408a", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5476b4ad-b024-4345-8bae-0ccc94532cb3", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0500ed2f-0c98-4524-bc11-1d946ea5162c", - "type": "RELATION", - "name": "note", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "noteId" - }, - "isLabelSyncedWithName": false, - "label": "Note", - "description": "NoteTarget note", - "icon": "IconNotes", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "46d270fd-7b29-4a75-9943-27c8594b1f3c", - "nameSingular": "note", - "namePlural": "notes" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "0500ed2f-0c98-4524-bc11-1d946ea5162c", - "name": "note" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "f08cc9b1-eba9-402b-bc0a-f7351fc19361", - "name": "noteTargets" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "94c251a4-a8b9-4f84-812b-4b68297ea465", - "type": "RELATION", - "name": "person", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "label": "Person", - "description": "NoteTarget person", - "icon": "IconUser", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "94c251a4-a8b9-4f84-812b-4b68297ea465", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1d36023f-cfae-491e-bf86-a4768d97b100", - "name": "noteTargets" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "17aa0682-1cd2-4b4d-91f4-70a1aecfd39e", - "type": "RELATION", - "name": "company", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "companyId" - }, - "isLabelSyncedWithName": false, - "label": "Company", - "description": "NoteTarget company", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "17aa0682-1cd2-4b4d-91f4-70a1aecfd39e", - "name": "company" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "60d04ca2-1122-4249-9091-547202f1e8d2", - "name": "noteTargets" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3db5112b-eb5b-466c-9dca-37a319e05448", - "type": "RELATION", - "name": "opportunity", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "opportunityId" - }, - "isLabelSyncedWithName": false, - "label": "Opportunity", - "description": "NoteTarget opportunity", - "icon": "IconTargetArrow", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3db5112b-eb5b-466c-9dca-37a319e05448", - "name": "opportunity" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "c7ac121d-f492-4d06-b4ba-264396172dcb", - "name": "noteTargets" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5f5cc0c7-534f-4a43-8f9b-a78a5e32c0fe", - "type": "RELATION", - "name": "rocket", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.890Z", - "updatedAt": "2025-06-09T18:53:50.890Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "rocketId" - }, - "isLabelSyncedWithName": false, - "label": "Rocket", - "description": "NoteTargets Rocket", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c73c0408-222b-4214-a855-f6bb88ee8ebc", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5f5cc0c7-534f-4a43-8f9b-a78a5e32c0fe", - "name": "rocket" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5795845a-5b56-485c-ba18-b989fcd2c7c4", - "name": "noteTargets" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "302f2a25-0661-4e15-b258-b1a5bdd0446c", - "type": "RELATION", - "name": "pet", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.337Z", - "updatedAt": "2025-06-09T18:53:51.337Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "petId" - }, - "isLabelSyncedWithName": false, - "label": "Pet", - "description": "NoteTargets Pet", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62855e83-6d97-4c48-bffc-c17e8e955820", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "302f2a25-0661-4e15-b258-b1a5bdd0446c", - "name": "pet" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "9b15e22f-72e4-454f-928a-aecbd4b70b4c", - "name": "noteTargets" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e2a2856b-1b86-4a5b-9561-e35d430ef18a", - "type": "RELATION", - "name": "surveyResult", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.520Z", - "updatedAt": "2025-06-09T18:53:52.520Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "surveyResultId" - }, - "isLabelSyncedWithName": false, - "label": "Survey result", - "description": "NoteTargets Survey result", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e58c0a80-38c6-4d18-85b6-7d1e2ad52443", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e2a2856b-1b86-4a5b-9561-e35d430ef18a", - "name": "surveyResult" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b1d902f5-32f4-41fd-ab10-c545c597b33a", - "name": "noteTargets" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c8956380-304b-40ba-8c1d-de5ed23359d0", - "nameSingular": "dashboard", - "namePlural": "dashboards", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2024-01-01T00:00:00.000Z", - "updatedAt": "2024-01-01T00:00:00.000Z", - "labelIdentifierFieldMetadataId": "953265d2-718b-4f62-9c27-e8846918a649", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Dashboard", - "labelPlural": "Dashboards", - "description": "A dashboard", - "icon": "IconChartBar", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "dashboard-id-field", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2024-01-01T00:00:00.000Z", - "updatedAt": "2024-01-01T00:00:00.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "953265d2-718b-4f62-9c27-e8846918a649", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2024-01-01T00:00:00.000Z", - "updatedAt": "2024-01-01T00:00:00.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "Dashboard name", - "icon": "IconChartBar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "dashboard-createdAt-field", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2024-01-01T00:00:00.000Z", - "updatedAt": "2024-01-01T00:00:00.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "dashboard-updatedAt-field", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2024-01-01T00:00:00.000Z", - "updatedAt": "2024-01-01T00:00:00.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e58c0a80-38c6-4d18-85b6-7d1e2ad52443", - "nameSingular": "surveyResult", - "namePlural": "surveyResults", - "isCustom": true, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:52.492Z", - "updatedAt": "2025-06-09T18:53:52.516Z", - "labelIdentifierFieldMetadataId": "74f7f0ad-6f42-430f-ac26-4ec0ea4b29cf", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Survey result", - "labelPlural": "Survey results", - "description": null, - "icon": "IconRulerMeasure", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8163eab2-3a22-4d63-9b7a-e233ae51f995", - "type": "RELATION", - "name": "favorites", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.520Z", - "updatedAt": "2025-06-09T18:53:52.520Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Favorites", - "description": "Favorites tied to the Survey result", - "icon": "IconHeart", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e58c0a80-38c6-4d18-85b6-7d1e2ad52443", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "8163eab2-3a22-4d63-9b7a-e233ae51f995", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b129cd82-41f3-43ca-a527-6365a0cf7090", - "name": "surveyResult" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9c169852-bee1-460d-98b5-651be2542395", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.492Z", - "updatedAt": "2025-06-09T18:53:52.492Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "74f7f0ad-6f42-430f-ac26-4ec0ea4b29cf", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.492Z", - "updatedAt": "2025-06-09T18:53:52.492Z", - "defaultValue": "'Untitled'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "Name", - "icon": "IconAbc" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "40e223e3-92c0-4d3e-a80b-2cd1d1bb2832", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.492Z", - "updatedAt": "2025-06-09T18:53:52.492Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e8de3fc3-54ae-466b-accb-7a0c3cd05464", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.492Z", - "updatedAt": "2025-06-09T18:53:52.492Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2234209a-0065-4671-ad3b-a2a2c3928f8a", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.492Z", - "updatedAt": "2025-06-09T18:53:52.492Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Deletion date", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "611c7567-40cb-468c-bfd3-03641b728181", - "type": "ACTOR", - "name": "createdBy", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.492Z", - "updatedAt": "2025-06-09T18:53:52.492Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "178f19e1-7698-4ede-a2b9-87c059b9eb56", - "type": "POSITION", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.492Z", - "updatedAt": "2025-06-09T18:53:52.492Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "Position", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "45087d5a-372a-457b-b39e-0a973bd9bd97", - "type": "RELATION", - "name": "timelineActivities", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.520Z", - "updatedAt": "2025-06-09T18:53:52.520Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "TimelineActivities", - "description": "TimelineActivities tied to the Survey result", - "icon": "IconTimelineEvent", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e58c0a80-38c6-4d18-85b6-7d1e2ad52443", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "45087d5a-372a-457b-b39e-0a973bd9bd97", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d983cb00-c992-429a-a536-69d99e0eee14", - "name": "surveyResult" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b1d902f5-32f4-41fd-ab10-c545c597b33a", - "type": "RELATION", - "name": "noteTargets", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.520Z", - "updatedAt": "2025-06-09T18:53:52.520Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "NoteTargets", - "description": "NoteTargets tied to the Survey result", - "icon": "IconCheckbox", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e58c0a80-38c6-4d18-85b6-7d1e2ad52443", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b1d902f5-32f4-41fd-ab10-c545c597b33a", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "e2a2856b-1b86-4a5b-9561-e35d430ef18a", - "name": "surveyResult" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8f4633cd-b642-4238-a3e7-76bba59f075c", - "type": "RELATION", - "name": "attachments", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.520Z", - "updatedAt": "2025-06-09T18:53:52.520Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Attachments", - "description": "Attachments tied to the Survey result", - "icon": "IconFileImport", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e58c0a80-38c6-4d18-85b6-7d1e2ad52443", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "8f4633cd-b642-4238-a3e7-76bba59f075c", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "40f37c0d-99f5-49a4-b57f-18fbeeb07757", - "name": "surveyResult" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a4c055c6-df30-4cdf-9622-3d3db93b4337", - "type": "TS_VECTOR", - "name": "searchVector", - "isCustom": false, - "isActive": false, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.545Z", - "updatedAt": "2025-06-09T18:53:52.545Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "df47aa15-c29d-40a0-ac2a-5f3de6917e05", - "type": "NUMBER", - "name": "score", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.933Z", - "updatedAt": "2025-06-09T18:53:52.933Z", - "defaultValue": null, - "options": null, - "settings": { - "type": "number", - "dataType": "float", - "decimals": 3 - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Score (Float 3 decimals)", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5fda8ecf-397a-4547-84f8-811b5051db79", - "type": "NUMBER", - "name": "percentageOfCompletion", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.934Z", - "updatedAt": "2025-06-09T18:53:52.934Z", - "defaultValue": null, - "options": null, - "settings": { - "type": "percentage", - "dataType": "float", - "decimals": 6 - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Percentage of completion (Float 3 decimals + percentage)", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1de0eae5-1336-4781-bd70-37456911bdf5", - "type": "NUMBER", - "name": "participants", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.936Z", - "updatedAt": "2025-06-09T18:53:52.936Z", - "defaultValue": null, - "options": null, - "settings": { - "type": "number", - "dataType": "int" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Participants (Int)", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4998ea2f-d943-46f8-99f6-cd48af79187f", - "type": "NUMBER", - "name": "averageEstimatedNumberOfAtomsInTheUniverse", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.937Z", - "updatedAt": "2025-06-09T18:53:52.937Z", - "defaultValue": null, - "options": null, - "settings": { - "type": "number", - "dataType": "bigint" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Average estimated number of atoms in the universe (BigInt)", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2026d762-1ed3-4034-830b-9e658c4bca8c", - "type": "TEXT", - "name": "comments", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.938Z", - "updatedAt": "2025-06-09T18:53:52.938Z", - "defaultValue": "''", - "options": null, - "settings": { - "displayedMaxRows": 5 - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Comments (Max 5 rows)", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7738ef9a-a310-4b1d-8c9c-ad17e213c7fa", - "type": "TEXT", - "name": "shortNotes", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.938Z", - "updatedAt": "2025-06-09T18:53:52.938Z", - "defaultValue": "''", - "options": null, - "settings": { - "displayedMaxRows": 1 - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Short notes (Max 1 row)", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ea4ca74a-498e-4af8-91b1-e6d9e1f85c4c", - "type": "RELATION", - "name": "taskTargets", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.521Z", - "updatedAt": "2025-06-09T18:53:52.521Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "TaskTargets", - "description": "TaskTargets tied to the Survey result", - "icon": "IconCheckbox", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "e58c0a80-38c6-4d18-85b6-7d1e2ad52443", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ea4ca74a-498e-4af8-91b1-e6d9e1f85c4c", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "393c9bb2-b10a-4fd6-a7a7-88095e7c648f", - "name": "surveyResult" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "df24f198-ac9c-4e00-b5c8-6dec9a413610", - "nameSingular": "apiKey", - "namePlural": "apiKeys", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "8156ee7f-7d5e-49a2-acd6-8891d448d60a", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "API Key", - "labelPlural": "API Keys", - "description": "An API key", - "icon": "IconRobot", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8156ee7f-7d5e-49a2-acd6-8891d448d60a", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "ApiKey name", - "icon": "IconLink" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "60e05849-fe26-44db-82a2-fbefa2565f5b", - "type": "DATE_TIME", - "name": "expiresAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Expiration date", - "description": "ApiKey expiration date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2213b36b-0d1a-4b4c-add3-1e607f73775e", - "type": "DATE_TIME", - "name": "revokedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Revocation date", - "description": "ApiKey revocation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "cf2a21c5-ec31-4b1f-b29b-d5516a345a7f", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2b9e8e19-1aa5-42fc-81ba-31363fd4f007", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6a4d9374-4ed3-455a-8003-3f310f2327a1", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a16ae3ec-ece0-4ca2-83c7-30dffcc5647d", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d7802b9b-71f5-4ae9-9d52-6d1aca373a2b", - "nameSingular": "viewFilterGroup", - "namePlural": "viewFilterGroups", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "a33dc2c3-cc88-4e23-9865-34c92c3a5dc3", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "View Filter Group", - "labelPlural": "View Filter Groups", - "description": "(System) View Filter Groups", - "icon": "IconFilterBolt", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "40b89ee4-240a-4f49-90e9-d73fbd94ed26", - "type": "UUID", - "name": "parentViewFilterGroupId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Parent View Filter Group Id", - "description": "Parent View Filter Group", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "85a3d3b6-63f1-4c3e-8d71-035ba06a09f9", - "type": "SELECT", - "name": "logicalOperator", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'NOT'", - "options": [ - { - "id": "85f3c0a8-23d2-4778-bdfe-33697a443fc4", - "color": "blue", - "label": "AND", - "value": "AND", - "position": 0 - }, - { - "id": "b1711128-4140-4a1f-9129-caf5e504f8b1", - "color": "green", - "label": "OR", - "value": "OR", - "position": 1 - }, - { - "id": "c4e0ffc1-047a-4aa0-88c9-2574d10f45e0", - "color": "red", - "label": "NOT", - "value": "NOT", - "position": 2 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Logical Operator", - "description": "Logical operator for the filter group", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2ed8746a-7cc5-42c9-94df-6513b75eaf93", - "type": "NUMBER", - "name": "positionInViewFilterGroup", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position in view filter group", - "description": "Position in the parent view filter group", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a33dc2c3-cc88-4e23-9865-34c92c3a5dc3", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8b4a1c7f-ea69-4892-87af-d3d5bd79a04a", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "429087ec-0f9a-4d02-813f-248ef4c949e4", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "95130b58-e22f-44ea-9c25-e16690cda4d4", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7a74a91b-5e05-4449-9595-dfd634d133b6", - "type": "RELATION", - "name": "view", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "viewId" - }, - "isLabelSyncedWithName": false, - "label": "View", - "description": "View", - "icon": "", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d7802b9b-71f5-4ae9-9d52-6d1aca373a2b", - "nameSingular": "viewFilterGroup", - "namePlural": "viewFilterGroups" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7a74a91b-5e05-4449-9595-dfd634d133b6", - "name": "view" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "668c57be-d876-4bbe-bf09-5c86d979c919", - "name": "viewFilterGroups" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "2dda0482-1274-43cf-887c-196aca5732ac", - "imageIdentifierFieldMetadataId": null, - "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", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "fc5dd779-4990-4a31-a119-eecc01d5a52e", - "type": "DATE_TIME", - "name": "happensAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "37aa405b-0c5c-4796-ba65-50f9457673ce", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Event name", - "description": "Event name", - "icon": "IconAbc" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c12fc1bf-ffff-4893-9d24-c6113c25f3cd", - "type": "RAW_JSON", - "name": "properties", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Event details", - "description": "Json value for event details", - "icon": "IconListDetails" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "30fb98af-f10e-44da-b9fd-16226ba43c3d", - "type": "TEXT", - "name": "linkedRecordCachedName", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Linked Record cached name", - "description": "Cached record name", - "icon": "IconAbc" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7dadabe4-28bc-42fe-8569-9e43a4f52795", - "type": "UUID", - "name": "linkedRecordId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Linked Record id", - "description": "Linked Record id", - "icon": "IconAbc" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "62a5d19c-69c0-4b40-94e3-c90c7dc0ca76", - "type": "UUID", - "name": "linkedObjectMetadataId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Linked Object Metadata Id", - "description": "Linked Object Metadata Id", - "icon": "IconAbc" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2dda0482-1274-43cf-887c-196aca5732ac", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "508abd61-5f61-4879-acb5-7944cd6aee24", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "04e58492-b393-4641-a8a6-fc1e49a0f98e", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "dfe57802-ba3d-4205-9d33-33e179843c25", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "49381568-46d2-472e-b3dd-712a5ecbc91f", - "type": "RELATION", - "name": "workspaceMember", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workspaceMemberId" - }, - "isLabelSyncedWithName": false, - "label": "Workspace Member", - "description": "Event workspace member", - "icon": "IconCircleUser", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "49381568-46d2-472e-b3dd-712a5ecbc91f", - "name": "workspaceMember" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "bbd2f2ea-e5de-4494-8f14-f3233ff751c0", - "name": "timelineActivities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3e88da0b-1d84-43d3-b75e-8e7b55ef423c", - "type": "RELATION", - "name": "person", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "label": "Person", - "description": "Event person", - "icon": "IconUser", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3e88da0b-1d84-43d3-b75e-8e7b55ef423c", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a0c65226-6ea1-4324-8abf-a2a91a9a6c75", - "name": "timelineActivities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "873e176a-fc0b-42cb-b4d2-4c11569e4c18", - "type": "RELATION", - "name": "company", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "companyId" - }, - "isLabelSyncedWithName": false, - "label": "Company", - "description": "Event company", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "873e176a-fc0b-42cb-b4d2-4c11569e4c18", - "name": "company" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5f5b9615-6773-4dff-9913-c437685a704b", - "name": "timelineActivities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "477a0642-da68-4aff-94a6-f55a4d53337b", - "type": "RELATION", - "name": "opportunity", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "opportunityId" - }, - "isLabelSyncedWithName": false, - "label": "Opportunity", - "description": "Event opportunity", - "icon": "IconTargetArrow", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "477a0642-da68-4aff-94a6-f55a4d53337b", - "name": "opportunity" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ebc969ed-a08d-4e56-a6df-9d98930faa84", - "name": "timelineActivities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "394a9497-491c-49f5-a8a4-d5f74e9003f3", - "type": "RELATION", - "name": "note", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "noteId" - }, - "isLabelSyncedWithName": false, - "label": "Note", - "description": "Event note", - "icon": "IconTargetArrow", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "46d270fd-7b29-4a75-9943-27c8594b1f3c", - "nameSingular": "note", - "namePlural": "notes" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "394a9497-491c-49f5-a8a4-d5f74e9003f3", - "name": "note" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "503766e0-f1d2-4702-b6bf-c301a19582fa", - "name": "timelineActivities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b13e5081-f064-4be1-bfe5-48f5e1ed2d62", - "type": "RELATION", - "name": "task", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "taskId" - }, - "isLabelSyncedWithName": false, - "label": "Task", - "description": "Event task", - "icon": "IconTargetArrow", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "83b1dd88-82e5-4d8c-b52b-81e5302adf58", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b13e5081-f064-4be1-bfe5-48f5e1ed2d62", - "name": "task" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6c0e54d4-0ae2-4aba-9bbb-fa176bb60add", - "name": "timelineActivities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e79188eb-d3a0-4c26-aeab-c37f4b675966", - "type": "RELATION", - "name": "workflow", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowId" - }, - "isLabelSyncedWithName": false, - "label": "Workflow", - "description": "Event workflow", - "icon": "IconTargetArrow", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "3d041dc9-e4f0-4cd0-ad45-7d15080c4ac7", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e79188eb-d3a0-4c26-aeab-c37f4b675966", - "name": "workflow" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1bedb47b-1bdd-4d01-bd99-6382b707f5a3", - "name": "timelineActivities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "57c2fbe0-ec1d-49c9-ba4e-c7c024a8f400", - "type": "RELATION", - "name": "workflowVersion", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowVersionId" - }, - "isLabelSyncedWithName": false, - "label": "WorkflowVersion", - "description": "Event workflow version", - "icon": "IconTargetArrow", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4534bb30-62fb-46fd-899b-c03348acd97a", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "57c2fbe0-ec1d-49c9-ba4e-c7c024a8f400", - "name": "workflowVersion" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "440f9262-bd36-42f3-b90d-b79632b4790c", - "name": "timelineActivities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3ed67245-68ed-4452-9453-cfa21e16e1cc", - "type": "RELATION", - "name": "workflowRun", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowRunId" - }, - "isLabelSyncedWithName": false, - "label": "Workflow Run", - "description": "Event workflow run", - "icon": "IconTargetArrow", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "fac890af-68c5-4718-a16b-7401b1868429", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3ed67245-68ed-4452-9453-cfa21e16e1cc", - "name": "workflowRun" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "fe09259f-de35-4e8d-83b4-1c1137c16fd4", - "name": "timelineActivities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "fcecfd43-5fdb-4414-b05a-7888b0afe39e", - "type": "RELATION", - "name": "rocket", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.886Z", - "updatedAt": "2025-06-09T18:53:50.886Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "rocketId" - }, - "isLabelSyncedWithName": false, - "label": "Rocket", - "description": "TimelineActivities Rocket", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c73c0408-222b-4214-a855-f6bb88ee8ebc", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "fcecfd43-5fdb-4414-b05a-7888b0afe39e", - "name": "rocket" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "cdcf6aa3-55c5-4b33-83c4-1ad75871d9c5", - "name": "timelineActivities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ccd688fd-77b7-44a6-b723-ef81aba000e2", - "type": "RELATION", - "name": "pet", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.337Z", - "updatedAt": "2025-06-09T18:53:51.337Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "petId" - }, - "isLabelSyncedWithName": false, - "label": "Pet", - "description": "TimelineActivities Pet", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62855e83-6d97-4c48-bffc-c17e8e955820", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ccd688fd-77b7-44a6-b723-ef81aba000e2", - "name": "pet" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6bcc33d7-e4f3-4f24-a24a-903297c99f4a", - "name": "timelineActivities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d983cb00-c992-429a-a536-69d99e0eee14", - "type": "RELATION", - "name": "surveyResult", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.520Z", - "updatedAt": "2025-06-09T18:53:52.520Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "surveyResultId" - }, - "isLabelSyncedWithName": false, - "label": "Survey result", - "description": "TimelineActivities Survey result", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e58c0a80-38c6-4d18-85b6-7d1e2ad52443", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d983cb00-c992-429a-a536-69d99e0eee14", - "name": "surveyResult" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "45087d5a-372a-457b-b39e-0a973bd9bd97", - "name": "timelineActivities" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "cbe0ae42-a8f4-4166-817b-96e647aae5dd", - "nameSingular": "messageThread", - "namePlural": "messageThreads", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "76d4c949-95d0-4968-90eb-bc84ce7fd172", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Message Thread", - "labelPlural": "Message Threads", - "description": "A group of related messages (e.g. email thread, chat thread)", - "icon": "IconMessage", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "76d4c949-95d0-4968-90eb-bc84ce7fd172", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "138560c6-54e9-4c1d-b2bf-40fccca30d98", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f05440c4-da21-4588-9f92-b475615aca9c", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "054046f3-3926-4b0a-bc44-49e9b990606a", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a48c2807-443d-41c7-8a37-8f211a6372ba", - "type": "RELATION", - "name": "messages", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Messages", - "description": "Messages from the thread.", - "icon": "IconMessage", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "cbe0ae42-a8f4-4166-817b-96e647aae5dd", - "nameSingular": "messageThread", - "namePlural": "messageThreads" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "04dc5940-3a62-4536-ad57-c96f913cf67b", - "nameSingular": "message", - "namePlural": "messages" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a48c2807-443d-41c7-8a37-8f211a6372ba", - "name": "messages" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "f2dc3f17-b0e1-4910-927f-e92f05e42e33", - "name": "messageThread" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "cad90776-17ac-4b9b-a3cd-43a6eb0b4d46", - "nameSingular": "viewGroup", - "namePlural": "viewGroups", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "f77a936e-89bd-4e28-bddf-2448753b2575", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "View Group", - "labelPlural": "View Groups", - "description": "(System) View Groups", - "icon": "IconTag", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8d66bb04-cb06-40dd-97d1-bbe507ad642a", - "type": "UUID", - "name": "fieldMetadataId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Field Metadata Id", - "description": "View Group target field", - "icon": "IconTag" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "887e7bad-7805-4cb8-8c28-8c2ee1d0adaa", - "type": "BOOLEAN", - "name": "isVisible", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": true, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Visible", - "description": "View Group visibility", - "icon": "IconEye" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "84e57515-d65f-46e4-b6a8-04009167528e", - "type": "TEXT", - "name": "fieldValue", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Field Value", - "description": "Group by this field value", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "95cc6a71-5f1b-4a1b-b357-6a73c74e206f", - "type": "NUMBER", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "View Field position", - "icon": "IconList" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f77a936e-89bd-4e28-bddf-2448753b2575", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4aed6954-d58d-45ac-b6d4-c1e55c98d094", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5d7b7fca-b737-4f48-a5b6-d7d3b316f7b3", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d2c54e2e-9e33-455c-9a9a-6349206fbdea", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9376e026-5d61-4577-92f9-e02700bdda68", - "type": "RELATION", - "name": "view", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "viewId" - }, - "isLabelSyncedWithName": false, - "label": "View", - "description": "View Group related view", - "icon": "IconLayoutCollage", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "cad90776-17ac-4b9b-a3cd-43a6eb0b4d46", - "nameSingular": "viewGroup", - "namePlural": "viewGroups" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "9376e026-5d61-4577-92f9-e02700bdda68", - "name": "view" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "57d6b91e-cd37-49a3-8660-24c34b336936", - "name": "viewGroups" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c73c0408-222b-4214-a855-f6bb88ee8ebc", - "nameSingular": "rocket", - "namePlural": "rockets", - "isCustom": true, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:50.879Z", - "updatedAt": "2025-06-09T18:53:50.881Z", - "labelIdentifierFieldMetadataId": "cd48fb0f-0a7c-4515-8475-91d7cff13940", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Rocket", - "labelPlural": "Rockets", - "description": "A rocket", - "icon": "IconRocket", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f1fe2a8b-3106-46f7-9863-3203dc569621", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.879Z", - "updatedAt": "2025-06-09T18:53:50.879Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "370ab5c7-1670-4141-acad-867df808464e", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.879Z", - "updatedAt": "2025-06-09T18:53:50.879Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Deletion date", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8a5a4474-979a-46a5-8053-60e1e3b588da", - "type": "ACTOR", - "name": "createdBy", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.879Z", - "updatedAt": "2025-06-09T18:53:50.879Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d518d7a9-4030-4494-82e3-e7ac00394bde", - "type": "POSITION", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.879Z", - "updatedAt": "2025-06-09T18:53:50.879Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "Position", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "cdcf6aa3-55c5-4b33-83c4-1ad75871d9c5", - "type": "RELATION", - "name": "timelineActivities", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.886Z", - "updatedAt": "2025-06-09T18:53:50.886Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "TimelineActivities", - "description": "TimelineActivities tied to the Rocket", - "icon": "IconTimelineEvent", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c73c0408-222b-4214-a855-f6bb88ee8ebc", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "cdcf6aa3-55c5-4b33-83c4-1ad75871d9c5", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "fcecfd43-5fdb-4414-b05a-7888b0afe39e", - "name": "rocket" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d76f1516-46ee-4947-887d-be1ea137d09d", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.879Z", - "updatedAt": "2025-06-09T18:53:50.879Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "cd48fb0f-0a7c-4515-8475-91d7cff13940", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.879Z", - "updatedAt": "2025-06-09T18:53:50.879Z", - "defaultValue": "'Untitled'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "Name", - "icon": "IconAbc" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6a5059e4-deec-4c80-ba81-930673a7857a", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.879Z", - "updatedAt": "2025-06-09T18:53:50.879Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b0df6dca-c0cd-4b7e-9f20-9dd31544fdb0", - "type": "RELATION", - "name": "favorites", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.887Z", - "updatedAt": "2025-06-09T18:53:50.887Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Favorites", - "description": "Favorites tied to the Rocket", - "icon": "IconHeart", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c73c0408-222b-4214-a855-f6bb88ee8ebc", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b0df6dca-c0cd-4b7e-9f20-9dd31544fdb0", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "00de8998-a745-405e-9254-4f08005d9f66", - "name": "rocket" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8ce9346a-698f-4870-a931-d4ef20c8fb99", - "type": "RELATION", - "name": "attachments", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.889Z", - "updatedAt": "2025-06-09T18:53:50.889Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Attachments", - "description": "Attachments tied to the Rocket", - "icon": "IconFileImport", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c73c0408-222b-4214-a855-f6bb88ee8ebc", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "8ce9346a-698f-4870-a931-d4ef20c8fb99", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a9006098-f8ac-479a-b4c8-e60b50439531", - "name": "rocket" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5795845a-5b56-485c-ba18-b989fcd2c7c4", - "type": "RELATION", - "name": "noteTargets", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.890Z", - "updatedAt": "2025-06-09T18:53:50.890Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "NoteTargets", - "description": "NoteTargets tied to the Rocket", - "icon": "IconCheckbox", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c73c0408-222b-4214-a855-f6bb88ee8ebc", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5795845a-5b56-485c-ba18-b989fcd2c7c4", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5f5cc0c7-534f-4a43-8f9b-a78a5e32c0fe", - "name": "rocket" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a858d85a-f3b4-47ff-a82c-e2dd4f106155", - "type": "RELATION", - "name": "taskTargets", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.890Z", - "updatedAt": "2025-06-09T18:53:50.890Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "TaskTargets", - "description": "TaskTargets tied to the Rocket", - "icon": "IconCheckbox", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c73c0408-222b-4214-a855-f6bb88ee8ebc", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a858d85a-f3b4-47ff-a82c-e2dd4f106155", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "98348674-2701-4300-83fc-26d26e8928cc", - "name": "rocket" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "683ab4d4-70fb-4fc9-a765-e77755a8f30e", - "type": "TS_VECTOR", - "name": "searchVector", - "isCustom": false, - "isActive": false, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.914Z", - "updatedAt": "2025-06-09T18:53:50.914Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "" - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c5bdd9b9-06c5-450a-86b7-cb91f3c33b94", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "b25e9bc9-e04f-482a-8e8c-0dfaa1549936", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Message Participant", - "labelPlural": "Message Participants", - "description": "Message Participants", - "icon": "IconUserCircle", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ceeccfe5-d8a2-42b8-9568-cfd596f04a8c", - "type": "SELECT", - "name": "role", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'FROM'", - "options": [ - { - "id": "edc6f452-4ecc-4ff7-b30c-18575dbe0bfd", - "color": "green", - "label": "From", - "value": "from", - "position": 0 - }, - { - "id": "6c9f1924-7194-474b-92cc-964abafb2538", - "color": "blue", - "label": "To", - "value": "to", - "position": 1 - }, - { - "id": "56d201e9-5625-4dfa-b561-6640d56380dc", - "color": "orange", - "label": "Cc", - "value": "cc", - "position": 2 - }, - { - "id": "ca9d402f-b0a9-4a21-a497-db7fcd18483f", - "color": "red", - "label": "Bcc", - "value": "bcc", - "position": 3 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Role", - "description": "Role", - "icon": "IconAt" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b25e9bc9-e04f-482a-8e8c-0dfaa1549936", - "type": "TEXT", - "name": "handle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Handle", - "description": "Handle", - "icon": "IconAt" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d90fc4cd-53e1-4c6a-a011-ef166846daf5", - "type": "TEXT", - "name": "displayName", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Display Name", - "description": "Display Name", - "icon": "IconUser" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a0d08523-dfaa-4dde-a8a9-e1003eb6c7b4", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b7f9af04-557e-4dab-8be7-20ab7638a3d0", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b583630c-1a40-4aac-8936-c5000b400a69", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a386e1e5-be42-4cef-a293-b3321c10cf4a", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "22682985-d10f-4f5f-bf2e-977babfd6b85", - "type": "RELATION", - "name": "message", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageId" - }, - "isLabelSyncedWithName": false, - "label": "Message", - "description": "Message", - "icon": "IconMessage", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c5bdd9b9-06c5-450a-86b7-cb91f3c33b94", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "04dc5940-3a62-4536-ad57-c96f913cf67b", - "nameSingular": "message", - "namePlural": "messages" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "22682985-d10f-4f5f-bf2e-977babfd6b85", - "name": "message" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "fa1bcb96-3fce-45be-bff2-f7b1447bb35e", - "name": "messageParticipants" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "fe4bd25a-5bfb-4c3b-8947-af44cca0009a", - "type": "RELATION", - "name": "person", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "label": "Person", - "description": "Person", - "icon": "IconUser", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c5bdd9b9-06c5-450a-86b7-cb91f3c33b94", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "fe4bd25a-5bfb-4c3b-8947-af44cca0009a", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "7b26a561-1bc3-4a50-a340-3b0f21d28e47", - "name": "messageParticipants" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1d843eae-0490-4518-aadd-97fda8fa3851", - "type": "RELATION", - "name": "workspaceMember", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workspaceMemberId" - }, - "isLabelSyncedWithName": false, - "label": "Workspace Member", - "description": "Workspace member", - "icon": "IconCircleUser", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c5bdd9b9-06c5-450a-86b7-cb91f3c33b94", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1d843eae-0490-4518-aadd-97fda8fa3851", - "name": "workspaceMember" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "dc3e5858-3aa6-4d5d-8ff4-af658b6e6df1", - "name": "messageParticipants" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "3c00f509-e1df-49c3-a672-f522262c0940", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "View", - "labelPlural": "Views", - "description": "(System) Views", - "icon": "IconLayoutCollage", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3c00f509-e1df-49c3-a672-f522262c0940", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "View name", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b2379ed8-7f4c-49f5-a517-9b25bd6fc761", - "type": "UUID", - "name": "objectMetadataId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Object Metadata Id", - "description": "View target object", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ce34d97e-8487-4fff-a642-3e7a222642ec", - "type": "TEXT", - "name": "type", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'table'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Type", - "description": "View type", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "37a12b4f-31fa-42ac-bc64-b7120db0b701", - "type": "SELECT", - "name": "key", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'INDEX'", - "options": [ - { - "id": "3d25ba30-07dc-40a3-8dba-6abddaf34f48", - "color": "red", - "label": "Index", - "value": "INDEX", - "position": 0 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Key", - "description": "View key", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "77cc1de3-e6d2-4f40-a8fb-294d82357361", - "type": "TEXT", - "name": "icon", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Icon", - "description": "View icon", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1b8392db-291f-4b1c-b6ea-3117bd675d89", - "type": "TEXT", - "name": "kanbanFieldMetadataId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "kanbanfieldMetadataId", - "description": "View Kanban column field", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4ed9b885-b900-4fb1-842a-81a954dc70f6", - "type": "POSITION", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "View position", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "aa98f3fa-8ce4-4d45-9257-700a00cfbc8c", - "type": "BOOLEAN", - "name": "isCompact", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Compact View", - "description": "Describes if the view is in compact mode", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f147badb-513a-4bf1-9474-798f14086d4a", - "type": "SELECT", - "name": "openRecordIn", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'SIDE_PANEL'", - "options": [ - { - "id": "ae4caacf-3237-4b2c-a381-bd0e94bde149", - "color": "green", - "label": "Side Panel", - "value": "SIDE_PANEL", - "position": 0 - }, - { - "id": "19e1835b-bba8-4c14-87e2-37effa9703d3", - "color": "blue", - "label": "Record Page", - "value": "RECORD_PAGE", - "position": 1 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Open Record In", - "description": "Display the records in a side panel or in a record page", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "75392b5a-5471-4133-a290-cce1cb3fe025", - "type": "SELECT", - "name": "kanbanAggregateOperation", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'COUNT'", - "options": [ - { - "id": "fb152180-d3e2-42a6-82a3-8d6d1964f57a", - "color": "red", - "label": "Average", - "value": "AVG", - "position": 0 - }, - { - "id": "b386c993-bdbf-4b78-866b-f1bf925cf22b", - "color": "purple", - "label": "Count", - "value": "COUNT", - "position": 1 - }, - { - "id": "94af6ae3-0955-40de-a01b-d3a668563248", - "color": "sky", - "label": "Maximum", - "value": "MAX", - "position": 2 - }, - { - "id": "81c6b0ed-90b4-4da4-8357-cfe40d1d2645", - "color": "turquoise", - "label": "Minimum", - "value": "MIN", - "position": 3 - }, - { - "id": "9c17efbb-9a40-4917-bc1b-794fbcf18045", - "color": "yellow", - "label": "Sum", - "value": "SUM", - "position": 4 - }, - { - "id": "5f0ead42-68cb-4f09-8db5-dc00c8c15a7d", - "color": "red", - "label": "Count empty", - "value": "COUNT_EMPTY", - "position": 5 - }, - { - "id": "f00675a0-c1c2-4769-8cc5-5cf7a3bcf70f", - "color": "purple", - "label": "Count not empty", - "value": "COUNT_NOT_EMPTY", - "position": 6 - }, - { - "id": "ba2528e8-290c-4b9c-861d-5702852a1c78", - "color": "sky", - "label": "Count unique values", - "value": "COUNT_UNIQUE_VALUES", - "position": 7 - }, - { - "id": "53018dce-5f24-4d4e-8285-c4c33ec93de4", - "color": "turquoise", - "label": "Percent empty", - "value": "PERCENTAGE_EMPTY", - "position": 8 - }, - { - "id": "335ffa62-9282-44c7-a541-0cf3f8cf5542", - "color": "yellow", - "label": "Percent not empty", - "value": "PERCENTAGE_NOT_EMPTY", - "position": 9 - }, - { - "id": "7aa0ed5e-1046-4325-99ad-a1b84958fce8", - "color": "red", - "label": "Count true", - "value": "COUNT_TRUE", - "position": 10 - }, - { - "id": "5d8519d2-a4be-4041-bb2c-f319a297fe3a", - "color": "purple", - "label": "Count false", - "value": "COUNT_FALSE", - "position": 11 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Aggregate operation", - "description": "Optional aggregate operation", - "icon": "IconCalculator" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e72a82f9-ded3-4b4d-be2b-07777cf38558", - "type": "UUID", - "name": "kanbanAggregateOperationFieldMetadataId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Field metadata used for aggregate operation", - "description": "Field metadata used for aggregate operation", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4a9f9d5e-2a77-4f35-b155-d2f65dd57c20", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "cf69bb60-aabf-4e1a-a005-f94865a278ad", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "07686040-b95d-443f-b2b7-0e9150a584c4", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c4baef4e-18af-46ca-84af-d13372bcc484", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2262da8a-a08c-4a2e-b28b-e7a471c6309f", - "type": "RELATION", - "name": "viewFields", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "View Fields", - "description": "View Fields", - "icon": "IconTag", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "45ff61b7-21cd-4c9a-99cc-1a7f63032949", - "nameSingular": "viewField", - "namePlural": "viewFields" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "2262da8a-a08c-4a2e-b28b-e7a471c6309f", - "name": "viewFields" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "fc9bb55d-ad75-4e86-ae17-d9dfe354ef5f", - "name": "view" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "57d6b91e-cd37-49a3-8660-24c34b336936", - "type": "RELATION", - "name": "viewGroups", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "View Groups", - "description": "View Groups", - "icon": "IconTag", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "cad90776-17ac-4b9b-a3cd-43a6eb0b4d46", - "nameSingular": "viewGroup", - "namePlural": "viewGroups" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "57d6b91e-cd37-49a3-8660-24c34b336936", - "name": "viewGroups" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "9376e026-5d61-4577-92f9-e02700bdda68", - "name": "view" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "22aae767-b427-4c0a-8a53-a2e4b82b51cc", - "type": "RELATION", - "name": "viewFilters", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "View Filters", - "description": "View Filters", - "icon": "IconFilterBolt", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "8a9fa581-d75d-495e-8215-cd7c11ea598e", - "nameSingular": "viewFilter", - "namePlural": "viewFilters" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "22aae767-b427-4c0a-8a53-a2e4b82b51cc", - "name": "viewFilters" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "efbea1ad-406e-4f62-9d84-68fdd8b04fba", - "name": "view" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "668c57be-d876-4bbe-bf09-5c86d979c919", - "type": "RELATION", - "name": "viewFilterGroups", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "View Filter Groups", - "description": "View Filter Groups", - "icon": "IconFilterBolt", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "d7802b9b-71f5-4ae9-9d52-6d1aca373a2b", - "nameSingular": "viewFilterGroup", - "namePlural": "viewFilterGroups" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "668c57be-d876-4bbe-bf09-5c86d979c919", - "name": "viewFilterGroups" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "7a74a91b-5e05-4449-9595-dfd634d133b6", - "name": "view" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6e9728f2-081b-4552-9084-ff0abc1703c6", - "type": "RELATION", - "name": "viewSorts", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "View Sorts", - "description": "View Sorts", - "icon": "IconArrowsSort", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0cb72a53-6506-415c-921c-2268680636ca", - "nameSingular": "viewSort", - "namePlural": "viewSorts" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6e9728f2-081b-4552-9084-ff0abc1703c6", - "name": "viewSorts" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ceaeb81a-b576-4c1e-b374-384e80ebbf9c", - "name": "view" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e6d5fcd9-21dc-4b16-965e-a6285622c029", - "type": "RELATION", - "name": "favorites", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Favorites", - "description": "Favorites linked to the view", - "icon": "IconHeart", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e6d5fcd9-21dc-4b16-965e-a6285622c029", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3b5634cd-c68f-490c-a2d1-0ee148a6bb1f", - "name": "view" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "216837d2-ba42-44a8-9889-fb3bfb74bf3e", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Favorite", - "labelPlural": "Favorites", - "description": "A favorite that can be accessed from the left menu", - "icon": "IconHeart", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e26f55ba-d3a0-464a-898d-ef716cb434d9", - "type": "NUMBER", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "Favorite position", - "icon": "IconList" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "216837d2-ba42-44a8-9889-fb3bfb74bf3e", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "88096cc7-49e1-4d00-a410-52cb790bf39f", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e1e969c5-efa0-4afe-9e1f-873ac082b3f6", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e93e5888-3d8d-43aa-a001-e76a908a85b3", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0c94cad0-e994-4185-a8c6-3a63e7a2c4d4", - "type": "RELATION", - "name": "note", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "noteId" - }, - "isLabelSyncedWithName": false, - "label": "Note", - "description": "Favorite note", - "icon": "IconNotes", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "46d270fd-7b29-4a75-9943-27c8594b1f3c", - "nameSingular": "note", - "namePlural": "notes" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "0c94cad0-e994-4185-a8c6-3a63e7a2c4d4", - "name": "note" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "cbd1eab7-4628-45ed-b24b-7bddc0aa1b56", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3b5634cd-c68f-490c-a2d1-0ee148a6bb1f", - "type": "RELATION", - "name": "view", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "viewId" - }, - "isLabelSyncedWithName": false, - "label": "View", - "description": "Favorite view", - "icon": "IconLayoutCollage", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3b5634cd-c68f-490c-a2d1-0ee148a6bb1f", - "name": "view" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "e6d5fcd9-21dc-4b16-965e-a6285622c029", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4e7814ac-54b9-41ea-8a27-ee18bf7351ea", - "type": "RELATION", - "name": "forWorkspaceMember", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "forWorkspaceMemberId" - }, - "isLabelSyncedWithName": false, - "label": "Workspace Member", - "description": "Favorite workspace member", - "icon": "IconCircleUser", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4e7814ac-54b9-41ea-8a27-ee18bf7351ea", - "name": "forWorkspaceMember" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "8fff8dc5-d29c-430a-89bd-1021bfc2ee1e", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d62f0e47-1e2d-4bea-9ab8-cb4ed52a4367", - "type": "RELATION", - "name": "person", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "label": "Person", - "description": "Favorite person", - "icon": "IconUser", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d62f0e47-1e2d-4bea-9ab8-cb4ed52a4367", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "377720cb-dae6-408d-a15e-811ec1fc0b23", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "39056ced-b973-41a7-8a1c-41d4381378bb", - "type": "RELATION", - "name": "company", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "companyId" - }, - "isLabelSyncedWithName": false, - "label": "Company", - "description": "Favorite company", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "39056ced-b973-41a7-8a1c-41d4381378bb", - "name": "company" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d81f0aca-6291-419b-8ecf-feae125832d4", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "53867dda-3fe2-48e3-868f-6ccf04ac1a38", - "type": "RELATION", - "name": "favoriteFolder", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "favoriteFolderId" - }, - "isLabelSyncedWithName": false, - "label": "Favorite Folder", - "description": "The folder this favorite belongs to", - "icon": "IconFolder", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "ab9c539f-e084-4766-97c7-28fd85116001", - "nameSingular": "favoriteFolder", - "namePlural": "favoriteFolders" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "53867dda-3fe2-48e3-868f-6ccf04ac1a38", - "name": "favoriteFolder" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1f3b1fef-037e-4399-9809-0b9807658ce1", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "11032cbd-6d29-499d-90c0-e7b5992b26e3", - "type": "RELATION", - "name": "opportunity", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "opportunityId" - }, - "isLabelSyncedWithName": false, - "label": "Opportunity", - "description": "Favorite opportunity", - "icon": "IconTargetArrow", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "11032cbd-6d29-499d-90c0-e7b5992b26e3", - "name": "opportunity" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "95426ef2-2a54-4364-82d5-74f6b8201087", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "cb37eb2d-89ff-4fe9-82d1-4d9151feba13", - "type": "RELATION", - "name": "workflow", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowId" - }, - "isLabelSyncedWithName": false, - "label": "Workflow", - "description": "Favorite workflow", - "icon": "IconSettingsAutomation", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "3d041dc9-e4f0-4cd0-ad45-7d15080c4ac7", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "cb37eb2d-89ff-4fe9-82d1-4d9151feba13", - "name": "workflow" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "35e3b029-4f79-40f2-8a91-ec3344563ea2", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d0afae27-97ec-4a1e-bcd3-01713fd77828", - "type": "RELATION", - "name": "workflowVersion", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowVersionId" - }, - "isLabelSyncedWithName": false, - "label": "Workflow", - "description": "Favorite workflow version", - "icon": "IconSettingsAutomation", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4534bb30-62fb-46fd-899b-c03348acd97a", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d0afae27-97ec-4a1e-bcd3-01713fd77828", - "name": "workflowVersion" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "c7ea1e1d-651a-4a3b-9645-21239ff1d468", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "abd0bed2-d856-4fb3-8396-2e750d377ff1", - "type": "RELATION", - "name": "workflowRun", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowRunId" - }, - "isLabelSyncedWithName": false, - "label": "Workflow", - "description": "Favorite workflow run", - "icon": "IconSettingsAutomation", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "fac890af-68c5-4718-a16b-7401b1868429", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "abd0bed2-d856-4fb3-8396-2e750d377ff1", - "name": "workflowRun" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "79f05bdb-1efb-4079-ab9d-a0d38fca8448", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e0f63ba2-a19a-4eff-b9f1-f1aff9eb057e", - "type": "RELATION", - "name": "task", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "taskId" - }, - "isLabelSyncedWithName": false, - "label": "Task", - "description": "Favorite task", - "icon": "IconCheckbox", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "83b1dd88-82e5-4d8c-b52b-81e5302adf58", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e0f63ba2-a19a-4eff-b9f1-f1aff9eb057e", - "name": "task" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b9edc0a8-9412-4454-a2b0-5129d94a2f28", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "00de8998-a745-405e-9254-4f08005d9f66", - "type": "RELATION", - "name": "rocket", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.887Z", - "updatedAt": "2025-06-09T18:53:50.887Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "rocketId" - }, - "isLabelSyncedWithName": false, - "label": "Rocket", - "description": "Favorites Rocket", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c73c0408-222b-4214-a855-f6bb88ee8ebc", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "00de8998-a745-405e-9254-4f08005d9f66", - "name": "rocket" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b0df6dca-c0cd-4b7e-9f20-9dd31544fdb0", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4d2c41a4-caea-4a3c-bdf3-42f2c89c6882", - "type": "RELATION", - "name": "pet", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.337Z", - "updatedAt": "2025-06-09T18:53:51.337Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "petId" - }, - "isLabelSyncedWithName": false, - "label": "Pet", - "description": "Favorites Pet", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62855e83-6d97-4c48-bffc-c17e8e955820", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4d2c41a4-caea-4a3c-bdf3-42f2c89c6882", - "name": "pet" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "fbf13575-7e51-4546-865d-0cc8cdcc1875", - "name": "favorites" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b129cd82-41f3-43ca-a527-6365a0cf7090", - "type": "RELATION", - "name": "surveyResult", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.520Z", - "updatedAt": "2025-06-09T18:53:52.520Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "surveyResultId" - }, - "isLabelSyncedWithName": false, - "label": "Survey result", - "description": "Favorites Survey result", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e58c0a80-38c6-4d18-85b6-7d1e2ad52443", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b129cd82-41f3-43ca-a527-6365a0cf7090", - "name": "surveyResult" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "8163eab2-3a22-4d63-9b7a-e233ae51f995", - "name": "favorites" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ab9c539f-e084-4766-97c7-28fd85116001", - "nameSingular": "favoriteFolder", - "namePlural": "favoriteFolders", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "299a6546-47f3-4966-86ac-980e2d3afaa6", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Favorite Folder", - "labelPlural": "Favorite Folders", - "description": "A Folder of favorites", - "icon": "IconFolder", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b33279ff-c0cc-4208-8bbd-e5ebe99035a3", - "type": "NUMBER", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "Favorite folder position", - "icon": "IconList" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7f042d41-58d9-49eb-a0af-7c91b83ee038", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "Name of the favorite folder", - "icon": "IconText" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "299a6546-47f3-4966-86ac-980e2d3afaa6", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "dd928a4c-9784-4549-83fa-34c8a6b0d017", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d775c114-5a38-4138-93de-30b815063e2d", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7d447a83-ac55-4937-bb6d-e6ffebb313dc", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1f3b1fef-037e-4399-9809-0b9807658ce1", - "type": "RELATION", - "name": "favorites", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Favorites", - "description": "Favorites in this folder", - "icon": "IconHeart", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "ab9c539f-e084-4766-97c7-28fd85116001", - "nameSingular": "favoriteFolder", - "namePlural": "favoriteFolders" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1f3b1fef-037e-4399-9809-0b9807658ce1", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "53867dda-3fe2-48e3-868f-6ccf04ac1a38", - "name": "favoriteFolder" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "7b15c355-4375-4db1-a639-b3162aebad1a", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Attachment", - "labelPlural": "Attachments", - "description": "An attachment", - "icon": "IconFileImport", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7b15c355-4375-4db1-a639-b3162aebad1a", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "Attachment name", - "icon": "IconFileUpload" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f614be9a-dbbe-42c7-b77b-d0aed3e41bfc", - "type": "TEXT", - "name": "fullPath", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Full path", - "description": "Attachment full path", - "icon": "IconLink" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "bb1727ac-2393-456a-897b-69a85e3c905f", - "type": "TEXT", - "name": "type", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Type", - "description": "Attachment type", - "icon": "IconList" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c4a98c90-74ed-4fbe-a072-35d0d4f9bf98", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8395ae85-224f-4b88-aa05-d36f113176e4", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e4f22f2d-7280-42b7-9413-edd3c99b7c05", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f71da7a1-df41-410c-a8bb-b18684f941fb", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3f57b6c6-d485-440c-82ad-fb35530a0bf9", - "type": "RELATION", - "name": "author", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "authorId" - }, - "isLabelSyncedWithName": false, - "label": "Author", - "description": "Attachment author", - "icon": "IconCircleUser", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3f57b6c6-d485-440c-82ad-fb35530a0bf9", - "name": "author" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "78acb16d-7732-4d6f-88f4-8de411f73f14", - "name": "authoredAttachments" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8bca7ad2-050c-4c81-874d-afe2712a3dc5", - "type": "RELATION", - "name": "task", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "taskId" - }, - "isLabelSyncedWithName": false, - "label": "Task", - "description": "Attachment task", - "icon": "IconNotes", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "83b1dd88-82e5-4d8c-b52b-81e5302adf58", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "8bca7ad2-050c-4c81-874d-afe2712a3dc5", - "name": "task" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0acbfb8f-e077-4011-9419-e9184e6c4a0e", - "name": "attachments" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9c872831-da9b-494b-9d2e-bf4b0b86a1ea", - "type": "RELATION", - "name": "note", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "noteId" - }, - "isLabelSyncedWithName": false, - "label": "Note", - "description": "Attachment note", - "icon": "IconNotes", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "46d270fd-7b29-4a75-9943-27c8594b1f3c", - "nameSingular": "note", - "namePlural": "notes" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "9c872831-da9b-494b-9d2e-bf4b0b86a1ea", - "name": "note" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ac2e5ed6-900e-46c1-bf1c-8d97516ba626", - "name": "attachments" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4e924062-611f-48e6-a410-695da5a1d1e6", - "type": "RELATION", - "name": "person", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "label": "Person", - "description": "Attachment person", - "icon": "IconUser", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4e924062-611f-48e6-a410-695da5a1d1e6", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3b7d53c6-b440-4609-919d-782ff4f404e4", - "name": "attachments" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b9307d91-87f5-49f2-9d55-891dbf0ccd06", - "type": "RELATION", - "name": "company", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "companyId" - }, - "isLabelSyncedWithName": false, - "label": "Company", - "description": "Attachment company", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b9307d91-87f5-49f2-9d55-891dbf0ccd06", - "name": "company" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4ea94a98-007a-4631-b0fc-546fb8267d7d", - "name": "attachments" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "80ecde59-9d80-4015-b2a7-ba13d0af5d2a", - "type": "RELATION", - "name": "opportunity", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "opportunityId" - }, - "isLabelSyncedWithName": false, - "label": "Opportunity", - "description": "Attachment opportunity", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "80ecde59-9d80-4015-b2a7-ba13d0af5d2a", - "name": "opportunity" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "960fe10d-a2b0-4320-9676-79663aab4de2", - "name": "attachments" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a9006098-f8ac-479a-b4c8-e60b50439531", - "type": "RELATION", - "name": "rocket", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.889Z", - "updatedAt": "2025-06-09T18:53:50.889Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "rocketId" - }, - "isLabelSyncedWithName": false, - "label": "Rocket", - "description": "Attachments Rocket", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c73c0408-222b-4214-a855-f6bb88ee8ebc", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a9006098-f8ac-479a-b4c8-e60b50439531", - "name": "rocket" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "8ce9346a-698f-4870-a931-d4ef20c8fb99", - "name": "attachments" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7924055e-e975-4f45-8854-b60b1b1e5446", - "type": "RELATION", - "name": "pet", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.337Z", - "updatedAt": "2025-06-09T18:53:51.337Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "petId" - }, - "isLabelSyncedWithName": false, - "label": "Pet", - "description": "Attachments Pet", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62855e83-6d97-4c48-bffc-c17e8e955820", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7924055e-e975-4f45-8854-b60b1b1e5446", - "name": "pet" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "7d562e8f-66eb-4444-b0a7-6028781b83e7", - "name": "attachments" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "40f37c0d-99f5-49a4-b57f-18fbeeb07757", - "type": "RELATION", - "name": "surveyResult", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.520Z", - "updatedAt": "2025-06-09T18:53:52.520Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "surveyResultId" - }, - "isLabelSyncedWithName": false, - "label": "Survey result", - "description": "Attachments Survey result", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e58c0a80-38c6-4d18-85b6-7d1e2ad52443", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "40f37c0d-99f5-49a4-b57f-18fbeeb07757", - "name": "surveyResult" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "8f4633cd-b642-4238-a3e7-76bba59f075c", - "name": "attachments" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "955353b0-fefe-473a-a99e-46b9097ac488", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "857e3ba1-7711-4f0f-87ea-efaba1a67881", - "imageIdentifierFieldMetadataId": null, - "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", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ae77eb8c-12e8-4f90-bb2f-0eb9725bb7c6", - "type": "TEXT", - "name": "messageExternalId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Message External Id", - "description": "Message id from the messaging provider", - "icon": "IconHash" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "95a11ed7-4509-4cca-967a-efff34f52362", - "type": "TEXT", - "name": "messageThreadExternalId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Thread External Id", - "description": "Thread id from the messaging provider", - "icon": "IconHash" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3cf95ffe-4faf-45b9-aec2-5b9ea120d28e", - "type": "SELECT", - "name": "direction", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'INCOMING'", - "options": [ - { - "id": "7606ebab-4767-413d-8073-4b4043ef405c", - "color": "green", - "label": "Incoming", - "value": "INCOMING", - "position": 0 - }, - { - "id": "fb291ca3-f8e6-43d1-a680-831880913e2d", - "color": "blue", - "label": "Outgoing", - "value": "OUTGOING", - "position": 1 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Direction", - "description": "Message Direction", - "icon": "IconDirection" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "857e3ba1-7711-4f0f-87ea-efaba1a67881", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d3eea643-b86e-4117-a5c1-e60faa9f4f9c", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0712a9c1-290a-4bc4-998c-ccaa017e2013", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "307a5a81-802c-4005-9e33-2d9c5230b227", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a9adf0e3-ec3d-4521-8da0-07c7e8e9a45b", - "type": "RELATION", - "name": "messageChannel", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageChannelId" - }, - "isLabelSyncedWithName": false, - "label": "Message Channel Id", - "description": "Message Channel Id", - "icon": "IconHash", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "955353b0-fefe-473a-a99e-46b9097ac488", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "089247da-73c3-456c-a274-eefc605eb3fa", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a9adf0e3-ec3d-4521-8da0-07c7e8e9a45b", - "name": "messageChannel" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "acf71ec0-3fd7-4cb8-b741-b8a9421166a9", - "name": "messageChannelMessageAssociations" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1d10579c-4efa-41ae-b967-54a14a361834", - "type": "RELATION", - "name": "message", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageId" - }, - "isLabelSyncedWithName": false, - "label": "Message Id", - "description": "Message Id", - "icon": "IconHash", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "955353b0-fefe-473a-a99e-46b9097ac488", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "04dc5940-3a62-4536-ad57-c96f913cf67b", - "nameSingular": "message", - "namePlural": "messages" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1d10579c-4efa-41ae-b967-54a14a361834", - "name": "message" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b582f4a6-1e0b-4557-b9f0-d949f51d81f7", - "name": "messageChannelMessageAssociations" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8a9fa581-d75d-495e-8215-cd7c11ea598e", - "nameSingular": "viewFilter", - "namePlural": "viewFilters", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "031a2143-2246-4e12-88b3-f7555a664d94", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "View Filter", - "labelPlural": "View Filters", - "description": "(System) View Filters", - "icon": "IconFilterBolt", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "30b25683-c105-4784-b678-1acfb2f787ec", - "type": "UUID", - "name": "fieldMetadataId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Field Metadata Id", - "description": "View Filter target field", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "165ed294-5cd0-4685-b202-7917f62f6419", - "type": "TEXT", - "name": "operand", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'Contains'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Operand", - "description": "View Filter operand", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "bff4b29c-6b01-410e-83e5-0affa67fdca0", - "type": "TEXT", - "name": "value", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Value", - "description": "View Filter value", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9e2f9820-ceed-48b6-9a96-d193fb9de668", - "type": "TEXT", - "name": "displayValue", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Display Value", - "description": "View Filter Display Value", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "dee0c4b8-1e24-459e-a427-ad6e87ef4972", - "type": "UUID", - "name": "viewFilterGroupId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "View Filter Group Id", - "description": "View Filter Group", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2e99bdca-bc2e-4e5b-97ec-a5d2d974b68f", - "type": "NUMBER", - "name": "positionInViewFilterGroup", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position in view filter group", - "description": "Position in the view filter group", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c5eb8e3c-d912-4f56-819d-fe7f5cc8eeb9", - "type": "TEXT", - "name": "subFieldName", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Sub field name", - "description": "Sub field name", - "icon": "IconSubtask" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "031a2143-2246-4e12-88b3-f7555a664d94", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b27b8eaf-af49-4e6a-88ca-b90235846e37", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b537e56c-d093-4a13-afbf-931c92f68072", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8346947f-cae5-451e-816d-7d8d7c9d80b5", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "efbea1ad-406e-4f62-9d84-68fdd8b04fba", - "type": "RELATION", - "name": "view", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "viewId" - }, - "isLabelSyncedWithName": false, - "label": "View", - "description": "View Filter related view", - "icon": "IconLayoutCollage", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "8a9fa581-d75d-495e-8215-cd7c11ea598e", - "nameSingular": "viewFilter", - "namePlural": "viewFilters" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "efbea1ad-406e-4f62-9d84-68fdd8b04fba", - "name": "view" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "22aae767-b427-4c0a-8a53-a2e4b82b51cc", - "name": "viewFilters" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "83b1dd88-82e5-4d8c-b52b-81e5302adf58", - "nameSingular": "task", - "namePlural": "tasks", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "4c378eec-ec8c-49e1-9eb9-ad217b8f7f6a", - "imageIdentifierFieldMetadataId": null, - "shortcut": "T", - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Task", - "labelPlural": "Tasks", - "description": "A task", - "icon": "IconCheckbox", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a504eabc-a878-48eb-a5a4-3d8cac6bccc4", - "type": "POSITION", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "Task record position", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4c378eec-ec8c-49e1-9eb9-ad217b8f7f6a", - "type": "TEXT", - "name": "title", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Title", - "description": "Task title", - "icon": "IconNotes" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9b83c867-18c1-4c25-bd45-2d3a38ebdbb3", - "type": "RICH_TEXT_V2", - "name": "bodyV2", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "markdown": "''", - "blocknote": "''" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Body", - "description": "Task body", - "icon": "IconFilePencil" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "21a8ca12-470c-41b1-ad6d-d804dfa67519", - "type": "DATE_TIME", - "name": "dueAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Due Date", - "description": "Task due date", - "icon": "IconCalendarEvent" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6fe0c758-bfa0-4c75-8471-1f7ad28970ca", - "type": "SELECT", - "name": "status", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'TODO'", - "options": [ - { - "id": "203a7c1e-a3b0-447f-8ba3-dd8d9be3a3e3", - "color": "sky", - "label": "To do", - "value": "TODO", - "position": 0 - }, - { - "id": "450e92de-84c5-4df2-94a6-3b55c439114f", - "color": "purple", - "label": "In progress", - "value": "IN_PROGRESS", - "position": 1 - }, - { - "id": "11b72137-3905-44e0-b63e-4b5eb1630103", - "color": "green", - "label": "Done", - "value": "DONE", - "position": 2 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Status", - "description": "Task status", - "icon": "IconCheck" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2d75296b-5d39-4fb4-8228-c94447085b0e", - "type": "ACTOR", - "name": "createdBy", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "context": {} - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "27443165-8f25-4018-b1d6-f9f44e17efba", - "type": "TS_VECTOR", - "name": "searchVector", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "22007121-7ed0-40e4-8f79-0d845cd511ed", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0a93249d-6546-4ce6-b6f4-14b9a62b4575", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d3746719-1644-4812-b41e-d2c930ff3d43", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f76b5f0f-5a05-48d4-9f5f-83f18180aa79", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b9edc0a8-9412-4454-a2b0-5129d94a2f28", - "type": "RELATION", - "name": "favorites", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Favorites", - "description": "Favorites linked to the task", - "icon": "IconHeart", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "83b1dd88-82e5-4d8c-b52b-81e5302adf58", - "nameSingular": "task", - "namePlural": "tasks" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "b9edc0a8-9412-4454-a2b0-5129d94a2f28", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "e0f63ba2-a19a-4eff-b9f1-f1aff9eb057e", - "name": "task" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1ee92229-0b16-4e8d-bce4-567d52a50ad5", - "type": "RELATION", - "name": "taskTargets", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Relations", - "description": "Task targets", - "icon": "IconArrowUpRight", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "83b1dd88-82e5-4d8c-b52b-81e5302adf58", - "nameSingular": "task", - "namePlural": "tasks" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1ee92229-0b16-4e8d-bce4-567d52a50ad5", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d3d2afcb-3514-4f15-8d62-4c9c999cd38f", - "name": "task" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0acbfb8f-e077-4011-9419-e9184e6c4a0e", - "type": "RELATION", - "name": "attachments", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Attachments", - "description": "Task attachments", - "icon": "IconFileImport", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "83b1dd88-82e5-4d8c-b52b-81e5302adf58", - "nameSingular": "task", - "namePlural": "tasks" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "0acbfb8f-e077-4011-9419-e9184e6c4a0e", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "8bca7ad2-050c-4c81-874d-afe2712a3dc5", - "name": "task" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "86dc3cad-1833-4a29-80f2-cb8a4c1e5394", - "type": "RELATION", - "name": "assignee", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "assigneeId" - }, - "isLabelSyncedWithName": false, - "label": "Assignee", - "description": "Task assignee", - "icon": "IconUserCircle", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "83b1dd88-82e5-4d8c-b52b-81e5302adf58", - "nameSingular": "task", - "namePlural": "tasks" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "86dc3cad-1833-4a29-80f2-cb8a4c1e5394", - "name": "assignee" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1d00b961-1c91-4e35-af43-dfc67fd9a6cf", - "name": "assignedTasks" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6c0e54d4-0ae2-4aba-9bbb-fa176bb60add", - "type": "RELATION", - "name": "timelineActivities", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Timeline Activities", - "description": "Timeline Activities linked to the task.", - "icon": "IconTimelineEvent", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "83b1dd88-82e5-4d8c-b52b-81e5302adf58", - "nameSingular": "task", - "namePlural": "tasks" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6c0e54d4-0ae2-4aba-9bbb-fa176bb60add", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b13e5081-f064-4be1-bfe5-48f5e1ed2d62", - "name": "task" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "33e3ed71-cf2f-4790-bb11-cf3dd96fa822", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Task Target", - "labelPlural": "Task Targets", - "description": "A task target", - "icon": "IconCheckbox", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "33e3ed71-cf2f-4790-bb11-cf3dd96fa822", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8da619d3-79d3-4560-9337-12ead382635f", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "bdb63d57-1f12-43aa-8f5d-d0d3fd521ec2", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9fe99aa6-e1be-4b1c-b4d0-86db85a81e92", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d3d2afcb-3514-4f15-8d62-4c9c999cd38f", - "type": "RELATION", - "name": "task", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "taskId" - }, - "isLabelSyncedWithName": false, - "label": "Task", - "description": "TaskTarget task", - "icon": "IconCheckbox", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "83b1dd88-82e5-4d8c-b52b-81e5302adf58", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d3d2afcb-3514-4f15-8d62-4c9c999cd38f", - "name": "task" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1ee92229-0b16-4e8d-bce4-567d52a50ad5", - "name": "taskTargets" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6857a9be-9d00-45a9-91dc-0a1e55463db4", - "type": "RELATION", - "name": "person", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "personId" - }, - "isLabelSyncedWithName": false, - "label": "Person", - "description": "TaskTarget person", - "icon": "IconUser", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6857a9be-9d00-45a9-91dc-0a1e55463db4", - "name": "person" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ddcd104b-4b9b-46ee-8dd5-0a5d1d0de809", - "name": "taskTargets" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "78adb2b7-69f2-4a94-9fb0-4d06a44b4418", - "type": "RELATION", - "name": "company", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "companyId" - }, - "isLabelSyncedWithName": false, - "label": "Company", - "description": "TaskTarget company", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "78adb2b7-69f2-4a94-9fb0-4d06a44b4418", - "name": "company" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "e2e49a83-15d5-4d8b-8597-d8aa3f197876", - "name": "taskTargets" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5c606215-8084-4096-8dc1-b7928e4bd15a", - "type": "RELATION", - "name": "opportunity", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "opportunityId" - }, - "isLabelSyncedWithName": false, - "label": "Opportunity", - "description": "TaskTarget opportunity", - "icon": "IconTargetArrow", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5c606215-8084-4096-8dc1-b7928e4bd15a", - "name": "opportunity" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6227ad06-c41f-42e4-9052-badf25e7f654", - "name": "taskTargets" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "98348674-2701-4300-83fc-26d26e8928cc", - "type": "RELATION", - "name": "rocket", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:50.890Z", - "updatedAt": "2025-06-09T18:53:50.890Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "rocketId" - }, - "isLabelSyncedWithName": false, - "label": "Rocket", - "description": "TaskTargets Rocket", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c73c0408-222b-4214-a855-f6bb88ee8ebc", - "nameSingular": "rocket", - "namePlural": "rockets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "98348674-2701-4300-83fc-26d26e8928cc", - "name": "rocket" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a858d85a-f3b4-47ff-a82c-e2dd4f106155", - "name": "taskTargets" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "41435fe0-cc28-4385-9d4c-dc637817dfb4", - "type": "RELATION", - "name": "pet", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.338Z", - "updatedAt": "2025-06-09T18:53:51.338Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "petId" - }, - "isLabelSyncedWithName": false, - "label": "Pet", - "description": "TaskTargets Pet", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "62855e83-6d97-4c48-bffc-c17e8e955820", - "nameSingular": "pet", - "namePlural": "pets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "41435fe0-cc28-4385-9d4c-dc637817dfb4", - "name": "pet" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "c5be53cd-fbf9-4977-88f7-bfab9c588ecc", - "name": "taskTargets" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "393c9bb2-b10a-4fd6-a7a7-88095e7c648f", - "type": "RELATION", - "name": "surveyResult", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:52.521Z", - "updatedAt": "2025-06-09T18:53:52.521Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "surveyResultId" - }, - "isLabelSyncedWithName": false, - "label": "Survey result", - "description": "TaskTargets Survey result", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "e58c0a80-38c6-4d18-85b6-7d1e2ad52443", - "nameSingular": "surveyResult", - "namePlural": "surveyResults" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "393c9bb2-b10a-4fd6-a7a7-88095e7c648f", - "name": "surveyResult" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ea4ca74a-498e-4af8-91b1-e6d9e1f85c4c", - "name": "taskTargets" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7ad6021f-d432-4c92-baef-2b632196a62a", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "fe67b947-69c7-4d2b-b98c-e2d497be567b", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Calendar event", - "labelPlural": "Calendar events", - "description": "Calendar events", - "icon": "IconCalendar", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "fe67b947-69c7-4d2b-b98c-e2d497be567b", - "type": "TEXT", - "name": "title", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Title", - "description": "Title", - "icon": "IconH1" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "44a11bbd-6c74-4ce1-a037-fb5f3a5c1aa7", - "type": "BOOLEAN", - "name": "isCanceled", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Is canceled", - "description": "Is canceled", - "icon": "IconCalendarCancel" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "86bf2c57-31b4-4222-97af-4efb195c6435", - "type": "BOOLEAN", - "name": "isFullDay", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Is Full Day", - "description": "Is Full Day", - "icon": "IconHours24" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "85de6f75-4d18-410b-840d-fedf5753df66", - "type": "DATE_TIME", - "name": "startsAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Start Date", - "description": "Start Date", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3283518a-b400-4897-8415-a5f82bfe80dc", - "type": "DATE_TIME", - "name": "endsAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "End Date", - "description": "End Date", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5cb07da2-a573-422a-8490-4037f886c468", - "type": "DATE_TIME", - "name": "externalCreatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation DateTime", - "description": "Creation DateTime", - "icon": "IconCalendarPlus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "829b509d-a7c3-42b2-93c0-fc321219ef77", - "type": "DATE_TIME", - "name": "externalUpdatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Update DateTime", - "description": "Update DateTime", - "icon": "IconCalendarCog" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "aebdadf8-477f-43cc-9aaf-46b5d214a11e", - "type": "TEXT", - "name": "description", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Description", - "description": "Description", - "icon": "IconFileDescription" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "590bce34-1866-40a4-b0d0-ec932008dd3a", - "type": "TEXT", - "name": "location", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Location", - "description": "Location", - "icon": "IconMapPin" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "21f219f9-c531-4ab5-9640-69230baa83d0", - "type": "TEXT", - "name": "iCalUid", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "iCal UID", - "description": "iCal UID", - "icon": "IconKey" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3018608d-47a8-42bc-8dce-7c78be76207e", - "type": "TEXT", - "name": "conferenceSolution", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Conference Solution", - "description": "Conference Solution", - "icon": "IconScreenShare" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "10b3f751-0089-4dbe-a985-8837b8319c37", - "type": "LINKS", - "name": "conferenceLink", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "primaryLinkUrl": "''", - "secondaryLinks": "'[]'", - "primaryLinkLabel": "''" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Meet Link", - "description": "Meet Link", - "icon": "IconLink" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "738fbb9d-c1f2-4474-9f56-c8551da3fd34", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e21a6ea6-4024-434e-bece-7e05defd2527", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a10787f7-345c-4b6e-af1b-8be40f461a68", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9f33912c-5fc6-4842-a384-a2413f476ef4", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f5e2b471-0a15-4329-9483-80f859cbb048", - "type": "RELATION", - "name": "calendarChannelEventAssociations", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Calendar Channel Event Associations", - "description": "Calendar Channel Event Associations", "icon": "IconCalendar", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "7ad6021f-d432-4c92-baef-2b632196a62a", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0afdc892-41cb-4869-98fd-0623162dbdf4", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "f5e2b471-0a15-4329-9483-80f859cbb048", - "name": "calendarChannelEventAssociations" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3d2f517a-6a76-4c29-8d5d-84c6361bebaa", - "name": "calendarEvent" - } - } + "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", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f60bc6d4-7b0a-4955-a728-1b7ef8ea844e", - "type": "RELATION", - "name": "calendarEventParticipants", + "id": "b100f19e-71ad-4ec8-b688-f908e9f41901", + "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-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": "10f573b3-a592-495c-9c90-4820c2e954b1", + "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-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": "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", + "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": "634e848e-ffae-48f8-b96e-c748f06ad81e", + "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-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": "3b0ff5c9-980e-44e1-acd0-586a0b7a110e", + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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": "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, - "label": "Event Participants", - "description": "Event Participants", - "icon": "IconUserCircle", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "7ad6021f-d432-4c92-baef-2b632196a62a", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" + "id": "ffd13062-c19a-4904-a524-6c8560da9be8", + "nameSingular": "workflow", + "namePlural": "workflows" }, "targetObjectMetadata": { "__typename": "Object", - "id": "3dd1c5bd-c964-414d-a52f-c3d182f9eac7", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" + "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", + "nameSingular": "attachment", + "namePlural": "attachments" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "f60bc6d4-7b0a-4955-a728-1b7ef8ea844e", - "name": "calendarEventParticipants" + "id": "60f6933f-ae9d-4224-b1b7-bd3d35a54a00", + "name": "attachments" }, "targetFieldMetadata": { "__typename": "Field", - "id": "3178f466-488b-4e80-8129-7ad753974ce2", - "name": "calendarEvent" + "id": "12247923-3e01-4917-8386-64164fd200dc", + "name": "target" } - } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a0d71906-aa70-46e0-a97e-74332c080fd9", + "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-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": "0591ea73-a468-4170-8f44-90269f7fa180", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "a0d71906-aa70-46e0-a97e-74332c080fd9", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "829b2346-e4be-4de5-8b73-87ebf3b173fd", + "name": "workflow" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "d3408c03-0d38-4706-a2dd-566760199e6f", + "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-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": "326d1da4-64f6-4001-bea2-14cd40bd3fed", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "d3408c03-0d38-4706-a2dd-566760199e6f", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "ddfa2d27-fc46-42da-9c20-648d5ba15135", + "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-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.", + "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": { + "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": "74d5d075-7a00-4b7e-a6f4-6ff9a838377c", + "nameSingular": "workflowAutomatedTrigger", + "namePlural": "workflowAutomatedTriggers" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "ea9365ed-3788-41d8-a878-34366c5bf1c6", + "name": "automatedTriggers" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "a5776889-e2b0-4f17-bbca-6b511e08c1a7", + "name": "workflow" + } + }, + "morphRelations": null + } + ], + "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", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] } ] } @@ -9253,8 +718,8 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "736f6327-d230-4daa-b198-55fdaec9de8e", + "id": "fb79c8a1-e1ec-4db5-bf1f-98b4c0d0820b", + "universalIdentifier": "20202020-0408-4f38-b8a8-4d5e3e26e24d", "nameSingular": "blocklist", "namePlural": "blocklists", "isCustom": false, @@ -9262,10 +727,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "a381b5f6-e2fd-46e0-aee1-8783a7ca90c4", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "labelIdentifierFieldMetadataId": "a9907c37-9f5f-4819-9367-d7481d35ad36", "imageIdentifierFieldMetadataId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "shortcut": null, "isLabelSyncedWithName": false, "isSearchable": false, @@ -9274,143 +740,275 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "labelPlural": "Blocklists", "description": "Blocklist", "icon": "IconForbid2", - "indexMetadataList": [], "fieldsList": [ { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a381b5f6-e2fd-46e0-aee1-8783a7ca90c4", - "type": "TEXT", - "name": "handle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Handle", - "description": "Handle", - "icon": "IconAt" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d6c53a8d-f16f-4a96-8877-29d3c4069091", + "id": "481362a9-2538-41db-8a92-7e597fef395b", + "universalIdentifier": "20202020-b01a-4011-8b11-5a9fc27fbf6e", "type": "UUID", "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", "isCustom": false, "isActive": true, "isSystem": true, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Id", - "description": "Id", - "icon": "Icon123" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "73f10d8a-0b65-4913-acff-e310fb88eb2b", + "id": "b47c3900-61c0-4665-8306-ef56c8cb1218", + "universalIdentifier": "20202020-b01b-4012-9c12-6bafd38fcf7f", "type": "DATE_TIME", "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, "label": "Creation date", "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2382a201-ffba-46cb-a7f2-67346cfb0166", - "type": "DATE_TIME", - "name": "updatedAt", + "icon": "IconCalendar", "isCustom": false, "isActive": true, - "isSystem": false, - "isUIReadOnly": false, + "isSystem": true, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "704a7cf9-9e4e-4563-9da6-0616a973b142", + "id": "2b194c16-e78e-4a5e-a93d-693cafd92a62", + "universalIdentifier": "20202020-b01c-4013-8d13-7cbfe49fdf8f", "type": "DATE_TIME", - "name": "deletedAt", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", "isCustom": false, "isActive": true, - "isSystem": false, - "isUIReadOnly": false, + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "00ed9836-c76d-4dbc-9ea1-a892611a5705", - "type": "RELATION", - "name": "workspaceMember", + "id": "7d884947-b070-4e27-9ebf-439042fa87a2", + "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-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": "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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": { @@ -9419,35 +1017,58 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "joinColumnName": "workspaceMemberId" }, "isLabelSyncedWithName": false, - "label": "WorkspaceMember", - "description": "WorkspaceMember", - "icon": "IconCircleUser", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "736f6327-d230-4daa-b198-55fdaec9de8e", + "id": "fb79c8a1-e1ec-4db5-bf1f-98b4c0d0820b", "nameSingular": "blocklist", "namePlural": "blocklists" }, "targetObjectMetadata": { "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", + "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", "nameSingular": "workspaceMember", "namePlural": "workspaceMembers" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "00ed9836-c76d-4dbc-9ea1-a892611a5705", + "id": "bf1247f9-2941-4d0a-818d-04784cdc9511", "name": "workspaceMember" }, "targetFieldMetadata": { "__typename": "Field", - "id": "9f5669c4-6a99-4b59-ad01-97570cb4b464", + "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 + } + ] } ] } @@ -9456,8 +1077,13465 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", + "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", + "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", + "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", + "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", + "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", + "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-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": "ecc2be3e-3f21-4993-9ea9-4a4bde6b1cc1", + "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-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", + "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", + "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": "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", + "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": "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", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "69a0f302-e2fa-4d84-8116-6759bb98bb3e", + "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-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": "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", + "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-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": "db4b46af-a2eb-447a-bbe5-4a56f36cacd7", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "02741b71-b5df-43ae-9b8c-4b4d824052a0", + "name": "calendarChannels" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "a472eb18-e9db-4782-9cff-4231a70b9cba", + "name": "connectedAccount" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "1b42ad28-703d-465a-b0f5-0b3a1ba2c514", + "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-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "accountOwnerId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "dc94a21e-9cec-468b-8251-686c0230a854", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "1b42ad28-703d-465a-b0f5-0b3a1ba2c514", + "name": "accountOwner" + }, + "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" + } + }, + "morphRelations": null + } + ], + "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", + "indexWhereClause": null, + "indexType": "BTREE", + "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", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "db4b46af-a2eb-447a-bbe5-4a56f36cacd7", + "universalIdentifier": "20202020-e8f2-40e1-a39c-c0e0039c5034", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels", + "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": "b3b5ff68-a109-4d12-9d39-f4d070fab0cf", + "imageIdentifierFieldMetadataId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Calendar Channel", + "labelPlural": "Calendar Channels", + "description": "Calendar Channels", + "icon": "IconCalendar", + "fieldsList": [ + { + "__typename": "Field", + "id": "6c429587-5710-4e6d-b6dd-ff882759683b", + "universalIdentifier": "20202020-c02a-4031-8a31-1a2f3b4c5d6e", + "type": "UUID", + "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "99adfc6b-bc6f-4086-b5c9-25efaa145f96", + "universalIdentifier": "20202020-c02b-4032-9b32-2b3f4c5d6e7f", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "3ff9a249-aa17-4ac1-9456-0f46b219f412", + "universalIdentifier": "20202020-c02c-4033-8c33-3c4f5d6e7f8a", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "7e3b7a8f-0cb2-4985-9073-31227ee890e6", + "universalIdentifier": "20202020-c02d-4034-9d34-4d5f6e7f8a9b", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "6d8ea0bd-2e0c-4669-a80b-5ea65165532c", + "universalIdentifier": "664db1a0-76f4-4429-8452-f8e250ab7545", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "b32ddc7f-44a5-46bb-853d-fa40e2ecf787", + "universalIdentifier": "6a397eab-3700-4b08-9eb9-d16b61876193", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "d3ebc509-621c-4aff-b731-9e126e837b62", + "universalIdentifier": "566609c9-1c8b-4899-91bb-0af140a89004", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Calendar channel record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "d8123ce9-fa59-40e6-998a-ec0dade36fd5", + "universalIdentifier": "bc9a982c-c314-49d6-818a-2661ce7e918f", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "b3b5ff68-a109-4d12-9d39-f4d070fab0cf", + "universalIdentifier": "20202020-1d08-420a-9aa7-22e0f298232d", + "type": "TEXT", + "name": "handle", + "label": "Handle", + "description": "Handle", + "icon": "IconAt", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "d073a2a1-5049-4e91-ac4c-d118734bb19e", + "universalIdentifier": "20202020-1b07-4796-9f01-d626bab7ca4d", + "type": "SELECT", + "name": "visibility", + "label": "Visibility", + "description": "Visibility", + "icon": "IconEyeglass", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": "'SHARE_EVERYTHING'", + "options": [ + { + "id": "20202020-82a0-4859-b356-f5a1d6e3e53d", + "color": "green", + "label": "Metadata", + "value": "METADATA", + "position": 0 + }, + { + "id": "20202020-e5ec-4df5-ba3f-66ca2a79c283", + "color": "orange", + "label": "Share Everything", + "value": "SHARE_EVERYTHING", + "position": 1 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "0efc2cce-bbe2-4b5f-9533-6da58fe48b9f", + "universalIdentifier": "20202020-50fb-404b-ba28-369911a3793a", + "type": "BOOLEAN", + "name": "isContactAutoCreationEnabled", + "label": "Is Contact Auto Creation Enabled", + "description": "Is Contact Auto Creation Enabled", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": true, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "4bf5c4f5-aa3d-428e-a84b-0b7b67be66b7", + "universalIdentifier": "20202020-b55d-447d-b4df-226319058775", + "type": "SELECT", + "name": "contactAutoCreationPolicy", + "label": "Contact auto creation policy", + "description": "Automatically create records for people you participated with in an event.", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": "'AS_PARTICIPANT_AND_ORGANIZER'", + "options": [ + { + "id": "20202020-47c1-4af1-a8a6-540edeafc55e", + "color": "green", + "label": "As Participant and Organizer", + "value": "AS_PARTICIPANT_AND_ORGANIZER", + "position": 0 + }, + { + "id": "20202020-b3cc-4248-b0d1-c8d45c2418b3", + "color": "orange", + "label": "As Participant", + "value": "AS_PARTICIPANT", + "position": 1 + }, + { + "id": "20202020-84ef-4061-9c22-db596e237ddc", + "color": "blue", + "label": "As Organizer", + "value": "AS_ORGANIZER", + "position": 2 + }, + { + "id": "20202020-f170-491f-9597-0e5817e46c17", + "color": "red", + "label": "None", + "value": "NONE", + "position": 3 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8465be65-bde4-4bc7-ba2f-e70e685ee15b", + "universalIdentifier": "20202020-fe19-4818-8854-21f7b1b43395", + "type": "BOOLEAN", + "name": "isSyncEnabled", + "label": "Is Sync Enabled", + "description": "Is Sync Enabled", + "icon": "IconRefresh", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": true, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "3e3d36df-eba3-4bff-88d4-fb33dfe906b7", + "universalIdentifier": "20202020-bac2-4852-a5cb-7a7898992b70", + "type": "TEXT", + "name": "syncCursor", + "label": "Sync Cursor", + "description": "Sync Cursor. Used for syncing events from the calendar provider", + "icon": "IconReload", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "91515e60-22ce-4441-a664-80b0cdd26bb3", + "universalIdentifier": "20202020-7116-41da-8b4b-035975c4eb6a", + "type": "SELECT", + "name": "syncStatus", + "label": "Sync status", + "description": "Sync status", + "icon": "IconStatusChange", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": null, + "options": [ + { + "id": "20202020-ebdc-4fc8-a5c1-4bc6a90fdc3c", + "color": "yellow", + "label": "Ongoing", + "value": "ONGOING", + "position": 1 + }, + { + "id": "20202020-7126-4c26-9940-f5807ed87266", + "color": "blue", + "label": "Not Synced", + "value": "NOT_SYNCED", + "position": 2 + }, + { + "id": "20202020-0302-4201-bf84-aaa26b7ca94e", + "color": "green", + "label": "Active", + "value": "ACTIVE", + "position": 3 + }, + { + "id": "20202020-6dbb-449d-96b0-092189010f42", + "color": "red", + "label": "Failed Insufficient Permissions", + "value": "FAILED_INSUFFICIENT_PERMISSIONS", + "position": 4 + }, + { + "id": "20202020-935c-4333-a614-f49ee2ec6aa7", + "color": "red", + "label": "Failed Unknown", + "value": "FAILED_UNKNOWN", + "position": 5 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b71cc7c3-3b37-463c-94c2-180f8fc27b19", + "universalIdentifier": "20202020-6246-42e6-b5cd-003bd921782c", + "type": "SELECT", + "name": "syncStage", + "label": "Sync stage", + "description": "Sync stage", + "icon": "IconStatusChange", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": "'PENDING_CONFIGURATION'", + "options": [ + { + "id": "20202020-60c1-40a3-90ae-61d9ee1083c1", + "color": "blue", + "label": "Calendar event list fetch pending", + "value": "CALENDAR_EVENT_LIST_FETCH_PENDING", + "position": 0 + }, + { + "id": "20202020-8652-444a-b72e-d4b7112179ca", + "color": "green", + "label": "Calendar event list fetch scheduled", + "value": "CALENDAR_EVENT_LIST_FETCH_SCHEDULED", + "position": 1 + }, + { + "id": "20202020-e87c-4cfe-aefc-635ad34ef223", + "color": "orange", + "label": "Calendar event list fetch ongoing", + "value": "CALENDAR_EVENT_LIST_FETCH_ONGOING", + "position": 2 + }, + { + "id": "20202020-876f-449d-9f09-de5c369ff95f", + "color": "blue", + "label": "Calendar events import pending", + "value": "CALENDAR_EVENTS_IMPORT_PENDING", + "position": 3 + }, + { + "id": "20202020-3d2a-4acd-a0ed-197343b3bf60", + "color": "green", + "label": "Calendar events import scheduled", + "value": "CALENDAR_EVENTS_IMPORT_SCHEDULED", + "position": 4 + }, + { + "id": "20202020-e762-4152-bb20-29fdd49e1dff", + "color": "orange", + "label": "Calendar events import ongoing", + "value": "CALENDAR_EVENTS_IMPORT_ONGOING", + "position": 5 + }, + { + "id": "20202020-487c-464f-8caa-c6393b82b17c", + "color": "red", + "label": "Failed", + "value": "FAILED", + "position": 6 + }, + { + "id": "20202020-ba03-4221-b186-402662b68493", + "color": "gray", + "label": "Pending configuration", + "value": "PENDING_CONFIGURATION", + "position": 9 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "2af433d0-1a9f-4244-a7ca-2f06f7b8c20f", + "universalIdentifier": "20202020-a934-46f1-a8e7-9568b1e3a53e", + "type": "DATE_TIME", + "name": "syncStageStartedAt", + "label": "Sync stage started at", + "description": "Sync stage started at", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "58f94cb1-1c2e-49a6-8268-1b0eb8daf71b", + "universalIdentifier": "20202020-2ff5-4f70-953a-3d0d36357576", + "type": "DATE_TIME", + "name": "syncedAt", + "label": "Last sync date", + "description": "Last sync date", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "a57d6eec-33c3-4b81-854a-8ce6676b617b", + "universalIdentifier": "20202020-525c-4b76-b9bd-0dd57fd11d61", + "type": "NUMBER", + "name": "throttleFailureCount", + "label": "Throttle Failure Count", + "description": "Throttle Failure Count", + "icon": "IconX", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "0bc78bf5-3fc8-4258-aae9-6780d2d4fefc", + "universalIdentifier": "20202020-afb0-4a9f-979f-2d5087d71d09", + "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": "db4b46af-a2eb-447a-bbe5-4a56f36cacd7", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "acffe46d-155f-4777-93d6-c3de4f859b14", + "nameSingular": "calendarChannelEventAssociation", + "namePlural": "calendarChannelEventAssociations" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "0bc78bf5-3fc8-4258-aae9-6780d2d4fefc", + "name": "calendarChannelEventAssociations" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "bb857bdb-f747-4e18-ab0e-afd57efc2556", + "name": "calendarChannel" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a472eb18-e9db-4782-9cff-4231a70b9cba", + "universalIdentifier": "20202020-95b1-4f44-82dc-61b042ae2414", + "type": "RELATION", + "name": "connectedAccount", + "label": "Connected Account", + "description": "Connected Account", + "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": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "connectedAccountId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "db4b46af-a2eb-447a-bbe5-4a56f36cacd7", + "nameSingular": "calendarChannel", + "namePlural": "calendarChannels" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "dc94a21e-9cec-468b-8251-686c0230a854", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "a472eb18-e9db-4782-9cff-4231a70b9cba", + "name": "connectedAccount" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "02741b71-b5df-43ae-9b8c-4b4d824052a0", + "name": "calendarChannels" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "57c39457-15b2-4f13-9462-ba86610bba8c", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "name": "IDX_7b40c7f03dd1f998ba765ad0730", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + } + ] + } + }, + { + "__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", + "universalIdentifier": "20202020-fe8c-40bc-a681-b80b771449b7", + "nameSingular": "messageChannel", + "namePlural": "messageChannels", + "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": "8b79b447-890b-4e23-b44f-e98cfacd321f", + "imageIdentifierFieldMetadataId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Message Channel", + "labelPlural": "Message Channels", + "description": "Message Channels", + "icon": "IconMessage", + "fieldsList": [ + { + "__typename": "Field", + "id": "51ab716b-65b0-4a36-9f76-dfa0eb185c57", + "universalIdentifier": "20202020-b02a-40c1-8ac1-9eafbacbdced", + "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": "8bc537a3-b904-4ef9-8621-d6ec461858e7", + "universalIdentifier": "20202020-b02b-40c2-9bc2-afbacbdcedfe", + "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": "28c59db5-6dc2-46a0-8487-d1a30979acd1", + "universalIdentifier": "20202020-b02c-40c3-8cc3-bacbdcedfefa", + "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": "5f4cef7b-9a0f-4ff0-9386-2abdf1737b29", + "universalIdentifier": "20202020-b02d-40c4-9dc4-cbdcedfefaab", + "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": "dc39a6d5-924a-4d6d-93bb-5ac2901e2760", + "universalIdentifier": "b7de8fcc-a7c6-4122-b3fa-1fcf8f30931c", + "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": "3fbb82d6-0636-4833-90f9-388f96f336e3", + "universalIdentifier": "88bb6ff1-b8a1-4313-95d4-7879acca0b93", + "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": "4a231bde-59d8-4d0f-b6a9-4c633869190e", + "universalIdentifier": "bc8a36af-8b9c-4548-a0da-c90e899e7243", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Message Channel 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": "c8e7101c-88a6-471d-8b82-5d04d970bcb0", + "universalIdentifier": "5e84794c-6f14-4bdf-81a6-76ee11cda51f", + "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": "049deca1-0345-4f35-a534-8b700f296cd8", + "universalIdentifier": "20202020-6a6b-4532-9767-cbc61b469453", + "type": "SELECT", + "name": "visibility", + "label": "Visibility", + "description": "Visibility", + "icon": "IconEyeglass", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": "'SHARE_EVERYTHING'", + "options": [ + { + "id": "20202020-4548-4830-b3f8-221fd082ebc0", + "color": "green", + "label": "Metadata", + "value": "METADATA", + "position": 0 + }, + { + "id": "20202020-6a42-40a8-b81e-28b7e591c598", + "color": "blue", + "label": "Subject", + "value": "SUBJECT", + "position": 1 + }, + { + "id": "20202020-d520-4cba-8832-5bca315b64f3", + "color": "orange", + "label": "Share Everything", + "value": "SHARE_EVERYTHING", + "position": 2 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8b79b447-890b-4e23-b44f-e98cfacd321f", + "universalIdentifier": "20202020-2c96-43c3-93e3-ed6b1acb69bc", + "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": "d3084e31-e9c3-4c6e-a36a-7f2199313c10", + "universalIdentifier": "20202020-ae95-42d9-a3f1-797a2ea22122", + "type": "SELECT", + "name": "type", + "label": "Type", + "description": "Channel Type", + "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": "'EMAIL'", + "options": [ + { + "id": "20202020-1628-4bc0-aae1-1a46c648cf90", + "color": "green", + "label": "Email", + "value": "EMAIL", + "position": 0 + }, + { + "id": "20202020-fb11-4da3-80fd-b291cda8deb1", + "color": "blue", + "label": "SMS", + "value": "SMS", + "position": 1 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c58b783f-1378-4e1b-952b-4d1bc591c70d", + "universalIdentifier": "20202020-fabd-4f14-b7c6-3310f6d132c6", + "type": "BOOLEAN", + "name": "isContactAutoCreationEnabled", + "label": "Is Contact Auto Creation Enabled", + "description": "Is Contact Auto Creation Enabled", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": true, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "669a5774-4fb4-4d50-bf9e-aaa046b5be5a", + "universalIdentifier": "20202020-fc0e-4ba6-b259-a66ca89cfa38", + "type": "SELECT", + "name": "contactAutoCreationPolicy", + "label": "Contact auto creation policy", + "description": "Automatically create People records when receiving or sending emails", + "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": "'SENT'", + "options": [ + { + "id": "20202020-1923-4ffd-907d-be8cc37ecee5", + "color": "green", + "label": "Sent and Received", + "value": "SENT_AND_RECEIVED", + "position": 0 + }, + { + "id": "20202020-8f6a-44d8-bdbb-90cf8b919467", + "color": "blue", + "label": "Sent", + "value": "SENT", + "position": 1 + }, + { + "id": "20202020-b43e-4bc4-840e-d903a69e2ffc", + "color": "red", + "label": "None", + "value": "NONE", + "position": 2 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "cef9b1cc-be1d-4b07-b7c3-44c8d70fd8cb", + "universalIdentifier": "20202020-cc39-4432-9fe8-ec8ab8bbed95", + "type": "SELECT", + "name": "messageFolderImportPolicy", + "label": "Message folder import policy", + "description": "Message folder import policy", + "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": "'ALL_FOLDERS'", + "options": [ + { + "id": "20202020-140d-4326-978c-83ca0e9a4d8f", + "color": "green", + "label": "All folders", + "value": "ALL_FOLDERS", + "position": 0 + }, + { + "id": "20202020-513a-4b91-9033-5b74b404e2cb", + "color": "blue", + "label": "Selected folders", + "value": "SELECTED_FOLDERS", + "position": 1 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b0e4465a-11e7-4204-92df-35df6a62ca2d", + "universalIdentifier": "20202020-1df5-445d-b4f3-2413ad178431", + "type": "BOOLEAN", + "name": "excludeNonProfessionalEmails", + "label": "Exclude non professional emails", + "description": "Exclude non professional emails", + "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": true, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a0059fe3-6dd7-4d5a-899b-b11ce64afa2f", + "universalIdentifier": "20202020-45a0-4be4-9164-5820a6a109fb", + "type": "BOOLEAN", + "name": "excludeGroupEmails", + "label": "Exclude group emails", + "description": "Exclude group emails", + "icon": "IconUsersGroup", + "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": true, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "636fe531-f240-45f5-a2b1-0f24cf48781c", + "universalIdentifier": "20202020-17c5-4e9f-bc50-af46a89fdd42", + "type": "SELECT", + "name": "pendingGroupEmailsAction", + "label": "Pending group emails action", + "description": "Pending action for group emails", + "icon": "IconUsersGroup", + "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-2ead-4bd1-aa5d-5005c7a956b4", + "color": "red", + "label": "Group emails deletion", + "value": "GROUP_EMAILS_DELETION", + "position": 0 + }, + { + "id": "20202020-155d-447d-a36e-6ecbb30fc37c", + "color": "green", + "label": "Group emails import", + "value": "GROUP_EMAILS_IMPORT", + "position": 1 + }, + { + "id": "20202020-fe98-4018-9f94-f878c22b8ece", + "color": "blue", + "label": "None", + "value": "NONE", + "position": 2 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "bb927c0b-958f-4465-bed6-6b46ed707bc4", + "universalIdentifier": "20202020-d9a6-48e9-990b-b97fdf22e8dd", + "type": "BOOLEAN", + "name": "isSyncEnabled", + "label": "Is Sync Enabled", + "description": "Is Sync Enabled", + "icon": "IconRefresh", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": true, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "84fd28f7-012f-433d-9696-f71cda1b8bbd", + "universalIdentifier": "20202020-79d1-41cf-b738-bcf5ed61e256", + "type": "TEXT", + "name": "syncCursor", + "label": "Last sync cursor", + "description": "Last sync cursor", + "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": "376a4064-ca4d-4c48-a421-2753d5e10c51", + "universalIdentifier": "20202020-263d-4c6b-ad51-137ada56f7d4", + "type": "DATE_TIME", + "name": "syncedAt", + "label": "Last sync date", + "description": "Last sync date", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "51f54c26-c7d3-40f9-acb8-3257d3f030fa", + "universalIdentifier": "20202020-56a1-4f7e-9880-a8493bb899cc", + "type": "SELECT", + "name": "syncStatus", + "label": "Sync status", + "description": "Sync status", + "icon": "IconStatusChange", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": null, + "options": [ + { + "id": "20202020-046b-4bc2-b085-bd69aaa8e577", + "color": "yellow", + "label": "Ongoing", + "value": "ONGOING", + "position": 1 + }, + { + "id": "20202020-09ec-4ea6-9a8a-bf48211b67e2", + "color": "blue", + "label": "Not Synced", + "value": "NOT_SYNCED", + "position": 2 + }, + { + "id": "20202020-2d1b-4d74-9689-9bd28fd3c3f9", + "color": "green", + "label": "Active", + "value": "ACTIVE", + "position": 3 + }, + { + "id": "20202020-0fb2-4a8b-9f9b-569144a45193", + "color": "red", + "label": "Failed Insufficient Permissions", + "value": "FAILED_INSUFFICIENT_PERMISSIONS", + "position": 4 + }, + { + "id": "20202020-bde3-415a-a8ac-55ced6014364", + "color": "red", + "label": "Failed Unknown", + "value": "FAILED_UNKNOWN", + "position": 5 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "05263e9a-16a8-4ac6-a38b-ca265d4ca041", + "universalIdentifier": "20202020-7979-4b08-89fe-99cb5e698767", + "type": "SELECT", + "name": "syncStage", + "label": "Sync stage", + "description": "Sync stage", + "icon": "IconStatusChange", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": "'PENDING_CONFIGURATION'", + "options": [ + { + "id": "20202020-1f62-4d79-a633-33a0e4fce9a6", + "color": "blue", + "label": "Messages list fetch pending", + "value": "MESSAGE_LIST_FETCH_PENDING", + "position": 0 + }, + { + "id": "20202020-d24f-4c3d-94a6-86c42e0f51d7", + "color": "green", + "label": "Messages list fetch scheduled", + "value": "MESSAGE_LIST_FETCH_SCHEDULED", + "position": 1 + }, + { + "id": "20202020-8751-408a-ae46-21a51b76be28", + "color": "orange", + "label": "Messages list fetch ongoing", + "value": "MESSAGE_LIST_FETCH_ONGOING", + "position": 2 + }, + { + "id": "20202020-1cfa-4a7d-a82d-93c8e29d0671", + "color": "blue", + "label": "Messages import pending", + "value": "MESSAGES_IMPORT_PENDING", + "position": 3 + }, + { + "id": "20202020-341e-4fbd-9dbf-30a70828ca69", + "color": "green", + "label": "Messages import scheduled", + "value": "MESSAGES_IMPORT_SCHEDULED", + "position": 4 + }, + { + "id": "20202020-e944-4594-ab81-fdbc53a85026", + "color": "orange", + "label": "Messages import ongoing", + "value": "MESSAGES_IMPORT_ONGOING", + "position": 5 + }, + { + "id": "20202020-f7c5-4756-9084-02f6a0b1a5f8", + "color": "red", + "label": "Failed", + "value": "FAILED", + "position": 6 + }, + { + "id": "20202020-0ede-4c75-84f1-29c8309829ec", + "color": "gray", + "label": "Pending configuration", + "value": "PENDING_CONFIGURATION", + "position": 7 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "aa6aa12a-6778-42fc-8d3f-8dd308bfc49b", + "universalIdentifier": "20202020-8c61-4a42-ae63-73c1c3c52e06", + "type": "DATE_TIME", + "name": "syncStageStartedAt", + "label": "Sync stage started at", + "description": "Sync stage started at", + "icon": "IconHistory", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "6654525b-8215-4193-828e-f58a4ede44f5", + "universalIdentifier": "20202020-0291-42be-9ad0-d578a51684ab", + "type": "NUMBER", + "name": "throttleFailureCount", + "label": "Throttle Failure Count", + "description": "Throttle Failure Count", + "icon": "IconX", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "3c553593-4259-413d-aad8-bb39487649cb", + "universalIdentifier": "20202020-a1e3-4d7f-b5c2-9f8e6d4c3b2a", + "type": "DATE_TIME", + "name": "throttleRetryAfter", + "label": "Throttle Retry After", + "description": "Throttle Retry After", + "icon": "IconClock", + "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": "01d488dc-8cb9-46c2-8039-ca48c7859be4", + "universalIdentifier": "20202020-49a2-44a4-b470-282c0440d15d", + "type": "RELATION", + "name": "connectedAccount", + "label": "Connected Account", + "description": "Connected Account", + "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": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "connectedAccountId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "6fb3608a-7e74-4b6e-94b6-e89e573f80c0", + "nameSingular": "messageChannel", + "namePlural": "messageChannels" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "dc94a21e-9cec-468b-8251-686c0230a854", + "nameSingular": "connectedAccount", + "namePlural": "connectedAccounts" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "01d488dc-8cb9-46c2-8039-ca48c7859be4", + "name": "connectedAccount" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "f35583e2-f7a6-400e-8229-93adae251c25", + "name": "messageChannels" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "6f256134-12bb-432c-81a6-110b6df4e768", + "universalIdentifier": "20202020-49b8-4766-88fd-75f1e21b3d5f", + "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": "6fb3608a-7e74-4b6e-94b6-e89e573f80c0", + "nameSingular": "messageChannel", + "namePlural": "messageChannels" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "e2717a89-8e3e-4d13-b5a0-3cbeaba7d75e", + "nameSingular": "messageChannelMessageAssociation", + "namePlural": "messageChannelMessageAssociations" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "6f256134-12bb-432c-81a6-110b6df4e768", + "name": "messageChannelMessageAssociations" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "a4ece2be-f2d4-4db9-9c98-1491d3ded10f", + "name": "messageChannel" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a8f56178-e803-401a-91fe-a4e084ea8b05", + "universalIdentifier": "20202020-cc39-4432-9fe8-ec8ab8bbed94", + "type": "RELATION", + "name": "messageFolders", + "label": "Message Folders", + "description": "Message Folders", + "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": { + "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": "6fb3608a-7e74-4b6e-94b6-e89e573f80c0", + "nameSingular": "messageChannel", + "namePlural": "messageChannels" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "e123213f-74b3-4667-a970-5708339b9772", + "nameSingular": "messageFolder", + "namePlural": "messageFolders" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "a8f56178-e803-401a-91fe-a4e084ea8b05", + "name": "messageFolders" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "cbc2b85c-eb1f-4f72-9ab0-d496dd268a6f", + "name": "messageChannel" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "15483cc1-2325-47a9-bb29-3474a8979548", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "name": "IDX_bf1967e8710f32f1a65c67fb4b4", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "universalIdentifier": "20202020-b374-4779-a561-80086cb2e17f", + "nameSingular": "company", + "namePlural": "companies", + "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": "c28b62bc-bc08-43de-be9a-2b8250a90555", + "imageIdentifierFieldMetadataId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "shortcut": "C", + "isLabelSyncedWithName": false, + "isSearchable": true, + "duplicateCriteria": [ + [ + "name" + ], + [ + "domainNamePrimaryLinkUrl" + ] + ], + "labelSingular": "Company", + "labelPlural": "Companies", + "description": "A company", + "icon": "IconBuildingSkyscraper", + "fieldsList": [ + { + "__typename": "Field", + "id": "056def72-6560-4fdc-b480-70fe959249e6", + "universalIdentifier": "20202020-c05a-4061-8a61-1e2f3a4b5c6d", + "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": "7f00b215-25ce-4c31-bfc2-d9e62acfb016", + "universalIdentifier": "20202020-c05b-4062-9b62-2f3a4b5c6d7e", + "type": "DATE_TIME", + "name": "createdAt", + "label": "Creation date", + "description": "Creation date", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "08eb3fdd-de2d-42d3-ad80-220fbfc10f6d", + "universalIdentifier": "20202020-c05c-4063-8c63-3a4b5c6d7e8f", + "type": "DATE_TIME", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "1b01322a-8f56-4f97-81ab-b3ac9b19180c", + "universalIdentifier": "20202020-c05d-4064-9d64-4b5c6d7e8f9a", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "c28b62bc-bc08-43de-be9a-2b8250a90555", + "universalIdentifier": "20202020-4d99-4e2e-a84c-4a27837b1ece", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "The company name", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "c2a8c9a7-d5f0-4e37-b95e-f0b1d9d3d803", + "universalIdentifier": "20202020-0c28-43d8-8ba5-3659924d3489", + "type": "LINKS", + "name": "domainName", + "label": "Domain Name", + "description": "The company website URL. We use this url to fetch the company icon", + "icon": "IconLink", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": true, + "createdAt": "2026-02-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": "e42aaab5-145b-4482-8286-c39d70698998", + "universalIdentifier": "20202020-c5ce-4adc-b7b6-9c0979fc55e7", + "type": "ADDRESS", + "name": "address", + "label": "Address", + "description": "Address of the company", + "icon": "IconMap", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "cf594421-ebf1-48bc-af17-9b800e7cd9a4", + "universalIdentifier": "20202020-8965-464a-8a75-74bafc152a0b", + "type": "NUMBER", + "name": "employees", + "label": "Employees", + "description": "Number of employees in the company", + "icon": "IconUsers", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "a954b041-0ce1-461b-9a51-5d97ad46073d", + "universalIdentifier": "20202020-ebeb-4beb-b9ad-6848036fb451", + "type": "LINKS", + "name": "linkedinLink", + "label": "Linkedin", + "description": "The company Linkedin account", + "icon": "IconBrandLinkedin", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "e0b6b64c-b21a-413d-b6ed-80288f850ccb", + "universalIdentifier": "20202020-6f64-4fd9-9580-9c1991c7d8c3", + "type": "LINKS", + "name": "xLink", + "label": "X", + "description": "The company Twitter/X account", + "icon": "IconBrandX", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "8c4dc1f6-ee84-40ce-ba49-fc44c89d8c89", + "universalIdentifier": "20202020-602a-495c-9776-f5d5b11d227b", + "type": "CURRENCY", + "name": "annualRecurringRevenue", + "label": "ARR", + "description": "Annual Recurring Revenue: The actual or estimated annual revenue of the company", + "icon": "IconMoneybag", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "0b9a8bbe-2ffc-4d69-b729-265aec9cd391", + "universalIdentifier": "20202020-ba6b-438a-8213-2c5ba28d76a2", + "type": "BOOLEAN", + "name": "idealCustomerProfile", + "label": "ICP", + "description": "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you", + "icon": "IconTarget", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "04f9b386-061c-4420-95ba-0969a50fa287", + "universalIdentifier": "20202020-9b4e-462b-991d-a0ee33326454", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Company record position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "39a075f3-cdc2-454b-a463-786aa9779500", + "universalIdentifier": "20202020-fabc-451d-ab7d-412170916baa", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "89792e56-2d82-4d5d-9c80-5bab4931313f", + "universalIdentifier": "7444022e-b38f-4d4f-801b-cd664abc4834", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "2721897c-f2bf-4d38-9ad8-75cf58ea8fb4", + "universalIdentifier": "85c71601-72f9-4b7b-b343-d46100b2c74d", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"domainNamePrimaryLinkLabel\"), '') || ' ' || COALESCE(public.unaccent_immutable(\"domainNamePrimaryLinkUrl\"), '') || ' ' || COALESCE(public.unaccent_immutable(TRANSLATE(regexp_replace(\"domainNameSecondaryLinks\"::text, '\"(label|url)\"\\s*:\\s*', '', 'g'), '[]{}\",:', ' ')), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8ec2c996-b695-42d4-a1be-bdc8fcb5925f", + "universalIdentifier": "20202020-c1b5-4120-b0f0-987ca401ed53", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Attachments linked to the company", + "icon": "IconFileImport", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "8ec2c996-b695-42d4-a1be-bdc8fcb5925f", + "name": "attachments" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "12247923-3e01-4917-8386-64164fd200dc", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "94902a74-b8ca-4a56-8573-7469f0b664f6", + "universalIdentifier": "20202020-3213-4ddf-9494-6422bcff8d7c", + "type": "RELATION", + "name": "people", + "label": "People", + "description": "People linked to the company.", + "icon": "IconUsers", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "94902a74-b8ca-4a56-8573-7469f0b664f6", + "name": "people" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "f6be42ac-ccb8-4df0-8c22-a9627d655c76", + "name": "company" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "9b941ed8-0940-4146-91c2-4986bca46f4f", + "universalIdentifier": "20202020-95b8-4e10-9881-edb5d4765f9d", + "type": "RELATION", + "name": "accountOwner", + "label": "Account Owner", + "description": "Your team member responsible for managing the company account", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "accountOwnerId" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": { + "__typename": "Relation", + "type": "MANY_TO_ONE", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "9b941ed8-0940-4146-91c2-4986bca46f4f", + "name": "accountOwner" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "d2110d8d-632d-4c73-b990-ada7bb4acc90", + "name": "accountOwnerForCompanies" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e5fd623a-7386-4915-b4b9-75abb5874d75", + "universalIdentifier": "20202020-cb17-4a61-8f8f-3be6730480de", + "type": "RELATION", + "name": "taskTargets", + "label": "Tasks", + "description": "Tasks tied to the company", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "715103ac-24fe-4406-920c-66acd3f24a84", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "e5fd623a-7386-4915-b4b9-75abb5874d75", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "21de5d13-2d1c-461c-8d1a-b4cbd39cd161", + "universalIdentifier": "20202020-bae0-4556-a74a-a9c686f77a88", + "type": "RELATION", + "name": "noteTargets", + "label": "Notes", + "description": "Notes tied to the company", + "icon": "IconNotes", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "21de5d13-2d1c-461c-8d1a-b4cbd39cd161", + "name": "noteTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "018f73d3-5212-467d-95b6-986772b517b0", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "2bf4c652-38f1-44f7-bdc8-0b8f444be2b7", + "universalIdentifier": "20202020-add3-4658-8e23-d70dccb6d0ec", + "type": "RELATION", + "name": "opportunities", + "label": "Opportunities", + "description": "Opportunities linked to the company.", + "icon": "IconTargetArrow", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "2bf4c652-38f1-44f7-bdc8-0b8f444be2b7", + "name": "opportunities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "4ac9e74d-96c7-46b4-b529-1a188bb11343", + "name": "company" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "7f7d0be5-e54b-4251-a396-b7c9ce21b5d6", + "universalIdentifier": "20202020-4d1d-41ac-b13b-621631298d55", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the company", + "icon": "IconHeart", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "7f7d0be5-e54b-4251-a396-b7c9ce21b5d6", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "39e99ea0-e48b-4c70-8fdd-26ce22a3843f", + "name": "company" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "783946e8-cf8c-49a3-a6f3-6d99ec2816fa", + "universalIdentifier": "20202020-0414-4daf-9c0d-64fe7b27f89f", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Timeline Activities linked to the company", + "icon": "IconIconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "783946e8-cf8c-49a3-a6f3-6d99ec2816fa", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "071a18ef-825c-44c0-a0a5-f56b998e41ec", + "universalIdentifier": "3b68c205-e17b-4689-b855-55bc9fd4f441", + "type": "TEXT", + "name": "tagline", + "label": "Tagline", + "description": "Company's Tagline", + "icon": "IconAdCircle", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-25T16:13:35.513Z", + "updatedAt": "2026-02-25T16:13:35.513Z", + "defaultValue": "''", + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "099b124a-3fca-4afa-8d72-f05a6761efd9", + "universalIdentifier": "ccdbd549-c43a-4f27-a195-cab518fbaaec", + "type": "LINKS", + "name": "introVideo", + "label": "Intro Video", + "description": "Company's Intro Video", + "icon": "IconVideo", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-25T16:13:35.513Z", + "updatedAt": "2026-02-25T16:13:35.513Z", + "defaultValue": null, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "618d9627-411d-4950-bfee-d241ca4083eb", + "universalIdentifier": "38f3529c-41fe-4ab2-ae5a-0cb5b654ae34", + "type": "MULTI_SELECT", + "name": "workPolicy", + "label": "Work Policy", + "description": "Company's Work Policy", + "icon": "IconHome", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-25T16:13:35.513Z", + "updatedAt": "2026-02-25T16:13:35.513Z", + "defaultValue": null, + "options": [ + { + "id": "8e3c3001-e47e-44a7-a1b4-32ad0e39f517", + "color": "green", + "label": "On-Site", + "value": "ON_SITE", + "position": 0 + }, + { + "id": "40330523-3129-4d3d-ae63-e1bd90239c2a", + "color": "turquoise", + "label": "Hybrid", + "value": "HYBRID", + "position": 1 + }, + { + "id": "bd549b6d-54a2-4a11-827d-26d244cd5543", + "color": "sky", + "label": "Remote Work", + "value": "REMOTE_WORK", + "position": 2 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "617c6152-22a1-4e41-8c2a-9ebf229821e4", + "universalIdentifier": "41e17ff3-0e12-4e11-9713-31380240f947", + "type": "BOOLEAN", + "name": "visaSponsorship", + "label": "Visa Sponsorship", + "description": "Company's Visa Sponsorship Policy", + "icon": "IconBrandVisa", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-25T16:13:35.513Z", + "updatedAt": "2026-02-25T16:13:35.513Z", + "defaultValue": false, + "options": null, + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "fa9cc72e-911f-452e-b172-28dbf7c24e52", + "universalIdentifier": "26a0cc4d-aa59-44d8-8a65-7ef59becf521", + "type": "RELATION", + "name": "caredForPets", + "label": "Cared For Pets", + "description": "Companies Pet Care Agreement", + "icon": "IconPaw", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-25T16:13:35.770Z", + "updatedAt": "2026-02-25T16:13:36.270Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY", + "junctionTargetFieldId": "57bc0677-2548-45d8-852e-815c4e8f8f23" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "fa9cc72e-911f-452e-b172-28dbf7c24e52", + "name": "caredForPets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1981b8d6-d7f0-4fcb-9502-d9ba7721d896", + "name": "caretaker" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "35c0fd85-7884-4181-85dc-87f88a9cb1c4", + "universalIdentifier": "c3248851-4f3c-4d3e-9be9-2b1cae9bf5ae", + "type": "RELATION", + "name": "previousEmployees", + "label": "Previous Employees", + "description": "Companies tied to the Employment History", + "icon": "IconUser", + "isCustom": true, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-25T16:13:35.938Z", + "updatedAt": "2026-02-25T16:13:36.161Z", + "defaultValue": null, + "options": null, + "settings": { + "relationType": "ONE_TO_MANY", + "junctionTargetFieldId": "a3325cf5-8f6d-4ce9-9935-9b373a5b2f82" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "nameSingular": "company", + "namePlural": "companies" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "35c0fd85-7884-4181-85dc-87f88a9cb1c4", + "name": "previousEmployees" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "3cd6f442-53df-4d54-ae82-ef81b8d1ab6a", + "name": "company" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "c47d78ca-2dee-4826-9dca-865c47d11926", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "name": "IDX_f719a95179070eac397ba18dc70", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "44652f82-50a2-4750-a02d-8ca89c2827af", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "name": "IDX_UNIQUE_2a32339058d0b6910b0834ddf81", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": true, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "a7a4d2ca-9f39-4d19-a887-b81e46b30a44", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "name": "IDX_fb1f4905546cfc6d70a971c76f7", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "678a973d-c1ae-4b73-86c4-530b5df455e9", + "universalIdentifier": "20202020-4e28-4e95-a9d7-6c00874f843c", + "nameSingular": "workflowRun", + "namePlural": "workflowRuns", + "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": "22464215-d240-40ea-82d4-ee0a7e309594", + "imageIdentifierFieldMetadataId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "shortcut": null, + "isLabelSyncedWithName": false, + "isSearchable": false, + "duplicateCriteria": null, + "labelSingular": "Workflow Run", + "labelPlural": "Workflow Runs", + "description": "A workflow run", + "icon": "IconHistoryToggle", + "fieldsList": [ + { + "__typename": "Field", + "id": "ae36ae5d-d46f-4f37-a125-42e0bfebb0bd", + "universalIdentifier": "20202020-f03a-4191-8a91-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": "5b675815-47dc-4c3b-a555-f5b8b32a01c1", + "universalIdentifier": "20202020-f03b-4192-9b92-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": "97577ca8-2e9a-4bca-bdc1-a638339e37a2", + "universalIdentifier": "20202020-f03c-4193-8c93-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": "d499de14-856b-492f-aee7-177d43bec6fc", + "universalIdentifier": "20202020-f03d-4194-9d94-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": "22464215-d240-40ea-82d4-ee0a7e309594", + "universalIdentifier": "20202020-b840-4253-aef9-4e5013694587", + "type": "TEXT", + "name": "name", + "label": "Name", + "description": "Name of the 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": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "c7ecff74-da5b-4bd9-a186-3ba13a19a8b2", + "universalIdentifier": "20202020-f1e3-4de1-a461-b5c4fdbc861d", + "type": "DATE_TIME", + "name": "enqueuedAt", + "label": "Workflow run enqueued at", + "description": "Workflow run enqueued 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": "e8b424f4-94ba-4cb4-ab01-d0a472f6615e", + "universalIdentifier": "20202020-a234-4e2d-bd15-85bcea6bb183", + "type": "DATE_TIME", + "name": "startedAt", + "label": "Workflow run started at", + "description": "Workflow run started 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": "524fc451-0332-4d87-b9a7-2724913485c9", + "universalIdentifier": "20202020-e1c1-4b6b-bbbd-b2beaf2e159e", + "type": "DATE_TIME", + "name": "endedAt", + "label": "Workflow run ended at", + "description": "Workflow run ended 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": "298debfb-9263-49d7-9d1d-66f563331a5e", + "universalIdentifier": "20202020-6b3e-4f9c-8c2b-2e5b8e6d6f3b", + "type": "SELECT", + "name": "status", + "label": "Workflow run status", + "description": "Workflow run 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": "'NOT_STARTED'", + "options": [ + { + "id": "20202020-2ec6-40d8-b9e1-1b1e567bcca9", + "color": "gray", + "label": "Not started", + "value": "NOT_STARTED", + "position": 0 + }, + { + "id": "20202020-3166-46be-995a-67cb1f4c41d5", + "color": "yellow", + "label": "Running", + "value": "RUNNING", + "position": 1 + }, + { + "id": "20202020-cde8-4fb6-840a-2fdc4f021b0c", + "color": "green", + "label": "Completed", + "value": "COMPLETED", + "position": 2 + }, + { + "id": "20202020-fb77-41c7-bf7c-9be97cce805e", + "color": "red", + "label": "Failed", + "value": "FAILED", + "position": 3 + }, + { + "id": "20202020-c518-4c95-8255-82a05739c88d", + "color": "blue", + "label": "Enqueued", + "value": "ENQUEUED", + "position": 4 + }, + { + "id": "20202020-e8df-4314-829d-165e296c4eb6", + "color": "orange", + "label": "Stopping", + "value": "STOPPING", + "position": 5 + }, + { + "id": "20202020-729b-44f9-a9c7-0bf401a0b51c", + "color": "gray", + "label": "Stopped", + "value": "STOPPED", + "position": 6 + } + ], + "settings": null, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "ce60207e-c0df-4b70-904f-88a7c6da0a62", + "universalIdentifier": "20202020-6007-401a-8aa5-e6f38581a6f3", + "type": "ACTOR", + "name": "createdBy", + "label": "Executed by", + "description": "The executor of the workflow", + "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": "13bbaafa-00ed-43a2-adce-886bf5d3b02f", + "universalIdentifier": "730dc1c9-34f5-4c22-84a6-bcb55b7604e2", + "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": "a372dfb2-93b1-4c63-b38e-1063ab9f6f42", + "universalIdentifier": "20202020-611f-45f3-9cde-d64927e8ec57", + "type": "RAW_JSON", + "name": "state", + "label": "State", + "description": "State of the workflow run", + "icon": "IconHierarchy2", + "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": "95001fd9-b2c5-47f9-a73d-9c709066b082", + "universalIdentifier": "20202020-189c-478a-b867-d72feaf5926a", + "type": "RAW_JSON", + "name": "context", + "label": "Context", + "description": "Context of the workflow run", + "icon": "IconHierarchy2", + "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": "b85f0463-0827-428d-a803-38f17aec2e93", + "universalIdentifier": "20202020-7be4-4db2-8ac6-3ff0d740843d", + "type": "RAW_JSON", + "name": "output", + "label": "Output", + "description": "Output of the workflow run", + "icon": "IconHierarchy2", + "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": "a1b85635-32b2-4490-9333-c668fc42074c", + "universalIdentifier": "20202020-7802-4c40-ae89-1f506fe3365c", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Workflow run 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": "a90643a2-9466-442f-bab1-68d4d4dfa591", + "universalIdentifier": "20202020-0b91-4ded-b1ac-cbd5efa58cb9", + "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": "ce7c3819-7bd0-434a-b15f-1f3c923c7776", + "universalIdentifier": "20202020-4baf-4604-b899-2f7fcfbbf90d", + "type": "RELATION", + "name": "favorites", + "label": "Favorites", + "description": "Favorites linked to the workflow run", + "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": "678a973d-c1ae-4b73-86c4-530b5df455e9", + "nameSingular": "workflowRun", + "namePlural": "workflowRuns" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "ce7c3819-7bd0-434a-b15f-1f3c923c7776", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "910d2994-fe34-4a7f-bbd7-a3fbcfb6dde9", + "name": "workflowRun" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "b74512b6-3573-4c02-9b51-39ac4af07b45", + "universalIdentifier": "20202020-af4d-4eb0-babc-eb960a45b356", + "type": "RELATION", + "name": "timelineActivities", + "label": "Timeline Activities", + "description": "Timeline activities linked to the run", + "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": "678a973d-c1ae-4b73-86c4-530b5df455e9", + "nameSingular": "workflowRun", + "namePlural": "workflowRuns" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "b74512b6-3573-4c02-9b51-39ac4af07b45", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f24d129b-6c23-4c3c-b980-9ce2e0dbc4e0", + "universalIdentifier": "20202020-8c57-4e7f-84f5-f373f68e1b82", + "type": "RELATION", + "name": "workflow", + "label": "Workflow", + "description": "Workflow linked to the run.", + "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": "678a973d-c1ae-4b73-86c4-530b5df455e9", + "nameSingular": "workflowRun", + "namePlural": "workflowRuns" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "ffd13062-c19a-4904-a524-6c8560da9be8", + "nameSingular": "workflow", + "namePlural": "workflows" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "f24d129b-6c23-4c3c-b980-9ce2e0dbc4e0", + "name": "workflow" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "206c3e94-19df-4a5f-894a-37efcaf1c1bc", + "name": "runs" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "bd09a2dd-ea28-485b-ae73-a5d05b6fe16b", + "universalIdentifier": "20202020-2f52-4ba8-8dc4-d0d6adb9578d", + "type": "RELATION", + "name": "workflowVersion", + "label": "Workflow version", + "description": "Workflow version linked to the run.", + "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": { + "onDelete": "SET_NULL", + "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": "678a973d-c1ae-4b73-86c4-530b5df455e9", + "nameSingular": "workflowRun", + "namePlural": "workflowRuns" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", + "nameSingular": "workflowVersion", + "namePlural": "workflowVersions" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "bd09a2dd-ea28-485b-ae73-a5d05b6fe16b", + "name": "workflowVersion" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "154d4a23-7284-4382-87de-c59b038db715", + "name": "runs" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "9c9d4c73-275e-469d-a40e-6f1c2dc50125", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "name": "IDX_9fdeb410f15f569f2843698c5b3", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "e9505869-5aed-4161-b7a4-894b10a2b74e", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "name": "IDX_eced9eb2a6cc8f9a5b49fe4b04e", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "e74c2941-7c0e-40f4-b07a-c084796e0902", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "name": "IDX_261d8661b94dbb98cc85cffab46", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "universalIdentifier": "20202020-e674-48e5-a542-72570eee7213", "nameSingular": "person", "namePlural": "people", "isCustom": false, @@ -9465,10 +14543,11 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "isActive": true, "isSystem": false, "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "8d2741b1-0afa-4478-bdc0-146617c512b3", - "imageIdentifierFieldMetadataId": "c81edc28-2c83-49ee-90ee-d7a6881ae558", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "labelIdentifierFieldMetadataId": "e3177533-e55f-46a2-a653-e7f0c3066f89", + "imageIdentifierFieldMetadataId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "shortcut": "P", "isLabelSyncedWithName": false, "isSearchable": true, @@ -9488,396 +14567,595 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "labelPlural": "People", "description": "A person", "icon": "IconUser", - "indexMetadataList": [], "fieldsList": [ { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8d2741b1-0afa-4478-bdc0-146617c512b3", - "type": "FULL_NAME", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "lastName": "''", - "firstName": "''" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "Contact’s name", - "icon": "IconUser" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d49dcd4e-9565-4a11-99ac-c6e278fc028b", - "type": "EMAILS", - "name": "emails", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": true, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "primaryEmail": "''", - "additionalEmails": null - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Emails", - "description": "Contact’s Emails", - "icon": "IconMail" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5d90f2e5-93ba-49a8-879a-ae206a0c363f", - "type": "LINKS", - "name": "linkedinLink", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "primaryLinkUrl": "''", - "secondaryLinks": "'[]'", - "primaryLinkLabel": "''" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Linkedin", - "description": "Contact’s Linkedin account", - "icon": "IconBrandLinkedin" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e2392cea-ac36-4422-8a88-25e3587160f3", - "type": "LINKS", - "name": "xLink", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "primaryLinkUrl": "''", - "secondaryLinks": "'[]'", - "primaryLinkLabel": "''" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "X", - "description": "Contact’s X/Twitter account", - "icon": "IconBrandX" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "90d5dcc4-e946-4b4c-ad72-091c42113c63", - "type": "TEXT", - "name": "jobTitle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Job Title", - "description": "Contact’s job title", - "icon": "IconBriefcase" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "aea4d3da-9643-4ad3-948e-58b06624982f", - "type": "PHONES", - "name": "phones", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "additionalPhones": null, - "primaryPhoneNumber": "''", - "primaryPhoneCallingCode": "''", - "primaryPhoneCountryCode": "''" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Phones", - "description": "Contact’s phone numbers", - "icon": "IconPhone" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "001000cd-3682-47b1-9491-e8051f878548", - "type": "TEXT", - "name": "city", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "City", - "description": "Contact’s city", - "icon": "IconMap" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c81edc28-2c83-49ee-90ee-d7a6881ae558", - "type": "TEXT", - "name": "avatarUrl", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Avatar", - "description": "Contact’s avatar", - "icon": "IconFileUpload" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b8d8a495-1dc1-4b81-83b9-17eb0a1e4eb5", - "type": "POSITION", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "Person record Position", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "bbd977ff-ef87-414c-a56b-8d01f5f02615", - "type": "ACTOR", - "name": "createdBy", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "context": {} - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "28abc54f-5d86-4d54-8e65-5b44b9249153", - "type": "TS_VECTOR", - "name": "searchVector", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "911a30a0-eed2-489f-ae4b-d4e15663d405", + "id": "f7a727cd-38e9-434e-b405-bb935375bf83", + "universalIdentifier": "20202020-e01a-4141-8a41-456789abcdef", "type": "UUID", "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", "isCustom": false, "isActive": true, "isSystem": true, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Id", - "description": "Id", - "icon": "Icon123" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a7e3eb33-90d3-4190-88db-2b3ff596ed7a", + "id": "34c89588-1f65-4ddc-bc7f-f5d3ff55e228", + "universalIdentifier": "20202020-e01b-4142-9b42-56789abcdefa", "type": "DATE_TIME", "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, "label": "Creation date", "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4b3429c2-0e97-4bd4-a688-061403f20234", - "type": "DATE_TIME", - "name": "updatedAt", + "icon": "IconCalendar", "isCustom": false, "isActive": true, - "isSystem": false, - "isUIReadOnly": false, + "isSystem": true, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a1be011d-ea4f-4812-8b89-72c2ccb8d756", + "id": "f85f95a8-aac9-4069-8f0f-41042e796839", + "universalIdentifier": "20202020-e01c-4143-8c43-6789abcdefab", "type": "DATE_TIME", - "name": "deletedAt", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", "isCustom": false, "isActive": true, - "isSystem": false, - "isUIReadOnly": false, + "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": "cf76a996-2a35-4462-b9c9-55fc72db2f4c", + "universalIdentifier": "20202020-e01d-4144-9d44-789abcdefabc", + "type": "DATE_TIME", + "name": "deletedAt", + "label": "Deleted at", + "description": "Date when the record was deleted", + "icon": "IconCalendarMinus", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e82262eb-7f58-4167-a23c-fc51ec584d1b", - "type": "RELATION", - "name": "company", + "id": "e3177533-e55f-46a2-a653-e7f0c3066f89", + "universalIdentifier": "20202020-3875-44d5-8c33-a6239011cab8", + "type": "FULL_NAME", + "name": "name", + "label": "Name", + "description": "Contact's name", + "icon": "IconUser", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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": "9e9ed5fa-2fda-4a5c-a118-7b6678840873", + "universalIdentifier": "20202020-3c51-43fa-8b6e-af39e29368ab", + "type": "EMAILS", + "name": "emails", + "label": "Emails", + "description": "Contact's Emails", + "icon": "IconMail", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": true, + "createdAt": "2026-02-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": "e55ab691-19b7-4ac2-9ce8-ac2b35e87fa6", + "universalIdentifier": "20202020-f1af-48f7-893b-2007a73dd508", + "type": "LINKS", + "name": "linkedinLink", + "label": "Linkedin", + "description": "Contact's Linkedin account", + "icon": "IconBrandLinkedin", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "a8c7a78d-8832-40ad-a51a-1c7af1d30534", + "universalIdentifier": "20202020-8fc2-487c-b84a-55a99b145cfd", + "type": "LINKS", + "name": "xLink", + "label": "X", + "description": "Contact's X/Twitter account", + "icon": "IconBrandX", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "e344af62-79ff-487f-b912-491af1f8cb37", + "universalIdentifier": "20202020-b0d0-415a-bef9-640a26dacd9b", + "type": "TEXT", + "name": "jobTitle", + "label": "Job Title", + "description": "Contact's job title", + "icon": "IconBriefcase", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "57cfd576-1896-4cdc-aca0-943f4b46d522", + "universalIdentifier": "20202020-0638-448e-8825-439134618022", + "type": "PHONES", + "name": "phones", + "label": "Phones", + "description": "Contact's phone numbers", + "icon": "IconPhone", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "11851291-3a0f-4295-a665-799cc8ce964b", + "universalIdentifier": "20202020-5243-4ffb-afc5-2c675da41346", + "type": "TEXT", + "name": "city", + "label": "City", + "description": "Contact's city", + "icon": "IconMap", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "df6f74bb-4689-44af-a6be-759bdc031043", + "universalIdentifier": "20202020-b8a6-40df-961c-373dc5d2ec21", + "type": "TEXT", + "name": "avatarUrl", + "label": "Avatar", + "description": "Contact's avatar", + "icon": "IconFileUpload", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "fe0197d3-1309-484f-9c74-687180976b52", + "universalIdentifier": "20202020-a7c9-4e3d-8f1b-2d5a6b7c8e9f", + "type": "FILES", + "name": "avatarFile", + "label": "Avatar File", + "description": "Contact's avatar file", + "icon": "IconFileUpload", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "17e8eec6-549a-4604-a56b-730984307ad8", + "universalIdentifier": "20202020-fcd5-4231-aff5-fff583eaa0b1", + "type": "POSITION", + "name": "position", + "label": "Position", + "description": "Person record Position", + "icon": "IconHierarchy2", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "be5c9fcc-da8b-4c9a-b45f-bd54f1b64fca", + "universalIdentifier": "20202020-f6ab-4d98-af24-a3d5b664148a", + "type": "ACTOR", + "name": "createdBy", + "label": "Created by", + "description": "The creator of the record", + "icon": "IconCreativeCommonsSa", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "89c81333-39db-4c10-b3b6-5884635161a7", + "universalIdentifier": "e9e0dd35-184c-4742-84da-afadf45ce59a", + "type": "ACTOR", + "name": "updatedBy", + "label": "Updated by", + "description": "The workspace member who last updated the record", + "icon": "IconUserCircle", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": true, + "isNullable": false, + "isUnique": false, + "createdAt": "2026-02-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": "34be0175-24e7-4c3e-986b-5d7494ea11b5", + "universalIdentifier": "57d1d7ad-fa10-44fc-82f3-ad0959ec2534", + "type": "TS_VECTOR", + "name": "searchVector", + "label": "Search vector", + "description": "Field used for full-text search", + "icon": "IconUser", + "isCustom": false, + "isActive": true, + "isSystem": true, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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\"), '') || ' ' || \n COALESCE(public.unaccent_immutable(\"emailsPrimaryEmail\"), '') || ' ' ||\n COALESCE(public.unaccent_immutable(SPLIT_PART(\"emailsPrimaryEmail\", '@', 2)), '') || ' ' || COALESCE(public.unaccent_immutable(TRANSLATE(\"emailsAdditionalEmails\"::text, '[]\",', ' ')), '') || ' ' || COALESCE(public.unaccent_immutable(TRANSLATE(REPLACE(\"emailsAdditionalEmails\"::text, '@', ' '), '[]\",', ' ')), '') || ' ' || COALESCE(\"phonesPrimaryPhoneNumber\", '') || ' ' || COALESCE(\"phonesPrimaryPhoneCallingCode\", '') || ' ' || COALESCE(\"phonesPrimaryPhoneCallingCode\" || \"phonesPrimaryPhoneNumber\", '') || ' ' || COALESCE(REPLACE(\"phonesPrimaryPhoneCallingCode\", '+', '') || \"phonesPrimaryPhoneNumber\", '') || ' ' || COALESCE('0' || \"phonesPrimaryPhoneNumber\", '') || ' ' || COALESCE(TRANSLATE(regexp_replace(\"phonesAdditionalPhones\"::text, '\"(number|countryCode|callingCode)\"\\s*:\\s*', '', 'g'), '[]{}\",:', ' '), '') || ' ' || COALESCE(public.unaccent_immutable(\"jobTitle\"), ''))", + "generatedType": "STORED" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "e688b7a0-fbd7-4a41-a4e8-e526b542f1f5", + "universalIdentifier": "20202020-cd97-451f-87fa-bcb789bdbf3a", + "type": "RELATION", + "name": "attachments", + "label": "Attachments", + "description": "Attachments linked to the contact.", + "icon": "IconFileImport", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "nameSingular": "person", + "namePlural": "people" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "e688b7a0-fbd7-4a41-a4e8-e526b542f1f5", + "name": "attachments" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "12247923-3e01-4917-8386-64164fd200dc", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "8408843b-1389-40ae-88ac-14fa2f2ab0f4", + "universalIdentifier": "20202020-52ee-45e9-a702-b64b3753e3a9", + "type": "RELATION", + "name": "calendarEventParticipants", + "label": "Calendar Event Participants", + "description": "Calendar Event Participants", + "icon": "IconCalendar", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "nameSingular": "person", + "namePlural": "people" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "ee48f10c-9a42-4d4e-ba94-ed4bcf801841", + "nameSingular": "calendarEventParticipant", + "namePlural": "calendarEventParticipants" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "8408843b-1389-40ae-88ac-14fa2f2ab0f4", + "name": "calendarEventParticipants" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "f09c239f-3c5b-4384-bce3-0627cb6922fe", + "name": "person" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "f6be42ac-ccb8-4df0-8c22-a9627d655c76", + "universalIdentifier": "20202020-e2f3-448e-b34c-2d625f0025fd", + "type": "RELATION", + "name": "company", + "label": "Company", + "description": "Contact's company", + "icon": "IconBuildingSkyscraper", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", "defaultValue": null, "options": null, "settings": { @@ -9886,473 +15164,397 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "joinColumnName": "companyId" }, "isLabelSyncedWithName": false, - "label": "Company", - "description": "Contact’s company", - "icon": "IconBuildingSkyscraper", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", + "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", + "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", "nameSingular": "company", "namePlural": "companies" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "e82262eb-7f58-4167-a23c-fc51ec584d1b", + "id": "f6be42ac-ccb8-4df0-8c22-a9627d655c76", "name": "company" }, "targetFieldMetadata": { "__typename": "Field", - "id": "3c211c59-02a1-4904-ad0f-5bb30b736461", + "id": "94902a74-b8ca-4a56-8573-7469f0b664f6", "name": "people" } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2a255737-3465-40be-8776-01dd9e25eb69", - "type": "RELATION", - "name": "pointOfContactForOpportunities", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" }, - "isLabelSyncedWithName": false, - "label": "Linked Opportunities", - "description": "List of opportunities for which that person is the point of contact", - "icon": "IconTargetArrow", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "2a255737-3465-40be-8776-01dd9e25eb69", - "name": "pointOfContactForOpportunities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "bba7ecb3-72e9-41e7-b1b7-89a3c60b37ad", - "name": "pointOfContact" - } - } + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ddcd104b-4b9b-46ee-8dd5-0a5d1d0de809", - "type": "RELATION", - "name": "taskTargets", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Tasks", - "description": "Tasks tied to the contact", - "icon": "IconCheckbox", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ddcd104b-4b9b-46ee-8dd5-0a5d1d0de809", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6857a9be-9d00-45a9-91dc-0a1e55463db4", - "name": "person" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1d36023f-cfae-491e-bf86-a4768d97b100", - "type": "RELATION", - "name": "noteTargets", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Notes", - "description": "Notes tied to the contact", - "icon": "IconNotes", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1d36023f-cfae-491e-bf86-a4768d97b100", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "94c251a4-a8b9-4f84-812b-4b68297ea465", - "name": "person" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "377720cb-dae6-408d-a15e-811ec1fc0b23", + "id": "372883cb-ee54-4ec7-b158-bd09f5a3e86c", + "universalIdentifier": "20202020-4073-4117-9cf1-203bcdc91cbd", "type": "RELATION", "name": "favorites", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, "label": "Favorites", "description": "Favorites linked to the contact", "icon": "IconHeart", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", + "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", + "id": "0591ea73-a468-4170-8f44-90269f7fa180", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "377720cb-dae6-408d-a15e-811ec1fc0b23", + "id": "372883cb-ee54-4ec7-b158-bd09f5a3e86c", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "d62f0e47-1e2d-4bea-9ab8-cb4ed52a4367", + "id": "a281ba89-d7b7-4194-826d-57411f690f66", "name": "person" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3b7d53c6-b440-4609-919d-782ff4f404e4", + "id": "5d5578cf-69d1-4aac-aa60-a0fe65dd46ac", + "universalIdentifier": "20202020-498e-4c61-8158-fa04f0638334", "type": "RELATION", - "name": "attachments", + "name": "messageParticipants", + "label": "Message Participants", + "description": "Message Participants", + "icon": "IconUserCircle", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Attachments", - "description": "Attachments linked to the contact.", - "icon": "IconFileImport", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", + "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3b7d53c6-b440-4609-919d-782ff4f404e4", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4e924062-611f-48e6-a410-695da5a1d1e6", - "name": "person" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7b26a561-1bc3-4a50-a340-3b0f21d28e47", - "type": "RELATION", - "name": "messageParticipants", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Message Participants", - "description": "Message Participants", - "icon": "IconUserCircle", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", - "nameSingular": "person", - "namePlural": "people" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c5bdd9b9-06c5-450a-86b7-cb91f3c33b94", + "id": "2756d5d9-f309-48d9-9579-31cfebce2eef", "nameSingular": "messageParticipant", "namePlural": "messageParticipants" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "7b26a561-1bc3-4a50-a340-3b0f21d28e47", + "id": "5d5578cf-69d1-4aac-aa60-a0fe65dd46ac", "name": "messageParticipants" }, "targetFieldMetadata": { "__typename": "Field", - "id": "fe4bd25a-5bfb-4c3b-8947-af44cca0009a", + "id": "7465fe47-798b-4339-823d-d0873cd4763e", "name": "person" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4ff49456-5079-4474-88fe-4d5414807f93", + "id": "0b5ca55e-9b14-48de-adcb-98e1c6f2ca8d", + "universalIdentifier": "20202020-c8fc-4258-8250-15905d3fcfec", "type": "RELATION", - "name": "calendarEventParticipants", + "name": "noteTargets", + "label": "Notes", + "description": "Notes tied to the contact", + "icon": "IconNotes", "isCustom": false, "isActive": true, - "isSystem": true, - "isUIReadOnly": false, + "isSystem": false, + "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Calendar Event Participants", - "description": "Calendar Event Participants", - "icon": "IconCalendar", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", + "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "3dd1c5bd-c964-414d-a52f-c3d182f9eac7", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" + "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "4ff49456-5079-4474-88fe-4d5414807f93", - "name": "calendarEventParticipants" + "id": "0b5ca55e-9b14-48de-adcb-98e1c6f2ca8d", + "name": "noteTargets" }, "targetFieldMetadata": { "__typename": "Field", - "id": "d12110d9-ce8a-48fb-a82c-5d93dce9e003", - "name": "person" + "id": "018f73d3-5212-467d-95b6-986772b517b0", + "name": "target" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a0c65226-6ea1-4324-8abf-a2a91a9a6c75", + "id": "09c81e5f-cf0f-402d-9795-d6083182de97", + "universalIdentifier": "20202020-911b-4a7d-b67b-918aa9a5b33a", "type": "RELATION", - "name": "timelineActivities", + "name": "pointOfContactForOpportunities", + "label": "Opportunities", + "description": "List of opportunities for which that person is the point of contact", + "icon": "IconTargetArrow", "isCustom": false, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Events", - "description": "Events linked to the person", - "icon": "IconTimelineEvent", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", + "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", "nameSingular": "person", "namePlural": "people" }, "targetObjectMetadata": { "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", + "id": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "09c81e5f-cf0f-402d-9795-d6083182de97", + "name": "pointOfContactForOpportunities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "194cee79-1034-445a-9c9a-f36ac6f7a392", + "name": "pointOfContact" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "68cf038f-3d95-412a-9585-add3201cd916", + "universalIdentifier": "20202020-584b-4d3e-88b6-53ab1fa03c3a", + "type": "RELATION", + "name": "taskTargets", + "label": "Tasks", + "description": "Tasks tied to the contact", + "icon": "IconCheckbox", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": true, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "nameSingular": "person", + "namePlural": "people" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "715103ac-24fe-4406-920c-66acd3f24a84", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "68cf038f-3d95-412a-9585-add3201cd916", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "162c063c-6a63-4db5-9f0d-c75b73c67f5e", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "815f11ae-b23a-4312-846c-098ed8fa0a65", + "universalIdentifier": "20202020-a43e-4873-9c23-e522de906ce5", + "type": "RELATION", + "name": "timelineActivities", + "label": "Events", + "description": "Events linked to the person", + "icon": "IconTimelineEvent", + "isCustom": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "isNullable": true, + "isUnique": false, + "createdAt": "2026-02-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": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "nameSingular": "person", + "namePlural": "people" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", "nameSingular": "timelineActivity", "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "a0c65226-6ea1-4324-8abf-a2a91a9a6c75", + "id": "815f11ae-b23a-4312-846c-098ed8fa0a65", "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "3e88da0b-1d84-43d3-b75e-8e7b55ef423c", - "name": "person" + "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", + "name": "target" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "991baedf-c3a2-44af-a35d-b4fc3da4fb28", + "id": "232141dc-92a0-4291-b6f7-0faf442c224d", + "universalIdentifier": "56451dd7-c6dc-4cc4-a031-91e387941680", "type": "TEXT", "name": "intro", + "label": "Intro", + "description": "Contact's Intro", + "icon": "IconNote", "isCustom": true, "isActive": true, "isSystem": false, "isUIReadOnly": false, - "isNullable": false, + "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:53.490Z", - "updatedAt": "2025-06-09T18:53:53.490Z", - "defaultValue": "''", + "createdAt": "2026-02-25T16:13:35.588Z", + "updatedAt": "2026-02-25T16:13:35.588Z", + "defaultValue": null, "options": null, - "settings": {}, + "settings": null, "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": null, - "label": "Intro", - "description": "", - "icon": "IconNote" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6b86002b-b245-4f7b-9f08-6385a2df2fc7", + "id": "b6af67fc-bb25-4524-907c-5d16835a3678", + "universalIdentifier": "92839185-5c89-4048-ba4c-a1a12b868709", "type": "PHONES", "name": "whatsapp", + "label": "Whatsapp", + "description": "Contact's Whatsapp Number", + "icon": "IconBrandWhatsapp", "isCustom": true, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:53.492Z", - "updatedAt": "2025-06-09T18:53:53.492Z", + "createdAt": "2026-02-25T16:13:35.588Z", + "updatedAt": "2026-02-25T16:13:35.588Z", "defaultValue": { "additionalPhones": null, "primaryPhoneNumber": "''", @@ -10360,2953 +15562,290 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "primaryPhoneCountryCode": "'FR'" }, "options": null, - "settings": {}, + "settings": null, "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": null, - "label": "Whatsapp", - "description": "", - "icon": "IconBrandWhatsapp" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "90025973-789e-4df7-96f7-7840d182a7d2", + "id": "eaf3845b-b383-4bff-888a-27461790f236", + "universalIdentifier": "69a1fd99-0a2d-4317-912a-2a093a57b150", "type": "MULTI_SELECT", "name": "workPreference", + "label": "Work Preference", + "description": "Person's Work Preference", + "icon": "IconHome", "isCustom": true, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:53.493Z", - "updatedAt": "2025-06-09T18:53:53.493Z", + "createdAt": "2026-02-25T16:13:35.588Z", + "updatedAt": "2026-02-25T16:13:35.588Z", "defaultValue": null, "options": [ { - "id": "799da6bb-0c2c-4833-acc7-2e751ae2d8a9", + "id": "ce7c1fed-6f85-4568-9940-a3276a418ceb", "color": "green", "label": "On-Site", "value": "ON_SITE", "position": 0 }, { - "id": "d80f9ed7-6366-4080-9a60-dfbb65e05307", + "id": "ffe15a8d-9f12-4dd5-8e4e-fda2c70b056b", "color": "turquoise", "label": "Hybrid", "value": "HYBRID", "position": 1 }, { - "id": "ec54505e-c078-47c2-86e0-ab657bc3707c", + "id": "242795c4-21f3-4c62-8e4e-c7e01756ae34", "color": "sky", "label": "Remote Work", "value": "REMOTE_WORK", "position": 2 } ], - "settings": {}, + "settings": null, "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": null, - "label": "Work Preference", - "description": "", - "icon": "IconHome" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d1a2f93b-80d1-41db-b4c3-9fc67001d8a5", + "id": "f153def6-b0d3-4416-a2de-4ba88a8fa694", + "universalIdentifier": "6c7d68c4-94f4-4db2-9c10-4e0a0c0eca61", "type": "RATING", "name": "performanceRating", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:53.494Z", - "updatedAt": "2025-06-09T18:53:53.494Z", - "defaultValue": null, - "options": [ - { - "id": "9a07c19a-d202-4b58-80db-7ca84993af3c", - "label": "1", - "value": "RATING_1", - "position": 0 - }, - { - "id": "b7acf78a-1912-4746-b110-9960eec6ffe3", - "label": "2", - "value": "RATING_2", - "position": 1 - }, - { - "id": "14f1ca12-ef40-47ed-acd1-8a6d34eeadf4", - "label": "3", - "value": "RATING_3", - "position": 2 - }, - { - "id": "83e040a3-dd17-42d1-a636-f798deb5fb91", - "label": "4", - "value": "RATING_4", - "position": 3 - }, - { - "id": "5e3e8a34-63ce-4380-a1e2-eb27f31427d1", - "label": "5", - "value": "RATING_5", - "position": 4 - } - ], - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, "label": "Performance Rating", - "description": "", - "icon": "IconStars" - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "77a41ed6-0723-4f53-a062-568e87fb961e", - "imageIdentifierFieldMetadataId": null, - "shortcut": "O", - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Opportunity", - "labelPlural": "Opportunities", - "description": "An opportunity", - "icon": "IconTargetArrow", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "77a41ed6-0723-4f53-a062-568e87fb961e", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "The opportunity name", - "icon": "IconTargetArrow" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6684e144-0152-49ae-a5d5-b1e3363a6586", - "type": "CURRENCY", - "name": "amount", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "amountMicros": null, - "currencyCode": "''" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Amount", - "description": "Opportunity amount", - "icon": "IconCurrencyDollar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6b23a6ee-c030-4af5-a47f-7673d9abca0c", - "type": "DATE_TIME", - "name": "closeDate", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Close date", - "description": "Opportunity close date", - "icon": "IconCalendarEvent" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "77fccf84-50d7-40d0-a097-564ceb3e8433", - "type": "SELECT", - "name": "stage", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'NEW'", - "options": [ - { - "id": "adc42776-e953-4f90-abee-e64f638b9db4", - "color": "red", - "label": "New", - "value": "NEW", - "position": 0 - }, - { - "id": "87f355a6-dc1a-4e7d-a249-30693f6a6eb4", - "color": "purple", - "label": "Screening", - "value": "SCREENING", - "position": 1 - }, - { - "id": "b5f0d84c-e068-489e-a552-e24fb61a456e", - "color": "sky", - "label": "Meeting", - "value": "MEETING", - "position": 2 - }, - { - "id": "b3846874-aeb1-44a6-bbec-18706381ba4b", - "color": "turquoise", - "label": "Proposal", - "value": "PROPOSAL", - "position": 3 - }, - { - "id": "1fd6fad1-db91-460c-aab7-a1ed4596f9ba", - "color": "yellow", - "label": "Customer", - "value": "CUSTOMER", - "position": 4 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Stage", - "description": "Opportunity stage", - "icon": "IconProgressCheck" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "997c6e4c-9d63-4b25-a1a5-0014040e995b", - "type": "POSITION", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "Opportunity record position", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c00d2a90-e612-4530-ae5b-11423e50552d", - "type": "ACTOR", - "name": "createdBy", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "context": {} - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e918212c-7546-4d09-a4f2-b1718976d451", - "type": "TS_VECTOR", - "name": "searchVector", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a863a42c-6cb8-4f4b-b566-a90a82beb023", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "199b36b1-12fd-4baa-98b4-52975352c4c2", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "bcd1e046-78dd-437d-ad0e-96ce33691e5a", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5398e336-835f-467b-94da-4a8869456dfd", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "bba7ecb3-72e9-41e7-b1b7-89a3c60b37ad", - "type": "RELATION", - "name": "pointOfContact", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "pointOfContactId" - }, - "isLabelSyncedWithName": false, - "label": "Point of Contact", - "description": "Opportunity point of contact", - "icon": "IconUser", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", - "nameSingular": "person", - "namePlural": "people" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "bba7ecb3-72e9-41e7-b1b7-89a3c60b37ad", - "name": "pointOfContact" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "2a255737-3465-40be-8776-01dd9e25eb69", - "name": "pointOfContactForOpportunities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "47f9b175-1177-4057-9972-0eb3e9e18efe", - "type": "RELATION", - "name": "company", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "companyId" - }, - "isLabelSyncedWithName": false, - "label": "Company", - "description": "Opportunity company", - "icon": "IconBuildingSkyscraper", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "47f9b175-1177-4057-9972-0eb3e9e18efe", - "name": "company" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0252cd73-3888-4886-8a60-a56663c350e5", - "name": "opportunities" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "95426ef2-2a54-4364-82d5-74f6b8201087", - "type": "RELATION", - "name": "favorites", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Favorites", - "description": "Favorites linked to the opportunity", - "icon": "IconHeart", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "95426ef2-2a54-4364-82d5-74f6b8201087", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "11032cbd-6d29-499d-90c0-e7b5992b26e3", - "name": "opportunity" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6227ad06-c41f-42e4-9052-badf25e7f654", - "type": "RELATION", - "name": "taskTargets", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Tasks", - "description": "Tasks tied to the opportunity", - "icon": "IconCheckbox", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6227ad06-c41f-42e4-9052-badf25e7f654", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "5c606215-8084-4096-8dc1-b7928e4bd15a", - "name": "opportunity" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c7ac121d-f492-4d06-b4ba-264396172dcb", - "type": "RELATION", - "name": "noteTargets", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Notes", - "description": "Notes tied to the opportunity", - "icon": "IconNotes", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c7ac121d-f492-4d06-b4ba-264396172dcb", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3db5112b-eb5b-466c-9dca-37a319e05448", - "name": "opportunity" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "960fe10d-a2b0-4320-9676-79663aab4de2", - "type": "RELATION", - "name": "attachments", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Attachments", - "description": "Attachments linked to the opportunity", - "icon": "IconFileImport", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "960fe10d-a2b0-4320-9676-79663aab4de2", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "80ecde59-9d80-4015-b2a7-ba13d0af5d2a", - "name": "opportunity" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ebc969ed-a08d-4e56-a6df-9d98930faa84", - "type": "RELATION", - "name": "timelineActivities", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Timeline Activities", - "description": "Timeline Activities linked to the opportunity.", - "icon": "IconTimelineEvent", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ebc969ed-a08d-4e56-a6df-9d98930faa84", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "477a0642-da68-4aff-94a6-f55a4d53337b", - "name": "opportunity" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "62855e83-6d97-4c48-bffc-c17e8e955820", - "nameSingular": "pet", - "namePlural": "pets", - "isCustom": true, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:51.326Z", - "updatedAt": "2025-06-09T18:53:51.330Z", - "labelIdentifierFieldMetadataId": "efd57cdc-99d2-4d4c-8389-be7d3ed9718d", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Pet", - "labelPlural": "Pets", - "description": null, - "icon": "IconCat", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "117f4dd8-71f3-46c3-b0b7-6700aecb8e31", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.326Z", - "updatedAt": "2025-06-09T18:53:51.326Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "efd57cdc-99d2-4d4c-8389-be7d3ed9718d", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.326Z", - "updatedAt": "2025-06-09T18:53:51.326Z", - "defaultValue": "'Untitled'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "Name", - "icon": "IconAbc" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4de011eb-3930-43c7-b105-e44d327b75fa", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.326Z", - "updatedAt": "2025-06-09T18:53:51.326Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ad157af7-91d5-4018-8177-1c098a46ffae", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.326Z", - "updatedAt": "2025-06-09T18:53:51.326Z", - "defaultValue": "now", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7d2780c9-c399-452c-bda6-7d56147619a5", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.326Z", - "updatedAt": "2025-06-09T18:53:51.326Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Deletion date", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4b0d7e0c-e5d1-433b-9039-8669aa11368f", - "type": "ACTOR", - "name": "createdBy", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.326Z", - "updatedAt": "2025-06-09T18:53:51.326Z", - "defaultValue": { - "name": "''", - "source": "'MANUAL'" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a347ff60-7536-40e2-96e3-20eb4496cbe7", - "type": "POSITION", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.326Z", - "updatedAt": "2025-06-09T18:53:51.326Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "Position", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "fbf13575-7e51-4546-865d-0cc8cdcc1875", - "type": "RELATION", - "name": "favorites", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.337Z", - "updatedAt": "2025-06-09T18:53:51.337Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Favorites", - "description": "Favorites tied to the Pet", - "icon": "IconHeart", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "62855e83-6d97-4c48-bffc-c17e8e955820", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "fbf13575-7e51-4546-865d-0cc8cdcc1875", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4d2c41a4-caea-4a3c-bdf3-42f2c89c6882", - "name": "pet" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7d562e8f-66eb-4444-b0a7-6028781b83e7", - "type": "RELATION", - "name": "attachments", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.337Z", - "updatedAt": "2025-06-09T18:53:51.337Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Attachments", - "description": "Attachments tied to the Pet", - "icon": "IconFileImport", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "62855e83-6d97-4c48-bffc-c17e8e955820", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "7d562e8f-66eb-4444-b0a7-6028781b83e7", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "7924055e-e975-4f45-8854-b60b1b1e5446", - "name": "pet" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9b15e22f-72e4-454f-928a-aecbd4b70b4c", - "type": "RELATION", - "name": "noteTargets", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.337Z", - "updatedAt": "2025-06-09T18:53:51.337Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "NoteTargets", - "description": "NoteTargets tied to the Pet", - "icon": "IconCheckbox", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "62855e83-6d97-4c48-bffc-c17e8e955820", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "9b15e22f-72e4-454f-928a-aecbd4b70b4c", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "302f2a25-0661-4e15-b258-b1a5bdd0446c", - "name": "pet" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6bcc33d7-e4f3-4f24-a24a-903297c99f4a", - "type": "RELATION", - "name": "timelineActivities", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.337Z", - "updatedAt": "2025-06-09T18:53:51.337Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "TimelineActivities", - "description": "TimelineActivities tied to the Pet", - "icon": "IconTimelineEvent", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "62855e83-6d97-4c48-bffc-c17e8e955820", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "6bcc33d7-e4f3-4f24-a24a-903297c99f4a", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ccd688fd-77b7-44a6-b723-ef81aba000e2", - "name": "pet" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c5be53cd-fbf9-4977-88f7-bfab9c588ecc", - "type": "RELATION", - "name": "taskTargets", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.338Z", - "updatedAt": "2025-06-09T18:53:51.338Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "TaskTargets", - "description": "TaskTargets tied to the Pet", - "icon": "IconCheckbox", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "62855e83-6d97-4c48-bffc-c17e8e955820", - "nameSingular": "pet", - "namePlural": "pets" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c5be53cd-fbf9-4977-88f7-bfab9c588ecc", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "41435fe0-cc28-4385-9d4c-dc637817dfb4", - "name": "pet" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0306bb8e-b9c2-4ffe-9395-60a053110018", - "type": "TS_VECTOR", - "name": "searchVector", - "isCustom": false, - "isActive": false, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.348Z", - "updatedAt": "2025-06-09T18:53:51.348Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6d22f922-c7e8-4483-820c-366253ea1861", - "type": "SELECT", - "name": "species", + "description": "Person's Performance Rating", + "icon": "IconStars", "isCustom": true, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:51.796Z", - "updatedAt": "2025-06-09T18:53:51.796Z", + "createdAt": "2026-02-25T16:13:35.588Z", + "updatedAt": "2026-02-25T16:13:35.588Z", "defaultValue": null, "options": [ { - "id": "fc37ea83-36e5-4cd8-892d-d0a1b7ddfce0", - "color": "blue", - "label": "Dog", - "value": "DOG", - "position": 0 - }, - { - "id": "3bfbf1b9-33ea-4050-b293-6eea410910d1", - "color": "red", - "label": "Cat", - "value": "CAT", - "position": 1 - }, - { - "id": "77b2c75c-08ba-4346-8098-5569e5554d59", - "color": "green", - "label": "Bird", - "value": "BIRD", - "position": 2 - }, - { - "id": "3bc689ae-235f-40db-a182-2193845e6f5e", - "color": "yellow", - "label": "Fish", - "value": "FISH", - "position": 3 - }, - { - "id": "a15d9a9e-9f71-4a70-9d65-a28f13511adb", - "color": "purple", - "label": "Rabbit", - "value": "RABBIT", - "position": 4 - }, - { - "id": "ff5b76da-d969-4c63-88c1-62c82a2703bb", - "color": "orange", - "label": "Hamster", - "value": "HAMSTER", - "position": 5 - } - ], - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Species", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "54a4ece9-8f10-4cb2-aa3b-9202595009b8", - "type": "MULTI_SELECT", - "name": "traits", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.819Z", - "updatedAt": "2025-06-09T18:53:51.819Z", - "defaultValue": null, - "options": [ - { - "id": "aff0d609-575f-4043-bd0c-35607e4740cf", - "color": "blue", - "label": "Playful", - "value": "PLAYFUL", - "position": 0 - }, - { - "id": "960de5b9-556b-40ed-861d-91c71e259875", - "color": "red", - "label": "Friendly", - "value": "FRIENDLY", - "position": 1 - }, - { - "id": "4192f166-d5cf-4ba6-80c1-4ef1d3a1e755", - "color": "green", - "label": "Protective", - "value": "PROTECTIVE", - "position": 2 - }, - { - "id": "c1263892-5466-4873-9886-ab51cd536ae5", - "color": "yellow", - "label": "Shy", - "value": "SHY", - "position": 3 - }, - { - "id": "25ba8f6c-1c6a-46b1-816d-399edebbfe08", - "color": "purple", - "label": "Brave", - "value": "BRAVE", - "position": 4 - }, - { - "id": "06c1fa95-c727-4aaa-b6a7-b854f1da6f58", - "color": "orange", - "label": "Curious", - "value": "CURIOUS", - "position": 5 - } - ], - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Traits", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3bc2598e-856e-429b-9ece-39b0e5b53964", - "type": "TEXT", - "name": "comments", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.822Z", - "updatedAt": "2025-06-09T18:53:51.822Z", - "defaultValue": "''", - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Comments", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8b4f58b9-969e-42cc-863b-16e6b4c79296", - "type": "NUMBER", - "name": "age", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.824Z", - "updatedAt": "2025-06-09T18:53:51.824Z", - "defaultValue": null, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Age", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "876bfd77-e584-49cb-9719-d01b0a2dae7c", - "type": "ADDRESS", - "name": "location", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.825Z", - "updatedAt": "2025-06-09T18:53:51.825Z", - "defaultValue": { - "addressLat": null, - "addressLng": null, - "addressCity": "''", - "addressState": "''", - "addressCountry": "''", - "addressStreet1": "''", - "addressStreet2": "''", - "addressPostcode": "''" - }, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Location", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "936a5224-9a52-43c1-bea1-291e2f72d257", - "type": "PHONES", - "name": "vetPhone", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.826Z", - "updatedAt": "2025-06-09T18:53:51.826Z", - "defaultValue": { - "additionalPhones": null, - "primaryPhoneNumber": "''", - "primaryPhoneCallingCode": "''", - "primaryPhoneCountryCode": "''" - }, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Vet phone", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c20803bc-6a5e-49a1-b332-64dc5ea92ee1", - "type": "EMAILS", - "name": "vetEmail", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.827Z", - "updatedAt": "2025-06-09T18:53:51.827Z", - "defaultValue": { - "primaryEmail": "''", - "additionalEmails": null - }, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Vet email", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "37dfbabb-19c8-4146-957e-2537d325a21b", - "type": "DATE", - "name": "birthday", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.831Z", - "updatedAt": "2025-06-09T18:53:51.831Z", - "defaultValue": null, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Birthday", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "592015d2-5340-4548-a80c-812a49ac27b2", - "type": "BOOLEAN", - "name": "isGoodWithKids", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.836Z", - "updatedAt": "2025-06-09T18:53:51.836Z", - "defaultValue": null, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Is good with kids", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b2c6021c-8d63-437c-80e8-a0f7d88325ce", - "type": "LINKS", - "name": "pictures", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.837Z", - "updatedAt": "2025-06-09T18:53:51.837Z", - "defaultValue": { - "primaryLinkUrl": "''", - "secondaryLinks": "'[]'", - "primaryLinkLabel": "''" - }, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Pictures", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "bd1d9e2b-1cd5-4dcd-ab47-1af544c7e93a", - "type": "CURRENCY", - "name": "averageCostOfKibblePerMonth", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.838Z", - "updatedAt": "2025-06-09T18:53:51.838Z", - "defaultValue": { - "amountMicros": null, - "currencyCode": "''" - }, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Average cost of kibble per month", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c7e55dc1-dff4-4a57-8c4b-8ceffe99d509", - "type": "FULL_NAME", - "name": "makesOwnerThinkOf", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.838Z", - "updatedAt": "2025-06-09T18:53:51.838Z", - "defaultValue": { - "lastName": "''", - "firstName": "''" - }, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Makes its owner think of", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d97baf5e-0a26-4d69-b452-5cb8da2483e9", - "type": "RATING", - "name": "soundSwag", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.839Z", - "updatedAt": "2025-06-09T18:53:51.839Z", - "defaultValue": null, - "options": [ - { - "id": "427863f8-6e88-47f3-b951-beb13bcc7b09", + "id": "4617fbda-045a-46a8-a5e8-5672ed18c17f", "label": "1", "value": "RATING_1", "position": 0 }, { - "id": "e56b6af9-7e09-4129-858e-74dec3010b11", + "id": "760f0a8d-d2e7-4791-a154-cbcb2c5189d6", "label": "2", "value": "RATING_2", "position": 1 }, { - "id": "5e47f4c1-da62-46f2-8875-83fa029361d4", + "id": "718fb6b6-e613-4a8c-b8c0-209e8304b132", "label": "3", "value": "RATING_3", "position": 2 }, { - "id": "c380cf36-f169-48b3-81cc-f8c6c9899625", + "id": "884043ef-9aac-4521-8130-1f05fdbd596e", "label": "4", "value": "RATING_4", "position": 3 }, { - "id": "810f1efd-2fd5-41ec-b732-8a6536a9718b", + "id": "e6aa6afe-5ec1-4678-b63f-f41572bab1bd", "label": "5", "value": "RATING_5", "position": 4 } ], - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Sound swag (bark style, meow style, etc.)", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e3f31db5-a3fb-4fdb-b41f-61fdc0089d23", - "type": "RICH_TEXT", - "name": "bio", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.841Z", - "updatedAt": "2025-06-09T18:53:51.841Z", - "defaultValue": null, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Bio", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ad62e2f3-7ff1-466a-a304-fa5842069e0e", - "type": "ARRAY", - "name": "interestingFacts", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.841Z", - "updatedAt": "2025-06-09T18:53:51.841Z", - "defaultValue": null, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Interesting facts", - "description": "", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f671c7b4-533b-4949-b335-e0c6c1fa35f0", - "type": "RAW_JSON", - "name": "extraData", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:51.842Z", - "updatedAt": "2025-06-09T18:53:51.842Z", - "defaultValue": null, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Extra data", - "description": "", - "icon": "" - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4f860d25-b720-4218-9471-28ac7ccb6c22", - "nameSingular": "workflowAutomatedTrigger", - "namePlural": "workflowAutomatedTriggers", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "77b3d19e-d170-442a-b98a-80cc5b4e10ea", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "WorkflowAutomatedTrigger", - "labelPlural": "WorkflowAutomatedTriggers", - "description": "A workflow automated trigger", - "icon": "IconSettingsAutomation", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b9a1999b-6e54-4992-b96e-dd8b5ade2344", - "type": "SELECT", - "name": "type", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": [ - { - "id": "7d1be58a-6d1b-4c47-9ce6-1814eef1b5e3", - "color": "green", - "label": "Database Event", - "value": "DATABASE_EVENT", - "position": 0 - }, - { - "id": "4a0a8b76-2d90-4c53-936d-6439aa22dee0", - "color": "blue", - "label": "Cron", - "value": "CRON", - "position": 1 - } - ], "settings": null, "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": null, - "label": "Automated Trigger Type", - "description": "The workflow automated trigger type", - "icon": "" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9639db10-9bf9-429c-a3fb-860cc9f308cd", - "type": "RAW_JSON", - "name": "settings", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Settings", - "description": "The workflow automated trigger settings", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "77b3d19e-d170-442a-b98a-80cc5b4e10ea", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d4d8fd54-4da7-4414-9819-5de6e1de156d", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "733dbede-bc1b-4245-b1ff-9708234feae3", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "538101df-99eb-4dac-a4a9-da41c0c62450", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3c47e048-729a-4e05-b6a6-bd5bb8c5891e", + "id": "684e5e25-6cbb-4da4-95c2-47047f864b18", + "universalIdentifier": "fa29a637-ff6b-46c6-8021-8df916b53829", "type": "RELATION", - "name": "workflow", - "isCustom": false, + "name": "previousCompanies", + "label": "Previous Companies", + "description": "People tied to the Employment History", + "icon": "IconBuildingSkyscraper", + "isCustom": true, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:35.865Z", + "updatedAt": "2026-02-25T16:13:36.108Z", "defaultValue": null, "options": null, "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "workflowId" + "relationType": "ONE_TO_MANY", + "junctionTargetFieldId": "3cd6f442-53df-4d54-ae82-ef81b8d1ab6a" }, "isLabelSyncedWithName": false, - "label": "Workflow", - "description": "WorkflowAutomatedTrigger workflow", - "icon": "IconSettingsAutomation", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4f860d25-b720-4218-9471-28ac7ccb6c22", - "nameSingular": "workflowAutomatedTrigger", - "namePlural": "workflowAutomatedTriggers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "3d041dc9-e4f0-4cd0-ad45-7d15080c4ac7", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3c47e048-729a-4e05-b6a6-bd5bb8c5891e", - "name": "workflow" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "15ad98cc-832a-4683-becf-987f6866ceeb", - "name": "automatedTriggers" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "e65d6c53-5bc1-41a4-90c1-dfbf72b87b69", - "imageIdentifierFieldMetadataId": null, - "shortcut": "C", - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": [ - [ - "name" - ], - [ - "domainNamePrimaryLinkUrl" - ] - ], - "labelSingular": "Company", - "labelPlural": "Companies", - "description": "A company", - "icon": "IconBuildingSkyscraper", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e65d6c53-5bc1-41a4-90c1-dfbf72b87b69", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "The company name", - "icon": "IconBuildingSkyscraper" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a710c97a-565d-4868-be27-fa846be32021", - "type": "LINKS", - "name": "domainName", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": true, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "primaryLinkUrl": "''", - "secondaryLinks": "'[]'", - "primaryLinkLabel": "''" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Domain Name", - "description": "The company website URL. We use this url to fetch the company icon", - "icon": "IconLink" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1fd0fe7e-97ac-4eb2-a85f-2acee3d360b0", - "type": "NUMBER", - "name": "employees", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Employees", - "description": "Number of employees in the company", - "icon": "IconUsers" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7a8a52a6-f837-4f1d-9755-93b14104ec58", - "type": "LINKS", - "name": "linkedinLink", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "primaryLinkUrl": "''", - "secondaryLinks": "'[]'", - "primaryLinkLabel": "''" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Linkedin", - "description": "The company Linkedin account", - "icon": "IconBrandLinkedin" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0ab7f91c-7205-4841-a23f-31952bb8404d", - "type": "LINKS", - "name": "xLink", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "primaryLinkUrl": "''", - "secondaryLinks": "'[]'", - "primaryLinkLabel": "''" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "X", - "description": "The company Twitter/X account", - "icon": "IconBrandX" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "bc4caa6b-0e0f-4834-bc96-9c7cb92fa932", - "type": "CURRENCY", - "name": "annualRecurringRevenue", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "amountMicros": null, - "currencyCode": "''" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "ARR", - "description": "Annual Recurring Revenue: The actual or estimated annual revenue of the company", - "icon": "IconMoneybag" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d948c198-14ef-4707-800d-a03e5c2bdd11", - "type": "ADDRESS", - "name": "address", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "addressLat": null, - "addressLng": null, - "addressCity": "''", - "addressState": "''", - "addressCountry": "''", - "addressStreet1": "''", - "addressStreet2": "''", - "addressPostcode": "''" - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Address", - "description": "Address of the company", - "icon": "IconMap" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "86e2ba34-6dfa-4f9e-87f9-2b5f09a183a2", - "type": "BOOLEAN", - "name": "idealCustomerProfile", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "ICP", - "description": "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you", - "icon": "IconTarget" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b435bc4e-21e6-43b8-a411-46c23c2de2bf", - "type": "POSITION", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "Company record position", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e6db1e64-3ffb-47c8-8943-5ef20186d3e2", - "type": "ACTOR", - "name": "createdBy", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "context": {} - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d69d9ca9-df3f-400b-87c0-ef09fa250f0c", - "type": "TS_VECTOR", - "name": "searchVector", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f464d407-0370-4bd3-ae9f-ed5b6c330288", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "204d67dd-1578-4a8d-9d9d-b7dafa0760e4", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ef76bbc6-cef1-41f5-b9c8-4974f2973efa", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6da354b1-152e-4ce6-87a7-018c2fe03255", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3c211c59-02a1-4904-ad0f-5bb30b736461", - "type": "RELATION", - "name": "people", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "People", - "description": "People linked to the company.", - "icon": "IconUsers", + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", + "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", "nameSingular": "person", "namePlural": "people" }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3c211c59-02a1-4904-ad0f-5bb30b736461", - "name": "people" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "e82262eb-7f58-4167-a23c-fc51ec584d1b", - "name": "company" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6811b55c-5670-42c5-bd3e-72e57f5bb701", - "type": "RELATION", - "name": "accountOwner", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "SET_NULL", - "relationType": "MANY_TO_ONE", - "joinColumnName": "accountOwnerId" - }, - "isLabelSyncedWithName": false, - "label": "Account Owner", - "description": "Your team member responsible for managing the company account", - "icon": "IconUserCircle", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, "targetObjectMetadata": { "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" + "id": "abecf3fd-421c-4438-bca7-8b00f01745bc", + "nameSingular": "employmentHistory", + "namePlural": "employmentHistories" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "6811b55c-5670-42c5-bd3e-72e57f5bb701", - "name": "accountOwner" + "id": "684e5e25-6cbb-4da4-95c2-47047f864b18", + "name": "previousCompanies" }, "targetFieldMetadata": { "__typename": "Field", - "id": "4a7eb4da-02ca-4999-a0da-9453c41c787b", - "name": "accountOwnerForCompanies" + "id": "a3325cf5-8f6d-4ce9-9935-9b373a5b2f82", + "name": "person" } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e2e49a83-15d5-4d8b-8597-d8aa3f197876", - "type": "RELATION", - "name": "taskTargets", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" }, - "isLabelSyncedWithName": false, - "label": "Tasks", - "description": "Tasks tied to the company", - "icon": "IconCheckbox", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7ae7e7ef-6985-4606-bbe3-b76e97b93524", - "nameSingular": "taskTarget", - "namePlural": "taskTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e2e49a83-15d5-4d8b-8597-d8aa3f197876", - "name": "taskTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "78adb2b7-69f2-4a94-9fb0-4d06a44b4418", - "name": "company" - } - } + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "60d04ca2-1122-4249-9091-547202f1e8d2", + "id": "09830fac-7c41-41d3-9455-59ebd58a5015", + "universalIdentifier": "a35e3d5b-2e04-4997-be02-4bf4ff3a09ec", "type": "RELATION", - "name": "noteTargets", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Notes", - "description": "Notes tied to the company", - "icon": "IconNotes", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "60d04ca2-1122-4249-9091-547202f1e8d2", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "17aa0682-1cd2-4b4d-91f4-70a1aecfd39e", - "name": "company" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0252cd73-3888-4886-8a60-a56663c350e5", - "type": "RELATION", - "name": "opportunities", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Opportunities", - "description": "Opportunities linked to the company.", - "icon": "IconTargetArrow", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "641f0c5f-bb3d-4a8f-8a35-45f769027d41", - "nameSingular": "opportunity", - "namePlural": "opportunities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "0252cd73-3888-4886-8a60-a56663c350e5", - "name": "opportunities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "47f9b175-1177-4057-9972-0eb3e9e18efe", - "name": "company" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d81f0aca-6291-419b-8ecf-feae125832d4", - "type": "RELATION", - "name": "favorites", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Favorites", - "description": "Favorites linked to the company", - "icon": "IconHeart", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d81f0aca-6291-419b-8ecf-feae125832d4", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "39056ced-b973-41a7-8a1c-41d4381378bb", - "name": "company" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4ea94a98-007a-4631-b0fc-546fb8267d7d", - "type": "RELATION", - "name": "attachments", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Attachments", - "description": "Attachments linked to the company", - "icon": "IconFileImport", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", - "nameSingular": "attachment", - "namePlural": "attachments" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4ea94a98-007a-4631-b0fc-546fb8267d7d", - "name": "attachments" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "b9307d91-87f5-49f2-9d55-891dbf0ccd06", - "name": "company" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5f5b9615-6773-4dff-9913-c437685a704b", - "type": "RELATION", - "name": "timelineActivities", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Timeline Activities", - "description": "Timeline Activities linked to the company", - "icon": "IconIconTimelineEvent", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "5f5b9615-6773-4dff-9913-c437685a704b", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "873e176a-fc0b-42cb-b4d2-4c11569e4c18", - "name": "company" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f036c1db-e58c-4ba6-871c-8609b97c5ff3", - "type": "TEXT", - "name": "tagline", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:53.213Z", - "updatedAt": "2025-06-09T18:53:53.213Z", - "defaultValue": "''", - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Tagline", - "description": "", - "icon": "IconAdCircle" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "47636569-6843-4b02-b08d-208cbbba8fed", - "type": "LINKS", - "name": "introVideo", + "name": "caredForPets", + "label": "Cared For Pets", + "description": "People Pet Care Agreement", + "icon": "IconPaw", "isCustom": true, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:53.215Z", - "updatedAt": "2025-06-09T18:53:53.215Z", - "defaultValue": { - "primaryLinkUrl": "''", - "secondaryLinks": "'[]'", - "primaryLinkLabel": "''" - }, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Intro Video", - "description": "", - "icon": "IconVideo" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c136fc38-7257-4555-ae85-e9bafe91a2c4", - "type": "MULTI_SELECT", - "name": "workPolicy", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:53.216Z", - "updatedAt": "2025-06-09T18:53:53.216Z", + "createdAt": "2026-02-25T16:13:35.770Z", + "updatedAt": "2026-02-25T16:13:36.323Z", "defaultValue": null, - "options": [ + "options": null, + "settings": { + "relationType": "ONE_TO_MANY", + "junctionTargetFieldId": "57bc0677-2548-45d8-852e-815c4e8f8f23" + }, + "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "relation": { + "__typename": "Relation", + "type": "ONE_TO_MANY", + "sourceObjectMetadata": { + "__typename": "Object", + "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "nameSingular": "person", + "namePlural": "people" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "09830fac-7c41-41d3-9455-59ebd58a5015", + "name": "caredForPets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1981b8d6-d7f0-4fcb-9502-d9ba7721d896", + "name": "caretaker" + } + }, + "morphRelations": null + } + ], + "indexMetadataList": [ + { + "__typename": "Index", + "id": "b8fd8b9c-4ccf-4bd7-8fc7-a948b280dc6a", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "name": "IDX_ae09ff97967369e0644bacc0fce", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "isCustom": false, + "indexFieldMetadataList": [ { - "id": "71194d51-4af8-4a6b-b296-11119d57bf53", - "color": "green", - "label": "On-Site", - "value": "ON_SITE", - "position": 0 - }, - { - "id": "243b61a3-fa3d-4d42-ac85-bc42490aa464", - "color": "turquoise", - "label": "Hybrid", - "value": "HYBRID", - "position": 1 - }, - { - "id": "40305b07-9ab3-48be-91d7-b5a07082d71d", - "color": "sky", - "label": "Remote Work", - "value": "REMOTE_WORK", - "position": 2 + "__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", + "order": 0 } - ], - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Work Policy", - "description": "", - "icon": "IconHome" + ] }, { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "40e9556e-e441-4473-b3fa-53c4b723f5d4", - "type": "BOOLEAN", - "name": "visaSponsorship", - "isCustom": true, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, + "__typename": "Index", + "id": "db5c72e9-b66b-4a61-9271-2d030771413f", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "name": "IDX_UNIQUE_87914cd3ce963115f8cb943e2ac", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": true, + "isCustom": false, + "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", + "order": 0 + } + ] + }, + { + "__typename": "Index", + "id": "d3e1ff0e-4a3d-45b2-8c4f-7a1c123cb66a", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "name": "IDX_bbd7aec1976fc684a0a5e4816c9", + "indexWhereClause": null, + "indexType": "GIN", "isUnique": false, - "createdAt": "2025-06-09T18:53:53.218Z", - "updatedAt": "2025-06-09T18:53:53.218Z", - "defaultValue": false, - "options": null, - "settings": {}, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Visa Sponsorship", - "description": "", - "icon": "IconBrandVisa" + "isCustom": false, + "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", + "order": 0 + } + ] } ] } @@ -13315,462 +15854,630 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4895c95d-e723-4fac-9327-943b55ed865c", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts", + "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", + "universalIdentifier": "20202020-fff0-4b44-be82-bda313884400", + "nameSingular": "noteTarget", + "namePlural": "noteTargets", "isCustom": false, "isRemote": false, "isActive": true, "isSystem": true, "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "a5b14907-7ca6-4452-9a1b-8fa76d087f62", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "labelIdentifierFieldMetadataId": "b5b7646d-e7dd-4c09-808a-f2bff3aa3b1a", "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", - "indexMetadataList": [], + "labelSingular": "Note Target", + "labelPlural": "Note Targets", + "description": "A note target", + "icon": "IconCheckbox", "fieldsList": [ { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a5b14907-7ca6-4452-9a1b-8fa76d087f62", - "type": "TEXT", - "name": "handle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "handle", - "description": "The account handle (email, username, phone number, etc.)", - "icon": "IconMail" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4a76f1de-855a-4946-b33d-1ec145fd9631", - "type": "TEXT", - "name": "provider", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "provider", - "description": "The account provider", - "icon": "IconSettings" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9ded96f0-74b2-454e-b6b0-dc469eb76248", - "type": "TEXT", - "name": "accessToken", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Access Token", - "description": "Messaging provider access token", - "icon": "IconKey" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3b55a508-95dc-4d02-aa97-391572f086c1", - "type": "TEXT", - "name": "refreshToken", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Refresh Token", - "description": "Messaging provider refresh token", - "icon": "IconKey" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "234ad9cf-d03d-4bcf-bc30-c14a9fd7a3be", - "type": "TEXT", - "name": "lastSyncHistoryId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last sync history ID", - "description": "Last sync history ID", - "icon": "IconHistory" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5d734d4c-d9d5-4188-b98d-34d9ef8cd173", - "type": "DATE_TIME", - "name": "authFailedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Auth failed at", - "description": "Auth failed at", - "icon": "IconX" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "460b669f-7232-40f7-9f1c-ec9b8ce4ecaf", - "type": "TEXT", - "name": "handleAliases", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Handle Aliases", - "description": "Handle Aliases", - "icon": "IconMail" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5be6c9ad-e0f6-4ddf-862d-f8c88c30b221", - "type": "ARRAY", - "name": "scopes", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Scopes", - "description": "Scopes", - "icon": "IconSettings" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "42673d6a-7cfc-4e20-aeff-d67cc7d1998f", + "id": "b5b7646d-e7dd-4c09-808a-f2bff3aa3b1a", + "universalIdentifier": "20202020-c02a-4121-8a21-cddeef123456", "type": "UUID", "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", "isCustom": false, "isActive": true, "isSystem": true, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Id", - "description": "Id", - "icon": "Icon123" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d763e364-37df-4ca7-a996-c8a95563c548", + "id": "579ff62c-8ce7-46b9-a024-f17faeb566d2", + "universalIdentifier": "20202020-c02b-4122-9b22-ddeef1234567", "type": "DATE_TIME", "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, "label": "Creation date", "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3f50f352-852e-4fcc-9115-a42a1754f1c2", - "type": "DATE_TIME", - "name": "updatedAt", + "icon": "IconCalendar", "isCustom": false, "isActive": true, - "isSystem": false, - "isUIReadOnly": false, + "isSystem": true, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1c5a42fc-ce19-4d6e-b913-a1f457e9ab70", + "id": "35661a3a-4d84-43e6-9b4b-14ee3b796bc2", + "universalIdentifier": "20202020-c02c-4123-8c23-eef12345678a", "type": "DATE_TIME", - "name": "deletedAt", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", "isCustom": false, "isActive": true, - "isSystem": false, - "isUIReadOnly": false, + "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": "72b201a7-a4eb-415a-8128-cee908d2aac3", + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0c89f5cf-4232-4df1-8784-4ca9380a0a9b", - "type": "RELATION", - "name": "accountOwner", + "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", + "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-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": "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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": "accountOwnerId" + "joinColumnName": "noteId" }, "isLabelSyncedWithName": false, - "label": "Account Owner", - "description": "Account Owner", - "icon": "IconUserCircle", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "4895c95d-e723-4fac-9327-943b55ed865c", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" + "id": "5a1c344c-438f-46f5-a376-2c400a781fa0", + "nameSingular": "noteTarget", + "namePlural": "noteTargets" }, "targetObjectMetadata": { "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" + "id": "7e2a0fff-cb81-4990-a189-69c4c4119894", + "nameSingular": "note", + "namePlural": "notes" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "0c89f5cf-4232-4df1-8784-4ca9380a0a9b", - "name": "accountOwner" + "id": "8bfc2ff3-877e-4262-8afa-c3fbabe266a4", + "name": "note" }, "targetFieldMetadata": { "__typename": "Field", - "id": "1f64702f-3611-4113-9bdf-50b289fbf63e", - "name": "connectedAccounts" + "id": "70d0e83c-4714-438a-9e88-87c30d977d9e", + "name": "noteTargets" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "afbbcb9f-5ff7-49a2-b9b7-b0ae22050ad2", - "type": "RELATION", - "name": "messageChannels", + "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": true, - "isUIReadOnly": false, + "isSystem": false, + "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", "defaultValue": null, "options": null, "settings": { - "relationType": "ONE_TO_MANY" + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "targetPersonId" }, "isLabelSyncedWithName": false, - "label": "Message Channels", - "description": "Message Channels", - "icon": "IconMessage", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4895c95d-e723-4fac-9327-943b55ed865c", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" + "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" + } }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "089247da-73c3-456c-a274-eefc605eb3fa", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" + { + "__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" + } }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "afbbcb9f-5ff7-49a2-b9b7-b0ae22050ad2", - "name": "messageChannels" + { + "__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" + } }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "7a010ef3-1638-4f65-bcdc-8e6e3e8049e7", - "name": "connectedAccount" + { + "__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": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a4443016-e645-4801-94a0-0ec8864f6290", - "type": "RELATION", - "name": "calendarChannels", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, + "__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, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Calendar Channels", - "description": "Calendar Channels", - "icon": "IconCalendar", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4895c95d-e723-4fac-9327-943b55ed865c", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0972537f-b817-40b1-a34f-a30a270d2b07", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "a4443016-e645-4801-94a0-0ec8864f6290", - "name": "calendarChannels" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "4e2f119e-8865-4a6a-b1ac-33d821fc260a", - "name": "connectedAccount" + "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 + } + ] } ] } @@ -13779,448 +16486,487 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "46d270fd-7b29-4a75-9943-27c8594b1f3c", - "nameSingular": "note", - "namePlural": "notes", + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "7b1da965-b3b3-4c08-aa75-1c6147704ffd", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "labelIdentifierFieldMetadataId": "10fa7415-d104-4704-b6fd-8cd6068dcb56", "imageIdentifierFieldMetadataId": null, - "shortcut": "N", + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "shortcut": "D", "isLabelSyncedWithName": false, "isSearchable": true, "duplicateCriteria": null, - "labelSingular": "Note", - "labelPlural": "Notes", - "description": "A note", - "icon": "IconNotes", - "indexMetadataList": [], + "labelSingular": "Dashboard", + "labelPlural": "Dashboards", + "description": "A dashboard", + "icon": "IconLayoutDashboard", "fieldsList": [ { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "452b2752-158f-45a0-98e3-c589e114043c", - "type": "DATE_TIME", - "name": "updatedAt", + "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": false, - "isUIReadOnly": false, + "isSystem": true, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8d6003b7-87ea-4f14-94e4-1c045014874e", + "id": "f5845a93-6201-4fa7-a476-6f174e01ac57", + "universalIdentifier": "20202020-da1c-41d3-8cd3-cdefabcdefab", "type": "DATE_TIME", - "name": "deletedAt", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", "isCustom": false, "isActive": true, - "isSystem": false, - "isUIReadOnly": false, + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "30af23a1-e24f-410a-a022-821b000afe81", - "type": "POSITION", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "Note record position", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7b1da965-b3b3-4c08-aa75-1c6147704ffd", + "id": "10fa7415-d104-4704-b6fd-8cd6068dcb56", + "universalIdentifier": "20202020-20ee-4091-95dc-44b57eda3a89", "type": "TEXT", "name": "title", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, "label": "Title", - "description": "Note title", - "icon": "IconNotes" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b44eecda-a7e8-44ff-8db1-4ce2ca80f34c", - "type": "RICH_TEXT_V2", - "name": "bodyV2", + "description": "Dashboard title", + "icon": "IconNotes", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "markdown": "''", - "blocknote": "''" - }, + "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, - "label": "Body", - "description": "Note body", - "icon": "IconFilePencil" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "82baf3f9-ad32-44e9-9b79-61995060ed23", - "type": "ACTOR", - "name": "createdBy", + "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": false, + "isSystem": true, "isUIReadOnly": false, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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'", - "context": {} + "workspaceMemberId": null }, "options": null, "settings": null, "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": null, - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ac77bf26-535c-4c88-8735-97702866de25", + "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", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, "label": "Search vector", "description": "Field used for full-text search", - "icon": "IconUser" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5aac0f27-b242-44db-bf76-d64f014f8540", - "type": "UUID", - "name": "id", + "icon": "IconUser", "isCustom": false, "isActive": true, "isSystem": true, "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "aee477d6-4137-4d89-9f19-ce9f7f37deaa", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f08cc9b1-eba9-402b-bc0a-f7351fc19361", - "type": "RELATION", - "name": "noteTargets", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", "defaultValue": null, "options": null, "settings": { - "relationType": "ONE_TO_MANY" + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"title\"), ''))", + "generatedType": "STORED" }, "isLabelSyncedWithName": false, - "label": "Relations", - "description": "Note targets", - "icon": "IconArrowUpRight", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "46d270fd-7b29-4a75-9943-27c8594b1f3c", - "nameSingular": "note", - "namePlural": "notes" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "f8022881-1190-4760-8107-309648f32024", - "nameSingular": "noteTarget", - "namePlural": "noteTargets" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "f08cc9b1-eba9-402b-bc0a-f7351fc19361", - "name": "noteTargets" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0500ed2f-0c98-4524-bc11-1d946ea5162c", - "name": "note" - } - } + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", + "relation": null, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ac2e5ed6-900e-46c1-bf1c-8d97516ba626", + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Attachments", - "description": "Note attachments", - "icon": "IconFileImport", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "46d270fd-7b29-4a75-9943-27c8594b1f3c", - "nameSingular": "note", - "namePlural": "notes" + "id": "58a0f417-6dee-4c61-b11d-a041dbe3d839", + "nameSingular": "dashboard", + "namePlural": "dashboards" }, "targetObjectMetadata": { "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", + "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", "nameSingular": "attachment", "namePlural": "attachments" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "ac2e5ed6-900e-46c1-bf1c-8d97516ba626", + "id": "5db965b8-65ab-4c7e-8c97-f542615e9038", "name": "attachments" }, "targetFieldMetadata": { "__typename": "Field", - "id": "9c872831-da9b-494b-9d2e-bf4b0b86a1ea", - "name": "note" + "id": "12247923-3e01-4917-8386-64164fd200dc", + "name": "target" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "503766e0-f1d2-4702-b6bf-c301a19582fa", + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Timeline Activities", - "description": "Timeline Activities linked to the note.", - "icon": "IconTimelineEvent", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "46d270fd-7b29-4a75-9943-27c8594b1f3c", - "nameSingular": "note", - "namePlural": "notes" + "id": "58a0f417-6dee-4c61-b11d-a041dbe3d839", + "nameSingular": "dashboard", + "namePlural": "dashboards" }, "targetObjectMetadata": { "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", + "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", "nameSingular": "timelineActivity", "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "503766e0-f1d2-4702-b6bf-c301a19582fa", + "id": "1ea2450b-14b6-4203-928f-4b98080bb83f", "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "394a9497-491c-49f5-a8a4-d5f74e9003f3", - "name": "note" + "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", + "name": "target" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "cbd1eab7-4628-45ed-b24b-7bddc0aa1b56", + "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": true, + "isSystem": false, "isUIReadOnly": false, - "isNullable": true, + "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Favorites", - "description": "Favorites linked to the note", - "icon": "IconHeart", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "46d270fd-7b29-4a75-9943-27c8594b1f3c", - "nameSingular": "note", - "namePlural": "notes" + "id": "58a0f417-6dee-4c61-b11d-a041dbe3d839", + "nameSingular": "dashboard", + "namePlural": "dashboards" }, "targetObjectMetadata": { "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", + "id": "0591ea73-a468-4170-8f44-90269f7fa180", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "cbd1eab7-4628-45ed-b24b-7bddc0aa1b56", + "id": "814c4758-671b-4922-89c2-b1b7fcd81abd", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "0c94cad0-e994-4185-a8c6-3a63e7a2c4d4", - "name": "note" + "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 + } + ] } ] } @@ -14229,399 +16975,20 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "45ff61b7-21cd-4c9a-99cc-1a7f63032949", - "nameSingular": "viewField", - "namePlural": "viewFields", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "a6ccb8df-d31d-4340-ab8c-02308701ae1c", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "View Field", - "labelPlural": "View Fields", - "description": "(System) View Fields", - "icon": "IconTag", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e66ef23b-9f73-4336-b245-299f265431bb", - "type": "UUID", - "name": "fieldMetadataId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Field Metadata Id", - "description": "View Field target field", - "icon": "IconTag" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3fafd64f-e7e7-438e-ae79-dd0267f290ab", - "type": "BOOLEAN", - "name": "isVisible", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": true, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Visible", - "description": "View Field visibility", - "icon": "IconEye" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0cdf1896-52af-4a4f-af2c-10aad7447f4b", - "type": "NUMBER", - "name": "size", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Size", - "description": "View Field size", - "icon": "IconEye" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e6ef7240-f8b7-4264-99c7-64a89a2be2c2", - "type": "NUMBER", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "View Field position", - "icon": "IconList" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6a695836-f368-4a0d-9c7a-ccd340b1a808", - "type": "SELECT", - "name": "aggregateOperation", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": [ - { - "id": "76c6acee-4f8b-4367-a08d-feaf003b997e", - "color": "red", - "label": "Average", - "value": "AVG", - "position": 0 - }, - { - "id": "48a842e1-5bd8-475f-9681-3b4c62891933", - "color": "purple", - "label": "Count", - "value": "COUNT", - "position": 1 - }, - { - "id": "1878e811-3d76-41f5-ba35-7d58146f1451", - "color": "sky", - "label": "Maximum", - "value": "MAX", - "position": 2 - }, - { - "id": "413cb8c1-6cfa-47ab-86da-f51d054622dc", - "color": "turquoise", - "label": "Minimum", - "value": "MIN", - "position": 3 - }, - { - "id": "ede73fd8-9d9b-4d3f-a475-3cdfdcdc63c0", - "color": "yellow", - "label": "Sum", - "value": "SUM", - "position": 4 - }, - { - "id": "ddc7bcc7-5d48-4eb8-8660-e053b16f8845", - "color": "red", - "label": "Count empty", - "value": "COUNT_EMPTY", - "position": 5 - }, - { - "id": "52c17387-bc62-455e-8604-b12e70ec223b", - "color": "purple", - "label": "Count not empty", - "value": "COUNT_NOT_EMPTY", - "position": 6 - }, - { - "id": "5f255a84-79ce-49ab-8d44-d324f841ca5a", - "color": "sky", - "label": "Count unique values", - "value": "COUNT_UNIQUE_VALUES", - "position": 7 - }, - { - "id": "60a53249-6043-449a-85b4-c319e67ee7a4", - "color": "turquoise", - "label": "Percent empty", - "value": "PERCENTAGE_EMPTY", - "position": 8 - }, - { - "id": "6ebadd29-2156-42ab-8d47-243011e591fe", - "color": "yellow", - "label": "Percent not empty", - "value": "PERCENTAGE_NOT_EMPTY", - "position": 9 - }, - { - "id": "b62cb7a9-2775-4cd4-939f-5f9444cd4f91", - "color": "red", - "label": "Count true", - "value": "COUNT_TRUE", - "position": 10 - }, - { - "id": "af150faa-e6a5-49b2-8fdf-fe078da76a31", - "color": "purple", - "label": "Count false", - "value": "COUNT_FALSE", - "position": 11 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Aggregate operation", - "description": "Optional aggregate operation", - "icon": "IconCalculator" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a6ccb8df-d31d-4340-ab8c-02308701ae1c", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "59c54287-ec0d-438d-a45b-332c6b42185e", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "22297a50-78e3-465c-aebd-3fbf8500b070", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e54d99e3-4bd9-40af-b5cb-f25c3c7405f6", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "fc9bb55d-ad75-4e86-ae17-d9dfe354ef5f", - "type": "RELATION", - "name": "view", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "viewId" - }, - "isLabelSyncedWithName": false, - "label": "View", - "description": "View Field related view", - "icon": "IconLayoutCollage", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "45ff61b7-21cd-4c9a-99cc-1a7f63032949", - "nameSingular": "viewField", - "namePlural": "viewFields" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "fc9bb55d-ad75-4e86-ae17-d9dfe354ef5f", - "name": "view" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "2262da8a-a08c-4a2e-b28b-e7a471c6309f", - "name": "viewFields" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4534bb30-62fb-46fd-899b-c03348acd97a", + "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", + "universalIdentifier": "20202020-d65d-4ab9-9344-d77bfb376a3d", "nameSingular": "workflowVersion", "namePlural": "workflowVersions", "isCustom": false, "isRemote": false, "isActive": true, - "isSystem": false, + "isSystem": true, "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "b79c052a-0957-4abb-98ab-dbb708e63b39", + "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, @@ -14630,116 +16997,297 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "labelPlural": "Workflow Versions", "description": "A workflow version", "icon": "IconVersions", - "indexMetadataList": [], "fieldsList": [ { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b79c052a-0957-4abb-98ab-dbb708e63b39", + "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", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, "label": "Name", "description": "The workflow version name", - "icon": "IconSettingsAutomation" + "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", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d361fe91-6374-4d76-9e52-e268e024b512", + "id": "a8aeff08-fdd8-442c-840f-c0f35d20c7a8", + "universalIdentifier": "20202020-4eae-43e7-86e0-212b41a30b48", "type": "RAW_JSON", "name": "trigger", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, "label": "Version trigger", "description": "Json object to provide trigger", - "icon": "IconSettingsAutomation" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "958b3578-e664-4915-8e18-637342bf9043", - "type": "RAW_JSON", - "name": "steps", + "icon": "IconSettingsAutomation", "isCustom": false, "isActive": true, "isSystem": false, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Version steps", - "description": "Json object to provide steps", - "icon": "IconSettingsAutomation" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "97abc9ad-0c75-4aa5-9d88-50d0c3a977fd", - "type": "SELECT", - "name": "status", + "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": 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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", "defaultValue": "'DRAFT'", "options": [ { - "id": "3204a532-b01e-4f25-a32b-bc0ca1944f6f", + "id": "20202020-e3fe-4308-bb57-931bb8098aa0", "color": "yellow", "label": "Draft", "value": "DRAFT", "position": 0 }, { - "id": "985a04f7-6a17-42f1-bbe6-c7498fe85000", + "id": "20202020-e9da-428f-8499-bce1b020660b", "color": "green", "label": "Active", "value": "ACTIVE", "position": 1 }, { - "id": "3c3ca642-c1bb-4c3b-959a-0029c2088b7a", + "id": "20202020-e48d-4159-980d-2cc1235fc918", "color": "orange", "label": "Deactivated", "value": "DEACTIVATED", "position": 2 }, { - "id": "de9dc9eb-6ab7-447e-b621-500d18866827", + "id": "20202020-5e5e-48fe-bcd6-7688ec280b30", "color": "gray", "label": "Archived", "value": "ARCHIVED", @@ -14748,146 +17296,189 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = ], "settings": null, "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": null, - "label": "Version status", - "description": "The workflow version status", - "icon": "IconStatusChange" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "6bb9d3ff-2980-458e-85dd-5ccf52a89c72", + "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": false, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Position", - "description": "Workflow version position", - "icon": "IconHierarchy2" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ea3fe359-fba1-49a7-84ef-d447622dcfff", - "type": "UUID", - "name": "id", + "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": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "71afaeb6-096f-4162-abe8-9540f8cc586a", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "cd407b71-6b81-4a98-8120-d9b553b9330f", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3d25578b-de4a-4d52-ab09-663b6f27a9be", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", "defaultValue": null, "options": null, "settings": { - "displayFormat": "RELATIVE" + "asExpression": "to_tsvector('simple', COALESCE(public.unaccent_immutable(\"name\"), ''))", + "generatedType": "STORED" }, "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e275efb7-512f-4df0-a6c5-7b48e5fa1b64", + "id": "4c39761e-55a0-46d4-98da-45a451b676c3", + "universalIdentifier": "20202020-b8e0-4e57-928d-b51671cc71f2", "type": "RELATION", - "name": "workflow", + "name": "favorites", + "label": "Favorites", + "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", + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", "defaultValue": null, "options": null, "settings": { @@ -14896,185 +17487,132 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "joinColumnName": "workflowId" }, "isLabelSyncedWithName": false, - "label": "Workflow", - "description": "WorkflowVersion workflow", - "icon": "IconSettingsAutomation", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "4534bb30-62fb-46fd-899b-c03348acd97a", + "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", "nameSingular": "workflowVersion", "namePlural": "workflowVersions" }, "targetObjectMetadata": { "__typename": "Object", - "id": "3d041dc9-e4f0-4cd0-ad45-7d15080c4ac7", + "id": "ffd13062-c19a-4904-a524-6c8560da9be8", "nameSingular": "workflow", "namePlural": "workflows" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "e275efb7-512f-4df0-a6c5-7b48e5fa1b64", + "id": "7b78b420-50aa-4b84-baa0-795c6f2bacb0", "name": "workflow" }, "targetFieldMetadata": { "__typename": "Field", - "id": "cfadb60b-7c05-441a-a592-c956a102386f", + "id": "ddfa2d27-fc46-42da-9c20-648d5ba15135", "name": "versions" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b960652a-142e-4772-9011-f261e66e59fe", + "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": false, + "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Runs", - "description": "Workflow runs linked to the version.", - "icon": "IconRun", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "4534bb30-62fb-46fd-899b-c03348acd97a", + "id": "53581ba5-5306-45f8-b99d-9be0d99c4395", "nameSingular": "workflowVersion", "namePlural": "workflowVersions" }, "targetObjectMetadata": { "__typename": "Object", - "id": "fac890af-68c5-4718-a16b-7401b1868429", + "id": "678a973d-c1ae-4b73-86c4-530b5df455e9", "nameSingular": "workflowRun", "namePlural": "workflowRuns" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "b960652a-142e-4772-9011-f261e66e59fe", + "id": "154d4a23-7284-4382-87de-c59b038db715", "name": "runs" }, "targetFieldMetadata": { "__typename": "Field", - "id": "f26aee9e-883a-46d2-938b-8db3061ba579", + "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": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c7ea1e1d-651a-4a3b-9645-21239ff1d468", - "type": "RELATION", - "name": "favorites", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, + "__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, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Favorites", - "description": "Favorites linked to the workflow version", - "icon": "IconHeart", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4534bb30-62fb-46fd-899b-c03348acd97a", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "c7ea1e1d-651a-4a3b-9645-21239ff1d468", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d0afae27-97ec-4a1e-bcd3-01713fd77828", - "name": "workflowVersion" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "440f9262-bd36-42f3-b90d-b79632b4790c", - "type": "RELATION", - "name": "timelineActivities", "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Timeline Activities", - "description": "Timeline activities linked to the version", - "icon": "", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "4534bb30-62fb-46fd-899b-c03348acd97a", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "440f9262-bd36-42f3-b90d-b79632b4790c", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "57c2fbe0-ec1d-49c9-ba4e-c7c024a8f400", - "name": "workflowVersion" + "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 } - } + ] } ] } @@ -15083,314 +17621,5549 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3dd1c5bd-c964-414d-a52f-c3d182f9eac7", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants", - "isCustom": false, + "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", + "universalIdentifier": "1ba2c49b-7df3-4275-82f6-a53f0af5bf41", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements", + "isCustom": true, "isRemote": false, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "deb66502-6542-48b7-8b9b-e94928ea87c3", + "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": false, + "isSearchable": true, "duplicateCriteria": null, - "labelSingular": "Calendar event participant", - "labelPlural": "Calendar event participants", - "description": "Calendar event participants", - "icon": "IconCalendar", - "indexMetadataList": [], + "labelSingular": "Pet Care Agreement", + "labelPlural": "Pet Care Agreements", + "description": "", + "icon": "IconPaw", "fieldsList": [ { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "deb66502-6542-48b7-8b9b-e94928ea87c3", - "type": "TEXT", - "name": "handle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Handle", - "description": "Handle", - "icon": "IconMail" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ed03726d-b69d-4f8e-9a69-bff7ce4bf80f", - "type": "TEXT", - "name": "displayName", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Display Name", - "description": "Display Name", - "icon": "IconUser" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "919d6b34-a1a7-41a4-9a4c-09667a9b6914", - "type": "BOOLEAN", - "name": "isOrganizer", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": false, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Is Organizer", - "description": "Is Organizer", - "icon": "IconUser" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a2457fb5-25e5-41b3-912e-cecbd74a5125", - "type": "SELECT", - "name": "responseStatus", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'NEEDS_ACTION'", - "options": [ - { - "id": "c8e95813-2194-4aac-8887-13bfb67f319d", - "color": "orange", - "label": "Needs Action", - "value": "NEEDS_ACTION", - "position": 0 - }, - { - "id": "62eb2ffc-f625-4357-8bcd-c75357dfe569", - "color": "red", - "label": "Declined", - "value": "DECLINED", - "position": 1 - }, - { - "id": "a50eccd1-eed3-4616-9b23-4d0f3b5bddcc", - "color": "yellow", - "label": "Tentative", - "value": "TENTATIVE", - "position": 2 - }, - { - "id": "50550a1b-2c4e-48bc-9013-6bb6dd8320c6", - "color": "green", - "label": "Accepted", - "value": "ACCEPTED", - "position": 3 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Response Status", - "description": "Response Status", - "icon": "IconUser" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ac6189c3-dc1a-4c9f-b199-870deb0a40f7", + "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": false, + "isUIReadOnly": true, "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Id", - "description": "Id", - "icon": "Icon123" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "79cc2f13-3da0-4178-8716-1e2d86425178", + "id": "522055bc-bfc4-41bc-8b37-756b87285221", + "universalIdentifier": "12a9a58a-c73b-4175-9c41-306bbe1d5164", "type": "DATE_TIME", "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, "label": "Creation date", "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d29c2394-ed5a-4d34-ae01-e5930b81db60", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0079d63d-ef98-4c68-bf3e-8bfa0eb8b22c", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3178f466-488b-4e80-8129-7ad753974ce2", - "type": "RELATION", - "name": "calendarEvent", + "icon": "IconCalendar", "isCustom": false, "isActive": true, "isSystem": true, - "isUIReadOnly": false, + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "calendarEventId" + "asExpression": "to_tsvector('simple', NULL)", + "generatedType": "STORED" }, "isLabelSyncedWithName": false, - "label": "Event ID", - "description": "Event ID", - "icon": "IconCalendar", + "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": "3dd1c5bd-c964-414d-a52f-c3d182f9eac7", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" + "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" }, "targetObjectMetadata": { "__typename": "Object", - "id": "7ad6021f-d432-4c92-baef-2b632196a62a", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" + "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", + "nameSingular": "pet", + "namePlural": "pets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "3178f466-488b-4e80-8129-7ad753974ce2", - "name": "calendarEvent" + "id": "57bc0677-2548-45d8-852e-815c4e8f8f23", + "name": "pet" }, "targetFieldMetadata": { "__typename": "Field", - "id": "f60bc6d4-7b0a-4955-a728-1b7ef8ea844e", - "name": "calendarEventParticipants" + "id": "dfcf53fb-7924-4214-b63e-ff754575a435", + "name": "caretakers" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d12110d9-ce8a-48fb-a82c-5d93dce9e003", - "type": "RELATION", - "name": "person", + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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", + "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-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": "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", + "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": "e6c6e27a-e2a8-41a4-8e69-6b3cdcfa04d1", + "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-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": "5357fde7-0c97-4884-999e-93fb7af2c634", + "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-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": "2072fbe5-ba86-4e99-ba6c-09f3315c43f9", + "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-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": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", + "nameSingular": "attachment", + "namePlural": "attachments" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "2072fbe5-ba86-4e99-ba6c-09f3315c43f9", + "name": "attachments" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "12247923-3e01-4917-8386-64164fd200dc", + "name": "target" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "33e1ff69-2cef-44c4-bf22-5d41443957b4", + "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-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": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "33e1ff69-2cef-44c4-bf22-5d41443957b4", + "name": "favorites" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1343c0d7-85c3-4cb9-b04f-47caa829733d", + "name": "task" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "6db1ce5b-290c-45e7-ab74-76375b85be41", + "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-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": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "715103ac-24fe-4406-920c-66acd3f24a84", + "nameSingular": "taskTarget", + "namePlural": "taskTargets" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "6db1ce5b-290c-45e7-ab74-76375b85be41", + "name": "taskTargets" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "605b85e6-78ac-4b87-831f-e6f0d0f6739c", + "name": "task" + } + }, + "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", + "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-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": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", + "nameSingular": "task", + "namePlural": "tasks" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", + "nameSingular": "timelineActivity", + "namePlural": "timelineActivities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "3b219348-d361-4f11-852f-e205ebc4f07f", + "name": "timelineActivities" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", + "name": "target" + } + }, + "morphRelations": null + } + ], + "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", + "indexWhereClause": null, + "indexType": "GIN", + "isUnique": false, + "isCustom": false, + "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", + "order": 0 + } + ] + } + ] + } + }, + { + "__typename": "ObjectEdge", + "node": { + "__typename": "Object", + "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", + "universalIdentifier": "cf6069d3-2db1-402d-9e28-5ec456dd773d", + "nameSingular": "rocket", + "namePlural": "rockets", + "isCustom": true, + "isRemote": false, + "isActive": true, + "isSystem": false, + "isUIReadOnly": false, + "createdAt": "2026-02-25T16:13:34.508Z", + "updatedAt": "2026-02-25T16:13:34.508Z", + "labelIdentifierFieldMetadataId": "27c09099-fdaf-4f36-bc9d-690bd6282be0", + "imageIdentifierFieldMetadataId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "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", + "icon": "IconUserCircle", + "fieldsList": [ + { + "__typename": "Field", + "id": "bf7b8844-02f5-4ad0-ac3d-841f35355518", + "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-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": "4ad3f883-70b3-4679-ac77-feab844f9593", + "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-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": "1f683802-ede6-4054-b597-784762dfd125", + "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-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": "671f0633-a761-49ef-ac85-7ae38455b1f4", + "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-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": "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", + "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-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": "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": { @@ -15399,50 +23172,53 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "joinColumnName": "personId" }, "isLabelSyncedWithName": false, - "label": "Person", - "description": "Person", - "icon": "IconUser", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "3dd1c5bd-c964-414d-a52f-c3d182f9eac7", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" + "id": "2756d5d9-f309-48d9-9579-31cfebce2eef", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" }, "targetObjectMetadata": { "__typename": "Object", - "id": "6f3b9df6-57c0-4fe0-b8af-1a5ed20d76bd", + "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", "nameSingular": "person", "namePlural": "people" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "d12110d9-ce8a-48fb-a82c-5d93dce9e003", + "id": "7465fe47-798b-4339-823d-d0873cd4763e", "name": "person" }, "targetFieldMetadata": { "__typename": "Field", - "id": "4ff49456-5079-4474-88fe-4d5414807f93", - "name": "calendarEventParticipants" + "id": "5d5578cf-69d1-4aac-aa60-a0fe65dd46ac", + "name": "messageParticipants" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ae5ec2d6-11ec-477f-9f2e-ec1835807a7c", + "id": "710912e3-673a-43df-a2c5-227e3fe7958f", + "universalIdentifier": "20202020-77a7-4845-99ed-1bcbb478be6f", "type": "RELATION", "name": "workspaceMember", + "label": "Workspace Member", + "description": "Workspace member", + "icon": "IconCircleUser", "isCustom": false, "isActive": true, - "isSystem": true, - "isUIReadOnly": false, + "isSystem": false, + "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", "defaultValue": null, "options": null, "settings": { @@ -15451,35 +23227,100 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "joinColumnName": "workspaceMemberId" }, "isLabelSyncedWithName": false, - "label": "Workspace Member", - "description": "Workspace Member", - "icon": "IconUser", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "3dd1c5bd-c964-414d-a52f-c3d182f9eac7", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" + "id": "2756d5d9-f309-48d9-9579-31cfebce2eef", + "nameSingular": "messageParticipant", + "namePlural": "messageParticipants" }, "targetObjectMetadata": { "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", + "id": "94e2c8c4-7d20-4eaf-80aa-d4333bb9d0cc", "nameSingular": "workspaceMember", "namePlural": "workspaceMembers" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "ae5ec2d6-11ec-477f-9f2e-ec1835807a7c", + "id": "710912e3-673a-43df-a2c5-227e3fe7958f", "name": "workspaceMember" }, "targetFieldMetadata": { "__typename": "Field", - "id": "e53738a2-8080-4299-b8eb-3d2b85abda1b", - "name": "calendarEventParticipants" + "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 + } + ] } ] } @@ -15488,2957 +23329,1352 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3d041dc9-e4f0-4cd0-ad45-7d15080c4ac7", - "nameSingular": "workflow", - "namePlural": "workflows", - "isCustom": false, + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "f0a45b6e-522e-4eb5-9602-a0d43114956a", + "createdAt": "2026-02-25T16:13:34.715Z", + "updatedAt": "2026-02-25T16:13:34.715Z", + "labelIdentifierFieldMetadataId": "94d8121a-738a-4710-98ef-adacc29b2c52", "imageIdentifierFieldMetadataId": null, - "shortcut": "W", + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "shortcut": null, "isLabelSyncedWithName": false, - "isSearchable": false, + "isSearchable": true, "duplicateCriteria": null, - "labelSingular": "Workflow", - "labelPlural": "Workflows", - "description": "A workflow", - "icon": "IconSettingsAutomation", - "indexMetadataList": [], + "labelSingular": "Pet", + "labelPlural": "Pets", + "description": "", + "icon": "IconCat", "fieldsList": [ { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f0a45b6e-522e-4eb5-9602-a0d43114956a", + "id": "94d8121a-738a-4710-98ef-adacc29b2c52", + "universalIdentifier": "5a367ff3-0641-4b51-9c57-7b33179474e9", "type": "TEXT", "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, "label": "Name", - "description": "The workflow name", - "icon": "IconSettingsAutomation" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "00139658-d336-4d9a-951f-2c967a98bfcd", - "type": "TEXT", - "name": "lastPublishedVersionId", + "description": "Name", + "icon": "IconAbc", "isCustom": false, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last published Version Id", - "description": "The workflow last published version id", - "icon": "IconVersions" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a7abe2d2-b89f-422c-9d51-0b7cec88ba5d", - "type": "MULTI_SELECT", - "name": "statuses", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:34.715Z", + "updatedAt": "2026-02-25T16:13:34.715Z", "defaultValue": null, - "options": [ - { - "color": "yellow", - "label": "Draft", - "value": "DRAFT", - "position": 0 - }, - { - "color": "green", - "label": "Active", - "value": "ACTIVE", - "position": 1 - }, - { - "color": "gray", - "label": "Deactivated", - "value": "DEACTIVATED", - "position": 2 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Statuses", - "description": "The current statuses of the workflow versions", - "icon": "IconStatusChange" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7001059a-125c-46a5-843e-429fbc4218e8", - "type": "POSITION", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, "options": null, "settings": null, "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": null, - "label": "Position", - "description": "Workflow record position", - "icon": "IconHierarchy2" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ffb259c3-1f06-42ec-9083-ba4fa42d85da", - "type": "ACTOR", - "name": "createdBy", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "name": "'System'", - "source": "'MANUAL'", - "context": {} - }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Created by", - "description": "The creator of the record", - "icon": "IconCreativeCommonsSa" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9220fe29-91de-482e-a238-2d17c025b5f1", + "id": "1e015981-3af1-47c5-b49c-bb8720881a92", + "universalIdentifier": "6d20b212-4bb5-494f-b6b9-5e4265086728", "type": "UUID", "name": "id", + "label": "Id", + "description": "Id", + "icon": "Icon123", "isCustom": false, "isActive": true, "isSystem": true, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Id", - "description": "Id", - "icon": "Icon123" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "86a18c6b-b051-4329-9343-7b7aad8475f4", + "id": "20c86006-a853-4ab2-9687-223c1a3d104c", + "universalIdentifier": "444aa420-5fba-4a48-89e7-bf389e70d6c8", "type": "DATE_TIME", "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, "label": "Creation date", "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b3b8cba0-6506-4a0a-a9bf-4efe360bda1c", - "type": "DATE_TIME", - "name": "updatedAt", + "icon": "IconCalendar", "isCustom": false, "isActive": true, - "isSystem": false, - "isUIReadOnly": false, + "isSystem": true, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:34.715Z", + "updatedAt": "2026-02-25T16:13:34.715Z", "defaultValue": "now", "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, + "settings": null, "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ff839fe2-1cdf-45e8-9820-98bd7574aebc", + "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", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "cfadb60b-7c05-441a-a592-c956a102386f", - "type": "RELATION", - "name": "versions", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Versions", - "description": "Workflow versions linked to the workflow.", - "icon": "IconVersions", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "3d041dc9-e4f0-4cd0-ad45-7d15080c4ac7", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4534bb30-62fb-46fd-899b-c03348acd97a", - "nameSingular": "workflowVersion", - "namePlural": "workflowVersions" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "cfadb60b-7c05-441a-a592-c956a102386f", - "name": "versions" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "e275efb7-512f-4df0-a6c5-7b48e5fa1b64", - "name": "workflow" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4608fc82-1fcf-46f4-bc14-86bfbbe0f47d", - "type": "RELATION", - "name": "runs", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Runs", - "description": "Workflow runs linked to the workflow.", - "icon": "IconRun", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "3d041dc9-e4f0-4cd0-ad45-7d15080c4ac7", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "fac890af-68c5-4718-a16b-7401b1868429", - "nameSingular": "workflowRun", - "namePlural": "workflowRuns" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4608fc82-1fcf-46f4-bc14-86bfbbe0f47d", - "name": "runs" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1a7584bc-5f3a-466c-ad24-587eda39b8f3", - "name": "workflow" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "15ad98cc-832a-4683-becf-987f6866ceeb", - "type": "RELATION", - "name": "automatedTriggers", + "description": "Deletion date", + "icon": "IconCalendarClock", "isCustom": false, "isActive": true, "isSystem": true, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:34.715Z", + "updatedAt": "2026-02-25T16:13:34.715Z", "defaultValue": null, "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, + "settings": null, "isLabelSyncedWithName": false, - "label": "Automated Triggers", - "description": "Workflow automated triggers linked to the workflow.", - "icon": "", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "3d041dc9-e4f0-4cd0-ad45-7d15080c4ac7", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4f860d25-b720-4218-9471-28ac7ccb6c22", - "nameSingular": "workflowAutomatedTrigger", - "namePlural": "workflowAutomatedTriggers" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "15ad98cc-832a-4683-becf-987f6866ceeb", - "name": "automatedTriggers" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "3c47e048-729a-4e05-b6a6-bd5bb8c5891e", - "name": "workflow" - } - } + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "relation": null, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "35e3b029-4f79-40f2-8a91-ec3344563ea2", - "type": "RELATION", - "name": "favorites", + "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": false, - "isNullable": true, + "isUIReadOnly": true, + "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, + "createdAt": "2026-02-25T16:13:34.715Z", + "updatedAt": "2026-02-25T16:13:34.715Z", + "defaultValue": 0, "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, + "settings": null, "isLabelSyncedWithName": false, - "label": "Favorites", - "description": "Favorites linked to the workflow", - "icon": "IconHeart", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "3d041dc9-e4f0-4cd0-ad45-7d15080c4ac7", - "nameSingular": "workflow", - "namePlural": "workflows" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", - "nameSingular": "favorite", - "namePlural": "favorites" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "35e3b029-4f79-40f2-8a91-ec3344563ea2", - "name": "favorites" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "cb37eb2d-89ff-4fe9-82d1-4d9151feba13", - "name": "workflow" - } - } + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", + "relation": null, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1bedb47b-1bdd-4d01-bd99-6382b707f5a3", + "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", - "isCustom": false, + "label": "Timeline Activities", + "description": "Pets tied to the Timeline Activity", + "icon": "IconBuildingSkyscraper", + "isCustom": true, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Timeline Activities", - "description": "Timeline activities linked to the workflow", - "icon": "", + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "3d041dc9-e4f0-4cd0-ad45-7d15080c4ac7", - "nameSingular": "workflow", - "namePlural": "workflows" + "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", + "nameSingular": "pet", + "namePlural": "pets" }, "targetObjectMetadata": { "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", + "id": "326d1da4-64f6-4001-bea2-14cd40bd3fed", "nameSingular": "timelineActivity", "namePlural": "timelineActivities" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "1bedb47b-1bdd-4d01-bd99-6382b707f5a3", + "id": "4cdcc62c-aa30-4f28-a4ae-8e94a865ba9e", "name": "timelineActivities" }, "targetFieldMetadata": { "__typename": "Field", - "id": "e79188eb-d3a0-4c26-aeab-c37f4b675966", - "name": "workflow" + "id": "1d819a47-f043-4ed8-8241-dde5e5e5a593", + "name": "target" } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "d149e3a5-66e0-4190-bc31-6561572b0596", - "imageIdentifierFieldMetadataId": "a52e2d15-884e-456c-aaaf-b6009379b1d7", - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": true, - "duplicateCriteria": null, - "labelSingular": "Workspace Member", - "labelPlural": "Workspace Members", - "description": "A workspace member", - "icon": "IconUserCircle", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e4dc15e7-b907-41b1-8d92-010d3133258b", - "type": "POSITION", - "name": "position", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Position", - "description": "Workspace member position", - "icon": "IconHierarchy2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d149e3a5-66e0-4190-bc31-6561572b0596", - "type": "FULL_NAME", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": { - "lastName": "''", - "firstName": "''" }, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "Workspace member name", - "icon": "IconCircleUser" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "fd2df7d2-fc1e-4a87-b0c7-f42f0e7cdb04", - "type": "TEXT", - "name": "colorScheme", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'System'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Color Scheme", - "description": "Preferred color scheme", - "icon": "IconColorSwatch" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e9325a5f-606a-4b54-ba19-006388fe2b8c", - "type": "TEXT", - "name": "locale", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'en'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Language", - "description": "Preferred language", - "icon": "IconLanguage" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a52e2d15-884e-456c-aaaf-b6009379b1d7", - "type": "TEXT", - "name": "avatarUrl", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Avatar Url", - "description": "Workspace member avatar", - "icon": "IconFileUpload" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "470bde1e-3e7a-49cb-baa7-1bb5f7d78ff2", - "type": "TEXT", - "name": "userEmail", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "User Email", - "description": "Related user email address", - "icon": "IconMail" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f6b1c81f-b52e-4628-b125-48e2c9b55f1c", - "type": "UUID", - "name": "userId", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "User Id", - "description": "Associated User Id", - "icon": "IconCircleUsers" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1d2fef39-9107-4752-a93d-1cd6ae9c1bf2", - "type": "TEXT", - "name": "timeZone", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'system'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Time zone", - "description": "User time zone", - "icon": "IconTimezone" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7405d5eb-5c24-4748-bc96-a082f2015ceb", - "type": "SELECT", - "name": "dateFormat", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'SYSTEM'", - "options": [ - { - "id": "2b18365c-ab36-4585-aecf-9cb73a869a07", - "color": "turquoise", - "label": "System", - "value": "SYSTEM", - "position": 0 - }, - { - "id": "b4aed88d-2879-4a32-ad01-340b3e70fef0", - "color": "red", - "label": "Month First", - "value": "MONTH_FIRST", - "position": 1 - }, - { - "id": "e43be730-51d0-416d-a272-ca68ec3fefb4", - "color": "purple", - "label": "Day First", - "value": "DAY_FIRST", - "position": 2 - }, - { - "id": "d631c00e-c4c9-429c-b8d3-512233e6eb3d", - "color": "sky", - "label": "Year First", - "value": "YEAR_FIRST", - "position": 3 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Date format", - "description": "User's preferred date format", - "icon": "IconCalendarEvent" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5daf7cc0-33ab-4e26-9d20-9256c4c067a1", - "type": "SELECT", - "name": "timeFormat", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'SYSTEM'", - "options": [ - { - "id": "c8846793-b060-4538-a2c3-26986512fa14", - "color": "sky", - "label": "System", - "value": "SYSTEM", - "position": 0 - }, - { - "id": "b4c2b1bf-bff1-415f-9565-c2c2922ab5d7", - "color": "red", - "label": "24HRS", - "value": "HOUR_24", - "position": 1 - }, - { - "id": "180f27b7-41f2-4d87-9418-bb396c1a5d8c", - "color": "purple", - "label": "12HRS", - "value": "HOUR_12", - "position": 2 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Time format", - "description": "User's preferred time format", - "icon": "IconClock2" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7e389f1a-c377-4846-92d9-3e38697ee198", - "type": "TS_VECTOR", - "name": "searchVector", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Search vector", - "description": "Field used for full-text search", - "icon": "IconUser" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2319602e-fd02-4293-9279-485433045cb7", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a793c5cb-485c-4314-bd13-c5d9f9c14c19", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "5ccc0b2b-8d46-471e-9712-db8e35fd74a0", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "78e649ea-0814-4ca4-9061-82fc6736ec17", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1d00b961-1c91-4e35-af43-dfc67fd9a6cf", - "type": "RELATION", - "name": "assignedTasks", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Assigned tasks", - "description": "Tasks assigned to the workspace member", - "icon": "IconCheckbox", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "83b1dd88-82e5-4d8c-b52b-81e5302adf58", - "nameSingular": "task", - "namePlural": "tasks" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1d00b961-1c91-4e35-af43-dfc67fd9a6cf", - "name": "assignedTasks" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "86dc3cad-1833-4a29-80f2-cb8a4c1e5394", - "name": "assignee" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8fff8dc5-d29c-430a-89bd-1021bfc2ee1e", + "id": "6fb62c82-dc35-4e59-bc33-5abade3bd55d", + "universalIdentifier": "d956c256-5d85-4a94-b179-a0b5cd897867", "type": "RELATION", "name": "favorites", - "isCustom": false, + "label": "Favorites", + "description": "Pets tied to the Favorite", + "icon": "IconBuildingSkyscraper", + "isCustom": true, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Favorites", - "description": "Favorites linked to the workspace member", - "icon": "IconHeart", + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" + "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", + "nameSingular": "pet", + "namePlural": "pets" }, "targetObjectMetadata": { "__typename": "Object", - "id": "b95a4f5d-6fdc-48f9-9598-652960eed462", + "id": "0591ea73-a468-4170-8f44-90269f7fa180", "nameSingular": "favorite", "namePlural": "favorites" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "8fff8dc5-d29c-430a-89bd-1021bfc2ee1e", + "id": "6fb62c82-dc35-4e59-bc33-5abade3bd55d", "name": "favorites" }, "targetFieldMetadata": { "__typename": "Field", - "id": "4e7814ac-54b9-41ea-8a27-ee18bf7351ea", - "name": "forWorkspaceMember" + "id": "3dfeec14-0d40-4a44-b8d5-66a5cb0ed985", + "name": "pet" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4a7eb4da-02ca-4999-a0da-9453c41c787b", + "id": "d0b9d082-e6fc-4788-9993-18dd50296bd1", + "universalIdentifier": "4f1ef146-ce1b-4b86-9685-a0dbfad6f89c", "type": "RELATION", - "name": "accountOwnerForCompanies", - "isCustom": false, + "name": "attachments", + "label": "Attachments", + "description": "Pets tied to the Attachment", + "icon": "IconBuildingSkyscraper", + "isCustom": true, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Account Owner For Companies", - "description": "Account owner for companies", - "icon": "IconBriefcase", + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" + "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", + "nameSingular": "pet", + "namePlural": "pets" }, "targetObjectMetadata": { "__typename": "Object", - "id": "4a45f524-b8cb-40e8-8450-28e402b442cf", - "nameSingular": "company", - "namePlural": "companies" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4a7eb4da-02ca-4999-a0da-9453c41c787b", - "name": "accountOwnerForCompanies" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6811b55c-5670-42c5-bd3e-72e57f5bb701", - "name": "accountOwner" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "78acb16d-7732-4d6f-88f4-8de411f73f14", - "type": "RELATION", - "name": "authoredAttachments", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Authored attachments", - "description": "Attachments created by the workspace member", - "icon": "IconFileImport", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "a0a44046-66f1-456a-9133-1f78ac60b9ca", + "id": "b377bdac-ea28-4ac2-bccb-0953940aa813", "nameSingular": "attachment", "namePlural": "attachments" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "78acb16d-7732-4d6f-88f4-8de411f73f14", - "name": "authoredAttachments" + "id": "d0b9d082-e6fc-4788-9993-18dd50296bd1", + "name": "attachments" }, "targetFieldMetadata": { "__typename": "Field", - "id": "3f57b6c6-d485-440c-82ad-fb35530a0bf9", - "name": "author" + "id": "12247923-3e01-4917-8386-64164fd200dc", + "name": "target" } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1f64702f-3611-4113-9bdf-50b289fbf63e", - "type": "RELATION", - "name": "connectedAccounts", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" }, - "isLabelSyncedWithName": false, - "label": "Connected accounts", - "description": "Connected accounts", - "icon": "IconAt", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4895c95d-e723-4fac-9327-943b55ed865c", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "1f64702f-3611-4113-9bdf-50b289fbf63e", - "name": "connectedAccounts" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "0c89f5cf-4232-4df1-8784-4ca9380a0a9b", - "name": "accountOwner" - } - } + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "dc3e5858-3aa6-4d5d-8ff4-af658b6e6df1", + "id": "a835175b-2403-4422-8fb0-8bdd59bccccf", + "universalIdentifier": "a05fee72-d50f-4a49-88fb-056003e69870", "type": "RELATION", - "name": "messageParticipants", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Message Participants", - "description": "Message Participants", - "icon": "IconUserCircle", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c5bdd9b9-06c5-450a-86b7-cb91f3c33b94", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "dc3e5858-3aa6-4d5d-8ff4-af658b6e6df1", - "name": "messageParticipants" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "1d843eae-0490-4518-aadd-97fda8fa3851", - "name": "workspaceMember" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9f5669c4-6a99-4b59-ad01-97570cb4b464", - "type": "RELATION", - "name": "blocklist", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Blocklist", - "description": "Blocklisted handles", - "icon": "IconForbid2", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "736f6327-d230-4daa-b198-55fdaec9de8e", - "nameSingular": "blocklist", - "namePlural": "blocklists" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "9f5669c4-6a99-4b59-ad01-97570cb4b464", - "name": "blocklist" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "00ed9836-c76d-4dbc-9ea1-a892611a5705", - "name": "workspaceMember" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e53738a2-8080-4299-b8eb-3d2b85abda1b", - "type": "RELATION", - "name": "calendarEventParticipants", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Calendar Event Participants", - "description": "Calendar Event Participants", - "icon": "IconCalendar", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "3dd1c5bd-c964-414d-a52f-c3d182f9eac7", - "nameSingular": "calendarEventParticipant", - "namePlural": "calendarEventParticipants" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "e53738a2-8080-4299-b8eb-3d2b85abda1b", - "name": "calendarEventParticipants" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "ae5ec2d6-11ec-477f-9f2e-ec1835807a7c", - "name": "workspaceMember" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "bbd2f2ea-e5de-4494-8f14-f3233ff751c0", - "type": "RELATION", - "name": "timelineActivities", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "relationType": "ONE_TO_MANY" - }, - "isLabelSyncedWithName": false, - "label": "Events", - "description": "Events linked to the workspace member", - "icon": "IconTimelineEvent", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "369081b1-70a6-4fc6-9e50-f0b12841549d", - "nameSingular": "workspaceMember", - "namePlural": "workspaceMembers" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "d4dd18bc-c2b1-4619-bc6a-c80dc355b5a1", - "nameSingular": "timelineActivity", - "namePlural": "timelineActivities" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "bbd2f2ea-e5de-4494-8f14-f3233ff751c0", - "name": "timelineActivities" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "49381568-46d2-472e-b3dd-712a5ecbc91f", - "name": "workspaceMember" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "352992e9-f389-45d0-aac5-a89ebc20ba77", - "nameSingular": "webhook", - "namePlural": "webhooks", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "84ee59e8-d09a-4466-a2d1-b552b734fb54", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Webhook", - "labelPlural": "Webhooks", - "description": "A webhook", - "icon": "IconRobot", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "84ee59e8-d09a-4466-a2d1-b552b734fb54", - "type": "TEXT", - "name": "targetUrl", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Target Url", - "description": "Webhook target url", - "icon": "IconLink" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "465e5ee5-e10e-4e5e-824a-8a9ad511afb4", - "type": "ARRAY", - "name": "operations", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": [ - "*.*" - ], - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Operations", - "description": "Webhook operations", - "icon": "IconCheckbox" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8407737f-4725-4d01-b574-81b6529054c6", - "type": "TEXT", - "name": "description", - "isCustom": false, + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", + "createdAt": "2026-02-25T16:13:34.716Z", + "updatedAt": "2026-02-25T16:13:34.716Z", + "defaultValue": null, "options": null, - "settings": null, + "settings": { + "relationType": "ONE_TO_MANY" + }, "isLabelSyncedWithName": false, - "relation": null, - "label": "Description", + "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": "IconInfo" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1f8cdbc3-04fa-4fc0-8ada-300e7f2827a3", - "type": "TEXT", - "name": "secret", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Secret", - "description": "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests.", - "icon": "IconLock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4d2cf511-498b-4eaa-9c51-fc7c1df14533", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "438cd8ec-2ad2-4f08-b552-0590ed8c19ef", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "eafc52e2-3761-4a33-911d-33e713a77e71", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8b80e813-efb8-4bd5-a389-48935ae88baa", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, + "icon": "", + "isCustom": true, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1551e0e2-8694-41f7-a256-423cd8ea04f2", - "nameSingular": "messageFolder", - "namePlural": "messageFolders", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "3c1ca883-cdb3-4c28-ae99-0281af9fa608", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Message Folder", - "labelPlural": "Message Folders", - "description": "Folder for Message Channel", - "icon": "IconFolder", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "77ac4207-92ee-4f56-a280-ec738bdd3454", - "type": "TEXT", - "name": "name", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Name", - "description": "Folder name", - "icon": "IconFolder" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1e29ac50-8f56-42ce-8856-d598b57f274b", - "type": "TEXT", - "name": "syncCursor", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Sync Cursor", - "description": "Sync Cursor", - "icon": "IconHash" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3c1ca883-cdb3-4c28-ae99-0281af9fa608", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "40663b55-5cc7-4731-b785-9dc589ccb9ee", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "1f1b7031-444c-4795-9669-16fc41fa2c13", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "e2734355-ab9d-4b2c-b352-660f03f518e2", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "42c5e22f-bde2-4b4b-a58e-16b1e83b8f14", - "type": "RELATION", - "name": "messageChannel", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "messageChannelId" - }, - "isLabelSyncedWithName": false, - "label": "Message Channel", - "description": "Message Channel", - "icon": "IconMessage", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "1551e0e2-8694-41f7-a256-423cd8ea04f2", - "nameSingular": "messageFolder", - "namePlural": "messageFolders" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "089247da-73c3-456c-a274-eefc605eb3fa", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "42c5e22f-bde2-4b4b-a58e-16b1e83b8f14", - "name": "messageChannel" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "d2573990-8400-43f6-a8ef-65f5b24e84a8", - "name": "messageFolders" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0cb72a53-6506-415c-921c-2268680636ca", - "nameSingular": "viewSort", - "namePlural": "viewSorts", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "79a6fb69-4a24-40e3-a296-2bfd2ac7f5b9", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "View Sort", - "labelPlural": "View Sorts", - "description": "(System) View Sorts", - "icon": "IconArrowsSort", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "352156b6-d244-431b-b2d8-37ec2e0d022b", - "type": "UUID", - "name": "fieldMetadataId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Field Metadata Id", - "description": "View Sort target field", - "icon": "IconTag" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9d41acdc-7f82-462f-84c7-bfa790723b14", - "type": "TEXT", - "name": "direction", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'asc'", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Direction", - "description": "View Sort direction", - "icon": "" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "79a6fb69-4a24-40e3-a296-2bfd2ac7f5b9", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4da816ae-33b2-46f6-9e13-255c499fc577", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4d6f9e5d-d324-436b-bdda-fe4a607076f8", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f236c540-94ff-41e0-ab6b-10213805f200", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ceaeb81a-b576-4c1e-b374-384e80ebbf9c", - "type": "RELATION", - "name": "view", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "viewId" - }, - "isLabelSyncedWithName": false, - "label": "View", - "description": "View Sort related view", - "icon": "IconLayoutCollage", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0cb72a53-6506-415c-921c-2268680636ca", - "nameSingular": "viewSort", - "namePlural": "viewSorts" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "c4b95b85-3b53-4b33-94f2-58a2b5abb746", - "nameSingular": "view", - "namePlural": "views" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ceaeb81a-b576-4c1e-b374-384e80ebbf9c", - "name": "view" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "6e9728f2-081b-4552-9084-ff0abc1703c6", - "name": "viewSorts" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0afdc892-41cb-4869-98fd-0623162dbdf4", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "d311620d-aa17-4a67-9ba7-fb32465cdabe", - "imageIdentifierFieldMetadataId": null, - "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", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ed3a692e-9c66-41d2-aa4c-2203508ee69d", - "type": "TEXT", - "name": "eventExternalId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Event external ID", - "description": "Event external ID", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "98cd7f61-f344-4f5a-856c-d4fa63882fd6", - "type": "TEXT", - "name": "recurringEventExternalId", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Recurring Event ID", - "description": "Recurring Event ID", - "icon": "IconHistory" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d311620d-aa17-4a67-9ba7-fb32465cdabe", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "16de6b48-7bbb-4f5e-983c-a0f7596b7da0", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "439178b5-0c19-4270-985f-17f2d4604572", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "37da0dcd-9176-42fa-a8b2-583bcce5c418", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "ee2c6dc8-f744-47c9-803c-9e4abca38401", - "type": "RELATION", - "name": "calendarChannel", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "calendarChannelId" - }, - "isLabelSyncedWithName": false, - "label": "Channel ID", - "description": "Channel ID", - "icon": "IconCalendar", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0afdc892-41cb-4869-98fd-0623162dbdf4", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "0972537f-b817-40b1-a34f-a30a270d2b07", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "ee2c6dc8-f744-47c9-803c-9e4abca38401", - "name": "calendarChannel" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "bf0ab3db-1109-4811-86d3-92cf2e13d33f", - "name": "calendarChannelEventAssociations" - } - } - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "3d2f517a-6a76-4c29-8d5d-84c6361bebaa", - "type": "RELATION", - "name": "calendarEvent", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "calendarEventId" - }, - "isLabelSyncedWithName": false, - "label": "Event ID", - "description": "Event ID", - "icon": "IconCalendar", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0afdc892-41cb-4869-98fd-0623162dbdf4", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "7ad6021f-d432-4c92-baef-2b632196a62a", - "nameSingular": "calendarEvent", - "namePlural": "calendarEvents" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "3d2f517a-6a76-4c29-8d5d-84c6361bebaa", - "name": "calendarEvent" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "f5e2b471-0a15-4329-9483-80f859cbb048", - "name": "calendarChannelEventAssociations" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0972537f-b817-40b1-a34f-a30a270d2b07", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "7fe20fd5-9f22-457f-882b-7ce8082ee379", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Calendar Channel", - "labelPlural": "Calendar Channels", - "description": "Calendar Channels", - "icon": "IconCalendar", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7fe20fd5-9f22-457f-882b-7ce8082ee379", - "type": "TEXT", - "name": "handle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Handle", - "description": "Handle", - "icon": "IconAt" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "769803be-e79b-44c5-b995-85925f1ab362", - "type": "SELECT", - "name": "syncStatus", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:34.972Z", + "updatedAt": "2026-02-25T16:13:34.972Z", "defaultValue": null, "options": [ { - "id": "ec949e81-bf3a-410d-87cb-6b47ada027f4", + "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": "Ongoing", - "value": "ONGOING", - "position": 1 - }, - { - "id": "1cd565fc-3536-488a-81e9-175112945dba", - "color": "blue", - "label": "Not Synced", - "value": "NOT_SYNCED", - "position": 2 - }, - { - "id": "386e179b-cc58-409e-adf6-607d11c00655", - "color": "green", - "label": "Active", - "value": "ACTIVE", + "label": "Fish", + "value": "FISH", "position": 3 }, { - "id": "642807bc-989d-433c-9e94-f323124120ba", - "color": "red", - "label": "Failed Insufficient Permissions", - "value": "FAILED_INSUFFICIENT_PERMISSIONS", + "id": "67f0536a-70e5-4a10-a01e-e71b8163933c", + "color": "purple", + "label": "Rabbit", + "value": "RABBIT", "position": 4 }, { - "id": "24e8a373-4047-4805-aaaa-2441ac9fa37a", - "color": "red", - "label": "Failed Unknown", - "value": "FAILED_UNKNOWN", + "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, - "label": "Sync status", - "description": "Sync status", - "icon": "IconStatusChange" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "07d34265-3ffa-431b-bc02-1c0ff5922976", - "type": "SELECT", - "name": "syncStage", - "isCustom": false, + "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": false, + "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'CALENDAR_EVENT_LIST_FETCH_PENDING'", + "createdAt": "2026-02-25T16:13:34.972Z", + "updatedAt": "2026-02-25T16:13:34.972Z", + "defaultValue": null, "options": [ { - "id": "a63c16e1-fe1e-40ff-9380-118f16b30a16", + "id": "86e2e7ea-afb6-436e-be42-9a15e4dbbebd", "color": "blue", - "label": "Full calendar event list fetch pending", - "value": "CALENDAR_EVENT_LIST_FETCH_PENDING", + "label": "Playful", + "value": "PLAYFUL", "position": 0 }, { - "id": "3f99df3c-f124-491e-a9e5-deb0922f250f", - "color": "blue", - "label": "Partial calendar event list fetch pending", - "value": "FULL_CALENDAR_EVENT_LIST_FETCH_PENDING", + "id": "7046ceaa-f485-4418-881e-e8c4175536a1", + "color": "red", + "label": "Friendly", + "value": "FRIENDLY", "position": 1 }, { - "id": "c35e4012-bc7d-4d68-bd40-fa0753e9b51a", - "color": "orange", - "label": "Calendar event list fetch ongoing", - "value": "CALENDAR_EVENT_LIST_FETCH_ONGOING", + "id": "a96bc31c-a308-4207-b071-85c6601d5aa3", + "color": "green", + "label": "Protective", + "value": "PROTECTIVE", "position": 2 }, { - "id": "80fbed2c-8a66-4982-8f04-a54f6c39ddf4", - "color": "blue", - "label": "Calendar events import pending", - "value": "CALENDAR_EVENTS_IMPORT_PENDING", + "id": "6c7457ca-fcd5-4849-82e6-336887fa0285", + "color": "yellow", + "label": "Shy", + "value": "SHY", "position": 3 }, { - "id": "91c2f80a-be53-47d3-b056-fffd1ae1d872", - "color": "orange", - "label": "Calendar events import ongoing", - "value": "CALENDAR_EVENTS_IMPORT_ONGOING", + "id": "777ad0d3-824d-46cf-8d2b-563c4c210c58", + "color": "purple", + "label": "Brave", + "value": "BRAVE", "position": 4 }, { - "id": "d03a32fb-aeb5-4d0e-b844-f06ecf5ee5f6", - "color": "red", - "label": "Failed", - "value": "FAILED", + "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, - "label": "Sync stage", - "description": "Sync stage", - "icon": "IconStatusChange" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "78dd9e97-8eea-4ae4-bc84-8c819cc0674d", - "type": "SELECT", - "name": "visibility", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'SHARE_EVERYTHING'", - "options": [ - { - "id": "1b274a15-969a-49db-a469-c0fa8601ef00", - "color": "green", - "label": "Metadata", - "value": "METADATA", - "position": 0 - }, - { - "id": "9464a9c3-ba96-4038-acb3-40db597708c1", - "color": "orange", - "label": "Share Everything", - "value": "SHARE_EVERYTHING", - "position": 1 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Visibility", - "description": "Visibility", - "icon": "IconEyeglass" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d15b3543-7b01-4e50-afa9-69992d68d2cf", - "type": "BOOLEAN", - "name": "isContactAutoCreationEnabled", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": true, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Is Contact Auto Creation Enabled", - "description": "Is Contact Auto Creation Enabled", - "icon": "IconUserCircle" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9f286f33-b8a1-471c-91e9-dfc4f459104d", - "type": "SELECT", - "name": "contactAutoCreationPolicy", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'AS_PARTICIPANT_AND_ORGANIZER'", - "options": [ - { - "id": "2727f47d-983f-442b-90e7-9196cf1c09c8", - "color": "green", - "label": "As Participant and Organizer", - "value": "AS_PARTICIPANT_AND_ORGANIZER", - "position": 0 - }, - { - "id": "5093ee86-8a9f-4198-bcf5-0f9f06a1fbee", - "color": "orange", - "label": "As Participant", - "value": "AS_PARTICIPANT", - "position": 1 - }, - { - "id": "4d812c6a-cb6d-46f9-adbc-b96fa63e07ae", - "color": "blue", - "label": "As Organizer", - "value": "AS_ORGANIZER", - "position": 2 - }, - { - "id": "69ac4607-568d-4a9b-b3b8-0805a9eb2fca", - "color": "red", - "label": "None", - "value": "NONE", - "position": 3 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Contact auto creation policy", - "description": "Automatically create records for people you participated with in an event.", - "icon": "IconUserCircle" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d0745e99-10f5-4d39-b542-251166b46a51", - "type": "BOOLEAN", - "name": "isSyncEnabled", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": true, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Is Sync Enabled", - "description": "Is Sync Enabled", - "icon": "IconRefresh" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "876f4ee8-c349-430a-ba6e-e9c25156be70", + "id": "929c46e6-ccda-42eb-a486-09b0128d04e8", + "universalIdentifier": "f4c11e19-90d1-495c-8760-35bc7aad1e8c", "type": "TEXT", - "name": "syncCursor", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Sync Cursor", - "description": "Sync Cursor. Used for syncing events from the calendar provider", - "icon": "IconReload" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7f0c3b1c-f2ec-4778-970c-f63960c06294", - "type": "DATE_TIME", - "name": "syncedAt", - "isCustom": false, + "name": "comments", + "label": "Comments", + "description": "", + "icon": "", + "isCustom": true, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Last sync date", - "description": "Last sync date", - "icon": "IconHistory" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "276edd4f-7d43-44bf-b47d-9d5b30bc3671", - "type": "DATE_TIME", - "name": "syncStageStartedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Sync stage started at", - "description": "Sync stage started at", - "icon": "IconHistory" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "acee0908-4ce3-435b-bd02-96caf48cb7a6", + "id": "2a6c297e-0cfd-44d5-a04c-e2925ae8e7de", + "universalIdentifier": "2b5ef83a-ab35-449e-993f-bd8365b34d88", "type": "NUMBER", - "name": "throttleFailureCount", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Throttle Failure Count", - "description": "Throttle Failure Count", - "icon": "IconX" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "770f8653-38c5-4695-a0df-77c18457e88d", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f65e4a2e-dcaf-4d4a-95eb-2dffe3ea0342", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f62f8508-941a-40ba-a17c-5328ba2f244d", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b8e66439-e505-4cd1-9a98-fca70595ed4c", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, + "name": "age", + "label": "Age", + "description": "", + "icon": "", + "isCustom": true, "isActive": true, "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:34.972Z", + "updatedAt": "2026-02-25T16:13:34.972Z", "defaultValue": null, "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, + "settings": null, "isLabelSyncedWithName": false, + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4e2f119e-8865-4a6a-b1ac-33d821fc260a", - "type": "RELATION", - "name": "connectedAccount", - "isCustom": false, + "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": true, + "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:34.972Z", + "updatedAt": "2026-02-25T16:13:34.972Z", "defaultValue": null, "options": null, - "settings": { - "onDelete": "CASCADE", - "relationType": "MANY_TO_ONE", - "joinColumnName": "connectedAccountId" - }, + "settings": null, "isLabelSyncedWithName": false, - "label": "Connected Account", - "description": "Connected Account", - "icon": "IconUserCircle", - "relation": { - "__typename": "Relation", - "type": "MANY_TO_ONE", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "0972537f-b817-40b1-a34f-a30a270d2b07", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" + "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 }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "4895c95d-e723-4fac-9327-943b55ed865c", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" + { + "id": "78b38db2-cb80-409d-bc33-1008f8ef2691", + "label": "2", + "value": "RATING_2", + "position": 1 }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "4e2f119e-8865-4a6a-b1ac-33d821fc260a", - "name": "connectedAccount" + { + "id": "1e54938c-b28c-4c4e-943e-470a2ff97552", + "label": "3", + "value": "RATING_3", + "position": 2 }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "a4443016-e645-4801-94a0-0ec8864f6290", - "name": "calendarChannels" + { + "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", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "bf0ab3db-1109-4811-86d3-92cf2e13d33f", - "type": "RELATION", - "name": "calendarChannelEventAssociations", - "isCustom": false, + "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": true, + "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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" + "relationType": "ONE_TO_MANY", + "junctionTargetFieldId": "1981b8d6-d7f0-4fcb-9502-d9ba7721d896" }, "isLabelSyncedWithName": false, - "label": "Calendar Channel Event Associations", - "description": "Calendar Channel Event Associations", - "icon": "IconCalendar", + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": { "__typename": "Relation", "type": "ONE_TO_MANY", "sourceObjectMetadata": { "__typename": "Object", - "id": "0972537f-b817-40b1-a34f-a30a270d2b07", - "nameSingular": "calendarChannel", - "namePlural": "calendarChannels" + "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", + "nameSingular": "pet", + "namePlural": "pets" }, "targetObjectMetadata": { "__typename": "Object", - "id": "0afdc892-41cb-4869-98fd-0623162dbdf4", - "nameSingular": "calendarChannelEventAssociation", - "namePlural": "calendarChannelEventAssociations" + "id": "4e3ac1e2-1cf9-41c6-881b-536529d94c5d", + "nameSingular": "petCareAgreement", + "namePlural": "petCareAgreements" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "bf0ab3db-1109-4811-86d3-92cf2e13d33f", - "name": "calendarChannelEventAssociations" + "id": "dfcf53fb-7924-4214-b63e-ff754575a435", + "name": "caretakers" }, "targetFieldMetadata": { "__typename": "Field", - "id": "ee2c6dc8-f744-47c9-803c-9e4abca38401", - "name": "calendarChannel" + "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 + } + ] } ] } @@ -18447,1107 +24683,1393 @@ export const mockedStandardObjectMetadataQueryResult: ObjectMetadataItemsQuery = "__typename": "ObjectEdge", "node": { "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "089247da-73c3-456c-a274-eefc605eb3fa", - "nameSingular": "messageChannel", - "namePlural": "messageChannels", + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "0fa7d940-3972-4a1c-bfb6-4582443c3f78", + "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": "Message Channel", - "labelPlural": "Message Channels", - "description": "Message Channels", - "icon": "IconMessage", - "indexMetadataList": [], + "labelSingular": "Favorite", + "labelPlural": "Favorites", + "description": "A favorite", + "icon": "IconHeart", "fieldsList": [ { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "03a3fafd-75ec-4781-b99b-19178e9b0c05", - "type": "SELECT", - "name": "visibility", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'SHARE_EVERYTHING'", - "options": [ - { - "id": "ec572c96-ed1d-4247-a1c2-e31abfa2dcc5", - "color": "green", - "label": "Metadata", - "value": "METADATA", - "position": 0 - }, - { - "id": "5d2f9e56-2762-4191-97a1-e20630b70a93", - "color": "blue", - "label": "Subject", - "value": "SUBJECT", - "position": 1 - }, - { - "id": "cf79b03f-fd68-4121-8fdc-0e5b6b0501cf", - "color": "orange", - "label": "Share Everything", - "value": "SHARE_EVERYTHING", - "position": 2 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Visibility", - "description": "Visibility", - "icon": "IconEyeglass" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0fa7d940-3972-4a1c-bfb6-4582443c3f78", - "type": "TEXT", - "name": "handle", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Handle", - "description": "Handle", - "icon": "IconAt" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7a2fab67-9ede-4d2c-9e9c-9ed3c6c3e7f8", - "type": "SELECT", - "name": "type", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'email'", - "options": [ - { - "id": "81b6435e-9e60-41fe-a03b-a296939168db", - "color": "green", - "label": "Email", - "value": "email", - "position": 0 - }, - { - "id": "3affd1d0-91a9-4b73-93a7-6ef1173c4bb9", - "color": "blue", - "label": "SMS", - "value": "sms", - "position": 1 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Type", - "description": "Channel Type", - "icon": "IconMessage" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "4ba19b07-312d-4bb9-b429-6fd91f5764e4", - "type": "BOOLEAN", - "name": "isContactAutoCreationEnabled", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": true, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Is Contact Auto Creation Enabled", - "description": "Is Contact Auto Creation Enabled", - "icon": "IconUserCircle" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a08ff18f-445a-4a94-bdb7-39a0d23ffe8c", - "type": "SELECT", - "name": "contactAutoCreationPolicy", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'SENT'", - "options": [ - { - "id": "532893cc-b186-4635-83d0-b3862e47b988", - "color": "green", - "label": "Sent and Received", - "value": "SENT_AND_RECEIVED", - "position": 0 - }, - { - "id": "74f975e6-0a12-4e81-a950-5f0a72a67e83", - "color": "blue", - "label": "Sent", - "value": "SENT", - "position": 1 - }, - { - "id": "0a60830e-d83a-4783-86e0-512dc68c48c6", - "color": "red", - "label": "None", - "value": "NONE", - "position": 2 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Contact auto creation policy", - "description": "Automatically create People records when receiving or sending emails", - "icon": "IconUserCircle" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "77cadab6-2187-4fc2-a714-26c1528331cd", - "type": "BOOLEAN", - "name": "excludeNonProfessionalEmails", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": true, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Exclude non professional emails", - "description": "Exclude non professional emails", - "icon": "IconBriefcase" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "81344298-698c-41bf-9e51-6469e8a2d7d2", - "type": "BOOLEAN", - "name": "excludeGroupEmails", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": true, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Exclude group emails", - "description": "Exclude group emails", - "icon": "IconUsersGroup" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "0ec247b9-733c-4641-bbaa-a5b917556dfc", - "type": "BOOLEAN", - "name": "isSyncEnabled", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": true, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Is Sync Enabled", - "description": "Is Sync Enabled", - "icon": "IconRefresh" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8240baee-8d6e-4725-bf81-393ea533de0e", - "type": "TEXT", - "name": "syncCursor", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last sync cursor", - "description": "Last sync cursor", - "icon": "IconHistory" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a0d25e24-60ef-4f8c-beb7-c9865a6aa29a", - "type": "DATE_TIME", - "name": "syncedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last sync date", - "description": "Last sync date", - "icon": "IconHistory" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "61e3c3eb-12be-4e3e-9922-158a9c12962e", - "type": "SELECT", - "name": "syncStatus", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": [ - { - "id": "32f5610f-eb51-4d07-aafd-34d4a0b5de09", - "color": "yellow", - "label": "Ongoing", - "value": "ONGOING", - "position": 1 - }, - { - "id": "b2a7bb50-4b9e-4242-bc1a-b1e1dca9d4ea", - "color": "blue", - "label": "Not Synced", - "value": "NOT_SYNCED", - "position": 2 - }, - { - "id": "4f90ddbb-2dfc-4c1e-a2a6-945b085acfe9", - "color": "green", - "label": "Active", - "value": "ACTIVE", - "position": 3 - }, - { - "id": "8c24bfff-38ef-493e-885f-3d1888b9d655", - "color": "red", - "label": "Failed Insufficient Permissions", - "value": "FAILED_INSUFFICIENT_PERMISSIONS", - "position": 4 - }, - { - "id": "1f03c1b8-b82e-4270-96c8-a90ff366339b", - "color": "red", - "label": "Failed Unknown", - "value": "FAILED_UNKNOWN", - "position": 5 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Sync status", - "description": "Sync status", - "icon": "IconStatusChange" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "68daa2e4-3c12-4f53-ac31-e76ec3d9b3c4", - "type": "SELECT", - "name": "syncStage", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "'MESSAGE_LIST_FETCH_PENDING'", - "options": [ - { - "id": "60f0c071-4375-4e1c-ac0f-3b6c64cb35b3", - "color": "blue", - "label": "Messages list fetch pending", - "value": "MESSAGE_LIST_FETCH_PENDING", - "position": 0 - }, - { - "id": "ec623d96-5b17-4a67-8206-d475a76b2f31", - "color": "orange", - "label": "Messages list fetch ongoing", - "value": "MESSAGE_LIST_FETCH_ONGOING", - "position": 2 - }, - { - "id": "7fae11e3-f20c-4b9d-a3b7-49e388b57195", - "color": "blue", - "label": "Messages import pending", - "value": "MESSAGES_IMPORT_PENDING", - "position": 3 - }, - { - "id": "0ee74773-5d7b-4eac-9c7f-335f6e589514", - "color": "orange", - "label": "Messages import ongoing", - "value": "MESSAGES_IMPORT_ONGOING", - "position": 4 - }, - { - "id": "aae33dee-d4a0-458b-8042-9acbee73e846", - "color": "red", - "label": "Failed", - "value": "FAILED", - "position": 5 - } - ], - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Sync stage", - "description": "Sync stage", - "icon": "IconStatusChange" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "9457a6a4-f36d-46bd-ae5b-b220b8e961a8", - "type": "DATE_TIME", - "name": "syncStageStartedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Sync stage started at", - "description": "Sync stage started at", - "icon": "IconHistory" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d2f6a94f-57a4-4251-98fc-e628a996dc99", - "type": "NUMBER", - "name": "throttleFailureCount", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": 0, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Throttle Failure Count", - "description": "Throttle Failure Count", - "icon": "IconX" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7e403a75-7349-48de-b33c-8bfa7d2394a3", + "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": false, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Id", - "description": "Id", - "icon": "Icon123" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "cdac4a6f-7dcf-4596-8ea4-01de329cfee0", + "id": "f0703240-0953-4c94-b4d8-e558227c15dd", + "universalIdentifier": "20202020-f01b-4092-9b92-eeffaabbccdd", "type": "DATE_TIME", "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, "label": "Creation date", "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a3f15dca-8219-4a68-a47d-fd53a0865ea2", - "type": "DATE_TIME", - "name": "updatedAt", + "icon": "IconCalendar", "isCustom": false, "isActive": true, - "isSystem": false, - "isUIReadOnly": false, + "isSystem": true, + "isUIReadOnly": true, "isNullable": false, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "8c66b0e3-9e63-481c-b7c1-46dfd29904b4", + "id": "3e7a89d3-a388-4216-ae18-6b874b826f31", + "universalIdentifier": "20202020-f01c-4093-8c93-ffaabbccddee", "type": "DATE_TIME", - "name": "deletedAt", + "name": "updatedAt", + "label": "Last update", + "description": "Last time the record was changed", + "icon": "IconCalendarClock", "isCustom": false, "isActive": true, - "isSystem": false, - "isUIReadOnly": false, + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7a010ef3-1638-4f65-bcdc-8e6e3e8049e7", - "type": "RELATION", - "name": "connectedAccount", + "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", + "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": "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", + "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": "d7741163-c30a-42d7-a6a6-9a2c31bb4db1", + "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-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": "344e0eab-6723-4b08-8075-26a3f7658357", + "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": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "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", "defaultValue": null, "options": null, "settings": { "onDelete": "CASCADE", "relationType": "MANY_TO_ONE", - "joinColumnName": "connectedAccountId" + "joinColumnName": "companyId" }, "isLabelSyncedWithName": false, - "label": "Connected Account", - "description": "Connected Account", - "icon": "IconUserCircle", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "089247da-73c3-456c-a274-eefc605eb3fa", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" + "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "nameSingular": "favorite", + "namePlural": "favorites" }, "targetObjectMetadata": { "__typename": "Object", - "id": "4895c95d-e723-4fac-9327-943b55ed865c", - "nameSingular": "connectedAccount", - "namePlural": "connectedAccounts" + "id": "69e0aa5d-a9c5-486b-a99d-fe191195a19d", + "nameSingular": "company", + "namePlural": "companies" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "7a010ef3-1638-4f65-bcdc-8e6e3e8049e7", - "name": "connectedAccount" + "id": "39e99ea0-e48b-4c70-8fdd-26ce22a3843f", + "name": "company" }, "targetFieldMetadata": { "__typename": "Field", - "id": "afbbcb9f-5ff7-49a2-b9b7-b0ae22050ad2", - "name": "messageChannels" + "id": "7f7d0be5-e54b-4251-a396-b7c9ce21b5d6", + "name": "favorites" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "acf71ec0-3fd7-4cb8-b741-b8a9421166a9", + "id": "5c3a1d65-0ea4-4721-95af-2c1280d3f150", + "universalIdentifier": "20202020-6ef9-45e4-b440-cc986f687c91", "type": "RELATION", - "name": "messageChannelMessageAssociations", + "name": "dashboard", + "label": "Dashboard", + "description": "Favorite dashboard", + "icon": "IconLayoutDashboard", "isCustom": false, "isActive": true, - "isSystem": true, - "isUIReadOnly": false, + "isSystem": false, + "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", "defaultValue": null, "options": null, "settings": { - "relationType": "ONE_TO_MANY" + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "dashboardId" }, "isLabelSyncedWithName": false, - "label": "Message Channel Association", - "description": "Messages from the channel.", - "icon": "IconMessage", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", - "type": "ONE_TO_MANY", + "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "089247da-73c3-456c-a274-eefc605eb3fa", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" + "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "nameSingular": "favorite", + "namePlural": "favorites" }, "targetObjectMetadata": { "__typename": "Object", - "id": "955353b0-fefe-473a-a99e-46b9097ac488", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" + "id": "58a0f417-6dee-4c61-b11d-a041dbe3d839", + "nameSingular": "dashboard", + "namePlural": "dashboards" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "acf71ec0-3fd7-4cb8-b741-b8a9421166a9", - "name": "messageChannelMessageAssociations" + "id": "5c3a1d65-0ea4-4721-95af-2c1280d3f150", + "name": "dashboard" }, "targetFieldMetadata": { "__typename": "Field", - "id": "a9adf0e3-ec3d-4521-8da0-07c7e8e9a45b", - "name": "messageChannel" + "id": "814c4758-671b-4922-89c2-b1b7fcd81abd", + "name": "favorites" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d2573990-8400-43f6-a8ef-65f5b24e84a8", + "id": "c0c5dc99-58c5-4b1f-aec5-0c5ea4d5b08c", + "universalIdentifier": "20202020-ce63-49cb-9676-fdc0c45892cd", "type": "RELATION", - "name": "messageFolders", + "name": "forWorkspaceMember", + "label": "Workspace Member", + "description": "Favorite workspace member", + "icon": "IconCircleUser", "isCustom": false, "isActive": true, - "isSystem": true, - "isUIReadOnly": false, + "isSystem": false, + "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", "defaultValue": null, "options": null, "settings": { - "relationType": "ONE_TO_MANY" + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "forWorkspaceMemberId" }, "isLabelSyncedWithName": false, - "label": "Message Folders", - "description": "Message Folders", + "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", + "nameSingular": "workspaceMember", + "namePlural": "workspaceMembers" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "c0c5dc99-58c5-4b1f-aec5-0c5ea4d5b08c", + "name": "forWorkspaceMember" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "55698c3c-1908-4c5d-b881-e5f7ebe67623", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "a281ba89-d7b7-4194-826d-57411f690f66", + "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-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "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": "0591ea73-a468-4170-8f44-90269f7fa180", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "62cd7078-2f6a-482f-8e15-dde1b4aec7e4", + "nameSingular": "person", + "namePlural": "people" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "a281ba89-d7b7-4194-826d-57411f690f66", + "name": "person" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "372883cb-ee54-4ec7-b158-bd09f5a3e86c", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "44bbdd2a-03d6-498c-bfc8-385617638fce", + "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-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", + "defaultValue": null, + "options": null, + "settings": { + "onDelete": "CASCADE", + "relationType": "MANY_TO_ONE", + "joinColumnName": "opportunityId" + }, + "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": "7335d5cc-2914-4cc0-b7ae-fbfed382b13d", + "nameSingular": "opportunity", + "namePlural": "opportunities" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "44bbdd2a-03d6-498c-bfc8-385617638fce", + "name": "opportunity" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "9556348a-b5fe-48cc-ac2e-5daedad93316", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "829b2346-e4be-4de5-8b73-87ebf3b173fd", + "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-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", + "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": "0591ea73-a468-4170-8f44-90269f7fa180", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "47c2fa4c-8d43-49e6-bdae-50f055a93d92", + "nameSingular": "task", + "namePlural": "tasks" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "1343c0d7-85c3-4cb9-b04f-47caa829733d", + "name": "task" + }, + "targetFieldMetadata": { + "__typename": "Field", + "id": "33e1ff69-2cef-44c4-bf22-5d41443957b4", + "name": "favorites" + } + }, + "morphRelations": null + }, + { + "__typename": "Field", + "id": "327fc9ce-c539-4e92-863d-100cea3cdc7b", + "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-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": "0591ea73-a468-4170-8f44-90269f7fa180", + "nameSingular": "favorite", + "namePlural": "favorites" + }, + "targetObjectMetadata": { + "__typename": "Object", + "id": "7e2a0fff-cb81-4990-a189-69c4c4119894", + "nameSingular": "note", + "namePlural": "notes" + }, + "sourceFieldMetadata": { + "__typename": "Field", + "id": "327fc9ce-c539-4e92-863d-100cea3cdc7b", + "name": "note" + }, + "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", - "relation": { - "__typename": "Relation", - "type": "ONE_TO_MANY", - "sourceObjectMetadata": { - "__typename": "Object", - "id": "089247da-73c3-456c-a274-eefc605eb3fa", - "nameSingular": "messageChannel", - "namePlural": "messageChannels" - }, - "targetObjectMetadata": { - "__typename": "Object", - "id": "1551e0e2-8694-41f7-a256-423cd8ea04f2", - "nameSingular": "messageFolder", - "namePlural": "messageFolders" - }, - "sourceFieldMetadata": { - "__typename": "Field", - "id": "d2573990-8400-43f6-a8ef-65f5b24e84a8", - "name": "messageFolders" - }, - "targetFieldMetadata": { - "__typename": "Field", - "id": "42c5e22f-bde2-4b4b-a58e-16b1e83b8f14", - "name": "messageChannel" - } - } - } - ] - } - }, - { - "__typename": "ObjectEdge", - "node": { - "__typename": "Object", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "04dc5940-3a62-4536-ad57-c96f913cf67b", - "nameSingular": "message", - "namePlural": "messages", - "isCustom": false, - "isRemote": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "labelIdentifierFieldMetadataId": "2f6b43d0-140a-4176-bc3c-ccd75685b0e9", - "imageIdentifierFieldMetadataId": null, - "shortcut": null, - "isLabelSyncedWithName": false, - "isSearchable": false, - "duplicateCriteria": null, - "labelSingular": "Message", - "labelPlural": "Messages", - "description": "A message sent or received through a messaging channel (email, chat, etc.)", - "icon": "IconMessage", - "indexMetadataList": [], - "fieldsList": [ - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "d6028970-23e5-47e8-84aa-303230a6c180", - "type": "TEXT", - "name": "headerMessageId", "isCustom": false, "isActive": true, "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Header message Id", - "description": "Message id from the message header", - "icon": "IconHash" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "2f6b43d0-140a-4176-bc3c-ccd75685b0e9", - "type": "TEXT", - "name": "subject", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Subject", - "description": "Subject", - "icon": "IconMessage" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "a677de27-7bba-4265-840e-0765da5ad4ad", - "type": "TEXT", - "name": "text", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "''", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Text", - "description": "Text", - "icon": "IconMessage" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "94f8137d-c8d8-452e-824b-21c8cca9a823", - "type": "DATE_TIME", - "name": "receivedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, + "isUIReadOnly": true, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Received At", - "description": "The date the message was received", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b2d880f2-cb7b-4d47-8eac-84b49ae8dcdd", - "type": "UUID", - "name": "id", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "uuid", - "options": null, - "settings": null, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Id", - "description": "Id", - "icon": "Icon123" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "c31618ef-e648-41ea-b6bd-0d384e322f17", - "type": "DATE_TIME", - "name": "createdAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Creation date", - "description": "Creation date", - "icon": "IconCalendar" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "7637a88c-a2c7-4ccc-83dc-ada0ac91b716", - "type": "DATE_TIME", - "name": "updatedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": false, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": "now", - "options": null, - "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Last update", - "description": "Last time the record was changed", - "icon": "IconCalendarClock" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "95cf0e4a-68b4-43b6-8198-46523b352ef0", - "type": "DATE_TIME", - "name": "deletedAt", - "isCustom": false, - "isActive": true, - "isSystem": false, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:33.845Z", + "updatedAt": "2026-02-25T16:13:33.845Z", "defaultValue": null, "options": null, "settings": { - "displayFormat": "RELATIVE" - }, - "isLabelSyncedWithName": false, - "relation": null, - "label": "Deleted at", - "description": "Date when the record was deleted", - "icon": "IconCalendarMinus" - }, - { - "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "f2dc3f17-b0e1-4910-927f-e92f05e42e33", - "type": "RELATION", - "name": "messageThread", - "isCustom": false, - "isActive": true, - "isSystem": true, - "isUIReadOnly": false, - "isNullable": true, - "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", - "defaultValue": null, - "options": null, - "settings": { - "onDelete": "CASCADE", + "onDelete": "SET_NULL", "relationType": "MANY_TO_ONE", - "joinColumnName": "messageThreadId" + "joinColumnName": "favoriteFolderId" }, "isLabelSyncedWithName": false, - "label": "Message Thread Id", - "description": "Message Thread Id", - "icon": "IconHash", + "morphId": null, + "applicationId": "1df5cd12-35ef-4687-a8e8-27792006269d", "relation": { "__typename": "Relation", "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "04dc5940-3a62-4536-ad57-c96f913cf67b", - "nameSingular": "message", - "namePlural": "messages" + "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "nameSingular": "favorite", + "namePlural": "favorites" }, "targetObjectMetadata": { "__typename": "Object", - "id": "cbe0ae42-a8f4-4166-817b-96e647aae5dd", - "nameSingular": "messageThread", - "namePlural": "messageThreads" + "id": "c8e59698-2d8e-49a3-97d0-e4dcea772245", + "nameSingular": "favoriteFolder", + "namePlural": "favoriteFolders" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "f2dc3f17-b0e1-4910-927f-e92f05e42e33", - "name": "messageThread" + "id": "dead44da-970d-4d4c-9ef5-179916e5ff9f", + "name": "favoriteFolder" }, "targetFieldMetadata": { "__typename": "Field", - "id": "a48c2807-443d-41c7-8a37-8f211a6372ba", - "name": "messages" + "id": "9025c52e-ae99-4d49-96e3-e98c06d5538b", + "name": "favorites" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "fa1bcb96-3fce-45be-bff2-f7b1447bb35e", + "id": "b1c076f1-ace9-4225-a934-f75fe5ec29ff", + "universalIdentifier": "4c2230a3-e454-4749-b37d-1776fd310fcc", "type": "RELATION", - "name": "messageParticipants", - "isCustom": false, + "name": "rocket", + "label": "Rocket", + "description": "Favorites Rocket", + "icon": "IconHeart", + "isCustom": true, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:34.508Z", + "updatedAt": "2026-02-25T16:13:34.508Z", "defaultValue": null, "options": null, "settings": { - "relationType": "ONE_TO_MANY" + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "rocketId" }, "isLabelSyncedWithName": false, - "label": "Message Participants", - "description": "Message Participants", - "icon": "IconUserCircle", + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": { "__typename": "Relation", - "type": "ONE_TO_MANY", + "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "04dc5940-3a62-4536-ad57-c96f913cf67b", - "nameSingular": "message", - "namePlural": "messages" + "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "nameSingular": "favorite", + "namePlural": "favorites" }, "targetObjectMetadata": { "__typename": "Object", - "id": "c5bdd9b9-06c5-450a-86b7-cb91f3c33b94", - "nameSingular": "messageParticipant", - "namePlural": "messageParticipants" + "id": "45c62039-b911-43f3-b1a6-7cdd37d3ed5f", + "nameSingular": "rocket", + "namePlural": "rockets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "fa1bcb96-3fce-45be-bff2-f7b1447bb35e", - "name": "messageParticipants" + "id": "b1c076f1-ace9-4225-a934-f75fe5ec29ff", + "name": "rocket" }, "targetFieldMetadata": { "__typename": "Field", - "id": "22682985-d10f-4f5f-bf2e-977babfd6b85", - "name": "message" + "id": "d32d7fde-35dc-4e05-acf9-21ec508a0ab1", + "name": "favorites" } - } + }, + "morphRelations": null }, { "__typename": "Field", - "applicationId": "a8a3b890-5e13-4852-8cbf-06f91feb7415", - "id": "b582f4a6-1e0b-4557-b9f0-d949f51d81f7", + "id": "3dfeec14-0d40-4a44-b8d5-66a5cb0ed985", + "universalIdentifier": "bb91a636-52d4-4f25-a715-93e110113f07", "type": "RELATION", - "name": "messageChannelMessageAssociations", - "isCustom": false, + "name": "pet", + "label": "Pet", + "description": "Favorites Pet", + "icon": "IconHeart", + "isCustom": true, "isActive": true, - "isSystem": true, + "isSystem": false, "isUIReadOnly": false, "isNullable": true, "isUnique": false, - "createdAt": "2025-06-09T18:53:47.000Z", - "updatedAt": "2025-06-09T18:53:47.000Z", + "createdAt": "2026-02-25T16:13:34.716Z", + "updatedAt": "2026-02-25T16:13:34.716Z", "defaultValue": null, "options": null, "settings": { - "relationType": "ONE_TO_MANY" + "onDelete": "SET_NULL", + "relationType": "MANY_TO_ONE", + "joinColumnName": "petId" }, "isLabelSyncedWithName": false, - "label": "Message Channel Association", - "description": "Messages from the channel.", - "icon": "IconMessage", + "morphId": null, + "applicationId": "a8bd37cb-e537-4e43-8026-4464fec73af8", "relation": { "__typename": "Relation", - "type": "ONE_TO_MANY", + "type": "MANY_TO_ONE", "sourceObjectMetadata": { "__typename": "Object", - "id": "04dc5940-3a62-4536-ad57-c96f913cf67b", - "nameSingular": "message", - "namePlural": "messages" + "id": "0591ea73-a468-4170-8f44-90269f7fa180", + "nameSingular": "favorite", + "namePlural": "favorites" }, "targetObjectMetadata": { "__typename": "Object", - "id": "955353b0-fefe-473a-a99e-46b9097ac488", - "nameSingular": "messageChannelMessageAssociation", - "namePlural": "messageChannelMessageAssociations" + "id": "251085b1-72fa-4810-b2a4-f2eb462c4582", + "nameSingular": "pet", + "namePlural": "pets" }, "sourceFieldMetadata": { "__typename": "Field", - "id": "b582f4a6-1e0b-4557-b9f0-d949f51d81f7", - "name": "messageChannelMessageAssociations" + "id": "3dfeec14-0d40-4a44-b8d5-66a5cb0ed985", + "name": "pet" }, "targetFieldMetadata": { "__typename": "Field", - "id": "1d10579c-4efa-41ae-b967-54a14a361834", - "name": "message" + "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" + } + }, + "morphRelations": null + } + ], + "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", + "indexWhereClause": null, + "indexType": "BTREE", + "isUnique": false, + "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", + "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", + "indexWhereClause": null, + "indexType": "BTREE", + "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", + "order": 0 + } + ] } ] } } ] } -} as ObjectMetadataItemsQuery; +}; diff --git a/packages/twenty-front/src/testing/utils/generatedMockObjectMetadataItems.ts b/packages/twenty-front/src/testing/utils/generatedMockObjectMetadataItems.ts index 200ab0d57f..e9d737cda3 100644 --- a/packages/twenty-front/src/testing/utils/generatedMockObjectMetadataItems.ts +++ b/packages/twenty-front/src/testing/utils/generatedMockObjectMetadataItems.ts @@ -4,16 +4,6 @@ import { objectMetadataItemSchema } from '@/object-metadata/validation-schemas/o import { mockedStandardObjectMetadataQueryResult } from '~/testing/mock-data/generated/mock-metadata-query-result'; -// TODO: remove once we have a way to generate the mocks against a seeded workspace -const addUniversalIdentifierToField = ( - field: Record, -): FieldMetadataItem => ({ - ...(field as FieldMetadataItem), - universalIdentifier: - (field as { universalIdentifier?: string }).universalIdentifier ?? - (field as { id: string }).id, -}); - export const generatedMockObjectMetadataItems: ObjectMetadataItem[] = mockedStandardObjectMetadataQueryResult.objects.edges.map((edge) => { const labelIdentifierFieldMetadataId = @@ -24,20 +14,21 @@ export const generatedMockObjectMetadataItems: ObjectMetadataItem[] = const { fieldsList, indexMetadataList, ...objectWithoutFieldsList } = edge.node; - const fields = fieldsList.map(addUniversalIdentifierToField); + const fields = fieldsList.map( + (field) => field as unknown as FieldMetadataItem, + ); return { ...objectWithoutFieldsList, - universalIdentifier: - (objectWithoutFieldsList as { universalIdentifier?: string }) - .universalIdentifier ?? objectWithoutFieldsList.id, fields, readableFields: fields, updatableFields: fields, labelIdentifierFieldMetadataId, - indexMetadatas: indexMetadataList.map((index) => ({ - ...index, - indexFieldMetadatas: [], - })), + indexMetadatas: indexMetadataList.map( + ({ indexFieldMetadataList, ...index }) => ({ + ...index, + indexFieldMetadatas: indexFieldMetadataList, + }), + ), }; }); diff --git a/packages/twenty-front/tsconfig.json b/packages/twenty-front/tsconfig.json index 089f07da08..4f17dfb20e 100644 --- a/packages/twenty-front/tsconfig.json +++ b/packages/twenty-front/tsconfig.json @@ -40,6 +40,7 @@ "src/**/*.d.ts", "src/**/*.ts", "src/**/*.tsx", + "scripts/**/*.ts", ".storybook/*.ts", ".storybook/*.tsx", "lingui.config.ts",