9f30915f6f
## Context Follow-up to #21228, which deprecated `isCustom` on object/field metadata but kept it exposed because the frontend still relied on it. This removes it from the GraphQL API and the frontend entirely. ## Implementation ### Server - Remove `isCustom` `@Field` from the `Object`, `Field`, and `MinimalObjectMetadata` GraphQL types - Remove the `isCustom` `@ResolveField` resolvers and the `isCustomLoader` dataloader (+ payload/interface) - Remove `isCustom` as an internal `@HideField()` on the Object/Field DTOs used by the i18n standard-override gate > Use an explicit isStandard instead (which is the correct gating) ### Frontend - Add `getIsMetadataItemCustom` helper + `useGetIsMetadataItemCustom` hook: an item is custom when `applicationId === currentWorkspace.workspaceCustomApplication.id` - Migrate all consumers off `objectMetadataItem.isCustom` / `fieldMetadataItem.isCustom`; `isRecordFieldReadOnly` now takes a precomputed `isFieldCustom` - Drop `isCustom` from the metadata fragment/mutations/minimal query, FE types, zod schemas, and mock generators; regenerate GraphQL types ## Notes - Breaking change on the (already-deprecated) `Object.isCustom` / `Field.isCustom` GraphQL fields and the `isCustom` filter - FE semantic is "belongs to the workspace custom app" (third-party-app objects/fields are treated as non-custom) - `isCustom` on IndexMetadata / View / Skill / Agent is a separate column and is untouched - Breaking changes on REST metadata API
72 lines
2.1 KiB
TypeScript
72 lines
2.1 KiB
TypeScript
import request from 'supertest';
|
|
|
|
const client = request(`http://localhost:${APP_PORT}`);
|
|
|
|
describe('objectsResolver (e2e)', () => {
|
|
it('should find many objects', () => {
|
|
const queryData = {
|
|
query: `
|
|
query objects {
|
|
objects {
|
|
edges {
|
|
node {
|
|
id
|
|
nameSingular
|
|
namePlural
|
|
labelSingular
|
|
labelPlural
|
|
description
|
|
icon
|
|
isRemote
|
|
isActive
|
|
isSystem
|
|
createdAt
|
|
updatedAt
|
|
labelIdentifierFieldMetadataId
|
|
imageIdentifierFieldMetadataId
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
};
|
|
|
|
return client
|
|
.post('/metadata')
|
|
.set('Authorization', `Bearer ${APPLE_JANE_ADMIN_ACCESS_TOKEN}`)
|
|
.send(queryData)
|
|
.expect(200)
|
|
.expect((res) => {
|
|
expect(res.body.data).toBeDefined();
|
|
expect(res.body.errors).toBeUndefined();
|
|
})
|
|
.expect((res) => {
|
|
const data = res.body.data.objects;
|
|
|
|
expect(data).toBeDefined();
|
|
expect(Array.isArray(data.edges)).toBe(true);
|
|
|
|
const edges = data.edges;
|
|
|
|
if (edges.length > 0) {
|
|
const objects = edges[0].node;
|
|
|
|
expect(objects).toHaveProperty('id');
|
|
expect(objects).toHaveProperty('nameSingular');
|
|
expect(objects).toHaveProperty('namePlural');
|
|
expect(objects).toHaveProperty('labelSingular');
|
|
expect(objects).toHaveProperty('labelPlural');
|
|
expect(objects).toHaveProperty('description');
|
|
expect(objects).toHaveProperty('icon');
|
|
expect(objects).toHaveProperty('isRemote');
|
|
expect(objects).toHaveProperty('isActive');
|
|
expect(objects).toHaveProperty('isSystem');
|
|
expect(objects).toHaveProperty('createdAt');
|
|
expect(objects).toHaveProperty('updatedAt');
|
|
expect(objects).toHaveProperty('labelIdentifierFieldMetadataId');
|
|
expect(objects).toHaveProperty('imageIdentifierFieldMetadataId');
|
|
}
|
|
});
|
|
});
|
|
});
|