diff --git a/packages/twenty-server/src/engine/core-modules/open-api/utils/responses.utils.ts b/packages/twenty-server/src/engine/core-modules/open-api/utils/responses.utils.ts index d55bf77610f..40a0a50d53c 100644 --- a/packages/twenty-server/src/engine/core-modules/open-api/utils/responses.utils.ts +++ b/packages/twenty-server/src/engine/core-modules/open-api/utils/responses.utils.ts @@ -32,14 +32,8 @@ export const getFindManyResponse200 = ( type: 'object', properties: { hasNextPage: { type: 'boolean' }, - startCursor: { - type: 'string', - format: 'uuid', - }, - endCursor: { - type: 'string', - format: 'uuid', - }, + startCursor: { type: 'string' }, + endCursor: { type: 'string' }, }, }, ...(!fromMetadata && { @@ -414,14 +408,8 @@ export const getFindDuplicatesResponse200 = ( type: 'object', properties: { hasNextPage: { type: 'boolean' }, - startCursor: { - type: 'string', - format: 'uuid', - }, - endCursor: { - type: 'string', - format: 'uuid', - }, + startCursor: { type: 'string' }, + endCursor: { type: 'string' }, }, }, [`${item.nameSingular}Duplicates`]: {