perf: cap to-many relation records per parent and inline chips in table (#22206)

## Problem

Record table views that show a to-many relation column (e.g. Workflows
with a "Runs" column) get slow and janky to scroll when some records
have many related records.

Two root causes, found by profiling the page live:

1. **Backend over-fetch + unfairness.** Nested one-to-many relations
were loaded with a single flat limit of `QUERY_MAX_RECORDS_FROM_RELATION
* parentCount` shared across *all* parents in the page (`WHERE
parentColumn IN (ids) LIMIT 60*N`, no per-parent cap). A single hot
parent can consume the entire budget — returning thousands of rows for
one cell, and potentially starving sibling parents of records they
actually have. The `limit * parentCount` shape shows the original intent
*was* a per-parent budget; it was just implemented as a global limit.

2. **Frontend DOM explosion.** `ExpandableList` mounts the *entire*
child array inline (clipped with `overflow: hidden`) when unfocused, and
mounts all children for measurement when focused. A cell with 2,000+
relation chips mounts ~14k DOM nodes — one observed page reached ~55k
nodes for 43 rows, producing 100–300 ms main-thread long tasks on every
scroll.

## Fix

- **Backend:** load one-to-many relations with a true **per-parent** cap
via a `LATERAL` join — each parent runs its own indexed, `LIMIT`-ed scan
that stops after the per-parent budget. This is `O(perParentLimit ×
parentCount)` and never reads or sorts a parent's full relation set. The
per-parent query is built through the workspace query builder (so it
stays schema-qualified and keeps the soft-delete predicate) and wrapped
as a `FROM` subquery; read/row-level permissions are enforced when
records are hydrated by id, as elsewhere in the relation loader.
Many-to-one is unchanged.
- **Frontend:** add an opt-in `maxInlineCount` to `ExpandableList` so
to-many relation cells mount only a small inline preview; the expand
dropdown still renders the full fetched set. Fully backward compatible
(no cap → identical behavior).

## Why LATERAL over a window function

A windowed `ROW_NUMBER() OVER (PARTITION BY parent) <= limit` is correct
and fair too, but a window function **cannot stop early within a
partition** — it must read every matching row (and sort it). Measured on
skewed data (one parent with ~4k children, on the existing single-column
join index, PG16):

| Approach | Time | Buffers | Rows read from the hot partition |
|---|---|---|---|
| Pre-PR (`LIMIT 60×N`) | 1.6 ms | 91 | ~180 total, early-stops, but
**unfair** (starves siblings) |
| Window (`ROW_NUMBER`) | 3.7 ms | 128 | **all ~4k + sort** |
| **LATERAL (`per-parent LIMIT`)** | **0.5 ms** | **57** | **~60, index
early-stop** |

LATERAL matches the pre-PR read cost while being fair, needs no new
index, and scales independently of how large any single relation is.

## Verification

- Backend integration test (`nested-relation-per-parent-limit`): a
parent with 65 children is capped at 60 while a sibling with 3 keeps all
3 — passes.
- `EXPLAIN ANALYZE` on the generated SQL: Index Scan with the `LIMIT`
pushed into the per-parent lateral (early-stop).
- Frontend unit test for the `ExpandableList` cap.
- Manual check on a table cell with 40 related records: exactly 10 chips
mount inline (down from 40), no console errors, chips still clickable
and the overflow count reflects the true total.
This commit is contained in:
Félix Malfait
2026-06-27 15:12:43 +02:00
committed by GitHub
parent 4840233a1c
commit 2a21eb46c0
7 changed files with 406 additions and 23 deletions
@@ -1,6 +1,7 @@
import { RecordChip } from '@/object-record/components/RecordChip';
import { FieldContext } from '@/object-record/record-field/ui/contexts/FieldContext';
import { useFieldFocus } from '@/object-record/record-field/ui/hooks/useFieldFocus';
import { MAX_RELATION_CHIPS_DISPLAYED_INLINE } from '@/object-record/record-field/ui/meta-types/display/constants/MaxRelationChipsDisplayedInline';
import { useMorphRelationFromManyFieldDisplay } from '@/object-record/record-field/ui/meta-types/hooks/useMorphRelationFromManyFieldDisplay';
import { ExpandableList } from '@/ui/layout/expandable-list/components/ExpandableList';
@@ -39,7 +40,10 @@ export const MorphRelationOneToManyFieldDisplay = () => {
);
return (
<ExpandableList isChipCountDisplayed={isFocused}>
<ExpandableList
isChipCountDisplayed={isFocused}
maxInlineCount={MAX_RELATION_CHIPS_DISPLAYED_INLINE}
>
{flattenMorphValuesWithObjectNameSingular
.filter(isDefined)
.map(({ objectNameSingular, record }) => {
@@ -9,6 +9,7 @@ import { RecordChip } from '@/object-record/components/RecordChip';
import { isActivityTargetField } from '@/object-record/record-field-list/utils/categorizeRelationFields';
import { FieldContext } from '@/object-record/record-field/ui/contexts/FieldContext';
import { useFieldFocus } from '@/object-record/record-field/ui/hooks/useFieldFocus';
import { MAX_RELATION_CHIPS_DISPLAYED_INLINE } from '@/object-record/record-field/ui/meta-types/display/constants/MaxRelationChipsDisplayedInline';
import { useRelationFromManyFieldDisplay } from '@/object-record/record-field/ui/meta-types/hooks/useRelationFromManyFieldDisplay';
import { extractTargetRecordsFromJunction } from '@/object-record/record-field/ui/utils/junction/extractTargetRecordsFromJunction';
import { getJunctionConfig } from '@/object-record/record-field/ui/utils/junction/getJunctionConfig';
@@ -110,13 +111,20 @@ export const RelationFromManyFieldDisplay = () => {
if (isFocused) {
return (
<ExpandableList isChipCountDisplayed={isFocused}>
<ExpandableList
isChipCountDisplayed={isFocused}
maxInlineCount={MAX_RELATION_CHIPS_DISPLAYED_INLINE}
>
{chips}
</ExpandableList>
);
}
return <StyledContainer>{chips}</StyledContainer>;
return (
<StyledContainer>
{chips.slice(0, MAX_RELATION_CHIPS_DISPLAYED_INLINE)}
</StyledContainer>
);
}
if (isJunctionRelation && isDefined(junctionConfig)) {
@@ -150,7 +158,10 @@ export const RelationFromManyFieldDisplay = () => {
}
return (
<ExpandableList isChipCountDisplayed={isFocused}>
<ExpandableList
isChipCountDisplayed={isFocused}
maxInlineCount={MAX_RELATION_CHIPS_DISPLAYED_INLINE}
>
{targetRecordsWithMetadata.map(({ record, objectMetadata }) => (
<RecordChip
key={record.id}
@@ -166,7 +177,10 @@ export const RelationFromManyFieldDisplay = () => {
if (isRelationFromActivityTargets) {
return (
<ExpandableList isChipCountDisplayed={isFocused}>
<ExpandableList
isChipCountDisplayed={isFocused}
maxInlineCount={MAX_RELATION_CHIPS_DISPLAYED_INLINE}
>
{activityTargetObjectRecords.filter(isDefined).map((record) => (
<RecordChip
key={record.targetObject.id}
@@ -180,7 +194,10 @@ export const RelationFromManyFieldDisplay = () => {
}
return (
<ExpandableList isChipCountDisplayed={isFocused}>
<ExpandableList
isChipCountDisplayed={isFocused}
maxInlineCount={MAX_RELATION_CHIPS_DISPLAYED_INLINE}
>
{fieldValue.filter(isDefined).map((record) => {
const recordChipData = generateRecordChipData(record);
return (
@@ -0,0 +1 @@
export const MAX_RELATION_CHIPS_DISPLAYED_INLINE = 10;
@@ -53,6 +53,8 @@ const StyledUnShrinkableContainer = styled.div`
export type ExpandableListProps = {
isChipCountDisplayed?: boolean;
// Caps children mounted inline; the dropdown still renders all.
maxInlineCount?: number;
};
export type ChildrenProperty = {
@@ -63,9 +65,13 @@ export type ChildrenProperty = {
export const ExpandableList = ({
children,
isChipCountDisplayed: isChipCountDisplayedFromProps,
maxInlineCount,
}: {
children: ReactElement[];
} & ExpandableListProps) => {
const cappedChildren = isDefined(maxInlineCount)
? children.slice(0, maxInlineCount)
: children;
// isChipCountDisplayedInternal => uncontrolled display of the chip count.
// isChipCountDisplayedFromProps => controlled display of the chip count.
// If isChipCountDisplayedFromProps is provided, isChipCountDisplayedInternal is not taken into account.
@@ -89,15 +95,15 @@ export const ExpandableList = ({
const containerRef = useRef<HTMLDivElement>(null);
const [firstHiddenChildIndex, setFirstHiddenChildIndex] = useState(
children.length,
cappedChildren.length,
);
const hiddenChildrenCount = children.length - firstHiddenChildIndex;
const canDisplayChipCount = isChipCountDisplayed && hiddenChildrenCount > 0;
const visibleChildren = isChipCountDisplayed
? children.slice(0, firstHiddenChildIndex)
: children;
? cappedChildren.slice(0, firstHiddenChildIndex)
: cappedChildren;
const handleChipCountClick = useCallback((event: React.MouseEvent) => {
event.stopPropagation();
@@ -105,12 +111,12 @@ export const ExpandableList = ({
}, []);
const resetFirstHiddenChildIndex = useCallback(() => {
setFirstHiddenChildIndex(children.length);
}, [children.length]);
setFirstHiddenChildIndex(cappedChildren.length);
}, [cappedChildren.length]);
useEffect(() => {
resetFirstHiddenChildIndex();
}, [isChipCountDisplayed, children.length, resetFirstHiddenChildIndex]);
}, [isChipCountDisplayed, cappedChildren.length, resetFirstHiddenChildIndex]);
const handleClickOutside = () => {
setIsListExpanded(false);
@@ -0,0 +1,24 @@
import { render, screen } from '@testing-library/react';
import { ExpandableList } from '@/ui/layout/expandable-list/components/ExpandableList';
const buildChips = (count: number) =>
Array.from({ length: count }, (_, index) => (
<span key={index} data-testid="chip">
chip-{index}
</span>
));
describe('ExpandableList', () => {
it('mounts every child inline when no cap is provided', () => {
render(<ExpandableList>{buildChips(5)}</ExpandableList>);
expect(screen.getAllByTestId('chip')).toHaveLength(5);
});
it('mounts only maxInlineCount children inline when capped', () => {
render(<ExpandableList maxInlineCount={2}>{buildChips(5)}</ExpandableList>);
expect(screen.getAllByTestId('chip')).toHaveLength(2);
});
});
@@ -1,7 +1,7 @@
import { Injectable } from '@nestjs/common';
import { FieldMetadataType, type ObjectRecord } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
import { isDefined, isValidUuid } from 'twenty-shared/utils';
import { type FindOptionsRelations, type ObjectLiteral } from 'typeorm';
import { computeMorphOrRelationFieldJoinColumnName } from 'src/engine/metadata-modules/field-metadata/utils/compute-morph-or-relation-field-join-column-name.util';
@@ -26,10 +26,14 @@ import {
} from 'src/engine/metadata-modules/flat-field-metadata/utils/build-field-maps-from-flat-object-metadata.util';
import { FlatObjectMetadata } from 'src/engine/metadata-modules/flat-object-metadata/types/flat-object-metadata.type';
import { GlobalWorkspaceDataSource } from 'src/engine/twenty-orm/global-workspace-datasource/global-workspace-datasource';
import { type WorkspaceRepository } from 'src/engine/twenty-orm/repository/workspace.repository';
import { type WorkspaceSelectQueryBuilder } from 'src/engine/twenty-orm/repository/workspace-select-query-builder';
import { type RolePermissionConfig } from 'src/engine/twenty-orm/types/role-permission-config';
import { isFieldMetadataEntityOfType } from 'src/engine/utils/is-field-metadata-of-type.util';
const EMPTY_RELATION_SENTINEL_RECORD_ID =
'00000000-0000-0000-0000-000000000000';
@Injectable()
export class ProcessNestedRelationsV2Helper {
constructor() {}
@@ -228,12 +232,15 @@ export class ProcessNestedRelationsV2Helper {
const { relationResults, relationAggregatedFieldsResult } =
await this.findRelations({
referenceQueryBuilder: targetObjectQueryBuilder,
targetObjectRepository,
column:
relationType === RelationType.ONE_TO_MANY
? `"${fieldMetadataTargetRelationColumnName}"`
: 'id',
ids: relationIds,
limit: limit * parentObjectRecords.length,
relationType,
perParentLimit: limit,
parentRecordsCount: parentObjectRecords.length,
aggregate,
sourceFieldName,
targetObjectNameSingular,
@@ -340,19 +347,25 @@ export class ProcessNestedRelationsV2Helper {
private async findRelations({
referenceQueryBuilder,
targetObjectRepository,
column,
ids,
limit,
relationType,
perParentLimit,
parentRecordsCount,
aggregate,
sourceFieldName,
targetObjectNameSingular,
}: {
// oxlint-disable-next-line typescript/no-explicit-any
referenceQueryBuilder: WorkspaceSelectQueryBuilder<any>;
targetObjectRepository: WorkspaceRepository<ObjectLiteral>;
column: string;
// oxlint-disable-next-line typescript/no-explicit-any
ids: any[];
limit: number;
relationType: RelationType;
perParentLimit: number;
parentRecordsCount: number;
// oxlint-disable-next-line typescript/no-explicit-any
aggregate: Record<string, any>;
sourceFieldName: string;
@@ -401,20 +414,95 @@ export class ProcessNestedRelationsV2Helper {
const queryBuilderOptions = referenceQueryBuilder.getFindOptions();
const columnWithoutQuotes = column.replace(/["']/g, '');
const result = await referenceQueryBuilder
.setFindOptions({
...queryBuilderOptions,
select: { ...queryBuilderOptions.select, [columnWithoutQuotes]: true },
})
.where(`${column} IN (:...ids)`, {
const findOptionsWithJoinColumn = {
...queryBuilderOptions,
select: { ...queryBuilderOptions.select, [columnWithoutQuotes]: true },
};
if (relationType !== RelationType.ONE_TO_MANY) {
const result = await referenceQueryBuilder
.setFindOptions(findOptionsWithJoinColumn)
.where(`${column} IN (:...ids)`, { ids })
.take(perParentLimit * parentRecordsCount)
.getMany();
return { relationResults: result, relationAggregatedFieldsResult };
}
const allowedRelationRecordIds =
await this.findRelationRecordIdsLimitedPerParent({
targetObjectRepository,
targetObjectNameSingular,
column,
ids,
perParentLimit,
});
const recordIdsToHydrate =
allowedRelationRecordIds.length > 0
? allowedRelationRecordIds
: [EMPTY_RELATION_SENTINEL_RECORD_ID];
const result = await referenceQueryBuilder
.setFindOptions(findOptionsWithJoinColumn)
.where(`id IN (:...recordIdsToHydrate)`, {
recordIdsToHydrate,
})
.take(limit)
.getMany();
return { relationResults: result, relationAggregatedFieldsResult };
}
private async findRelationRecordIdsLimitedPerParent({
targetObjectRepository,
targetObjectNameSingular,
column,
ids,
perParentLimit,
}: {
targetObjectRepository: WorkspaceRepository<ObjectLiteral>;
targetObjectNameSingular: string;
column: string;
ids: string[];
perParentLimit: number;
}): Promise<string[]> {
const sanitizedIds = ids.filter(isValidUuid);
if (sanitizedIds.length === 0) {
return [];
}
const perParentRecordIdsSql = targetObjectRepository
.createQueryBuilder(targetObjectNameSingular)
.select('id', 'id')
.where(`${column} = "lateralParents"."parentId"`)
.limit(perParentLimit)
.getQuery();
const parentValues = sanitizedIds.map((id) => `('${id}'::uuid)`).join(', ');
const lateralFromSubquery =
`(SELECT "lateralRecords"."id" AS "id" ` +
`FROM (VALUES ${parentValues}) AS "lateralParents"("parentId") ` +
`CROSS JOIN LATERAL (${perParentRecordIdsSql}) AS "lateralRecords")`;
const limitedRecordsQueryBuilder = targetObjectRepository
.createQueryBuilder()
.from(lateralFromSubquery, 'limited_relation_records')
.select('limited_relation_records.id', 'id');
limitedRecordsQueryBuilder.expressionMap.aliases =
limitedRecordsQueryBuilder.expressionMap.aliases.filter((alias) =>
isDefined(alias.subQuery),
);
const limitedRecords = await limitedRecordsQueryBuilder.getRawMany<{
id: string;
}>();
return limitedRecords.map((limitedRecord) => limitedRecord.id);
}
private assignRelationResults({
parentRecords,
parentObjectRecordsAggregatedValues,
@@ -0,0 +1,243 @@
import { createManyOperationFactory } from 'test/integration/graphql/utils/create-many-operation-factory.util';
import { deleteManyOperationFactory } from 'test/integration/graphql/utils/delete-many-operation-factory.util';
import { destroyManyOperationFactory } from 'test/integration/graphql/utils/destroy-many-operation-factory.util';
import { findManyOperationFactory } from 'test/integration/graphql/utils/find-many-operation-factory.util';
import { makeGraphqlAPIRequest } from 'test/integration/graphql/utils/make-graphql-api-request.util';
import { QUERY_MAX_RECORDS_FROM_RELATION } from 'twenty-shared/constants';
const HOT_COMPANY_ID = '20202020-ffff-4000-8000-000000000001';
const SMALL_COMPANY_ID = '20202020-ffff-4000-8000-000000000002';
const SOFT_DELETED_COMPANY_ID = '20202020-ffff-4000-8000-000000000003';
const EMPTY_COMPANY_ID = '20202020-ffff-4000-8000-000000000004';
// A parent with more children than the per-parent budget, plus a sibling with
// only a few. The nested relation must cap the hot parent and still return all
// of the small parent's children (no starvation from a flat global limit).
const HOT_PEOPLE_COUNT = QUERY_MAX_RECORDS_FROM_RELATION + 5;
const SMALL_PEOPLE_COUNT = 3;
const SOFT_DELETED_TOTAL_PEOPLE_COUNT = 12;
const SOFT_DELETED_REMOVED_PEOPLE_COUNT = 5;
const SOFT_DELETED_REMAINING_PEOPLE_COUNT =
SOFT_DELETED_TOTAL_PEOPLE_COUNT - SOFT_DELETED_REMOVED_PEOPLE_COUNT;
const buildPersonId = (index: number) =>
`20202020-eeee-4000-8000-${index.toString().padStart(12, '0')}`;
let nextPersonIndex = 1;
const takePersonIds = (count: number) =>
Array.from({ length: count }, () => buildPersonId(nextPersonIndex++));
const HOT_PERSON_IDS = takePersonIds(HOT_PEOPLE_COUNT);
const SMALL_PERSON_IDS = takePersonIds(SMALL_PEOPLE_COUNT);
const SOFT_DELETED_PERSON_IDS = takePersonIds(SOFT_DELETED_TOTAL_PEOPLE_COUNT);
const SOFT_DELETED_REMOVED_PERSON_IDS = SOFT_DELETED_PERSON_IDS.slice(
0,
SOFT_DELETED_REMOVED_PEOPLE_COUNT,
);
const ALL_PERSON_IDS = [
...HOT_PERSON_IDS,
...SMALL_PERSON_IDS,
...SOFT_DELETED_PERSON_IDS,
];
const ALL_COMPANY_IDS = [
HOT_COMPANY_ID,
SMALL_COMPANY_ID,
SOFT_DELETED_COMPANY_ID,
EMPTY_COMPANY_ID,
];
describe('Nested relation per-parent limit (e2e)', () => {
beforeAll(async () => {
const createCompanies = createManyOperationFactory({
objectMetadataSingularName: 'company',
objectMetadataPluralName: 'companies',
gqlFields: 'id',
data: [
{ id: HOT_COMPANY_ID, name: 'Hot relation company' },
{ id: SMALL_COMPANY_ID, name: 'Small relation company' },
{ id: SOFT_DELETED_COMPANY_ID, name: 'Soft-deleted relation company' },
{ id: EMPTY_COMPANY_ID, name: 'Empty relation company' },
],
upsert: true,
});
await makeGraphqlAPIRequest(createCompanies);
const createPeople = createManyOperationFactory({
objectMetadataSingularName: 'person',
objectMetadataPluralName: 'people',
gqlFields: 'id',
data: [
...HOT_PERSON_IDS.map((id) => ({ id, companyId: HOT_COMPANY_ID })),
...SMALL_PERSON_IDS.map((id) => ({ id, companyId: SMALL_COMPANY_ID })),
...SOFT_DELETED_PERSON_IDS.map((id) => ({
id,
companyId: SOFT_DELETED_COMPANY_ID,
})),
],
upsert: true,
});
await makeGraphqlAPIRequest(createPeople);
// Soft-delete a subset so the per-parent selection must exclude them.
const softDeletePeople = deleteManyOperationFactory({
objectMetadataSingularName: 'person',
objectMetadataPluralName: 'people',
gqlFields: 'id',
filter: { id: { in: SOFT_DELETED_REMOVED_PERSON_IDS } },
});
await makeGraphqlAPIRequest(softDeletePeople);
});
afterAll(async () => {
const destroyPeople = destroyManyOperationFactory({
objectMetadataSingularName: 'person',
objectMetadataPluralName: 'people',
gqlFields: 'id',
filter: { id: { in: ALL_PERSON_IDS } },
});
await makeGraphqlAPIRequest(destroyPeople);
const destroyCompanies = destroyManyOperationFactory({
objectMetadataSingularName: 'company',
objectMetadataPluralName: 'companies',
gqlFields: 'id',
filter: { id: { in: ALL_COMPANY_IDS } },
});
await makeGraphqlAPIRequest(destroyCompanies);
});
it('caps a hot parent at the per-parent limit without starving siblings', async () => {
const queryData = findManyOperationFactory({
objectMetadataSingularName: 'company',
objectMetadataPluralName: 'companies',
gqlFields: `
id
people {
edges {
node {
id
}
}
}
`,
filter: { id: { in: [HOT_COMPANY_ID, SMALL_COMPANY_ID] } },
});
const response = await makeGraphqlAPIRequest(queryData);
expect(response.body.data).toBeDefined();
expect(response.body.errors).toBeUndefined();
const edges = response.body.data.companies.edges;
const hotCompany = edges.find(
(edge: { node: { id: string } }) => edge.node.id === HOT_COMPANY_ID,
);
const smallCompany = edges.find(
(edge: { node: { id: string } }) => edge.node.id === SMALL_COMPANY_ID,
);
// Hot parent is capped to the per-parent budget instead of dumping all of
// its children into a single connection.
expect(hotCompany.node.people.edges).toHaveLength(
QUERY_MAX_RECORDS_FROM_RELATION,
);
// Small parent still receives every one of its children — the hot parent no
// longer consumes the whole shared budget.
expect(smallCompany.node.people.edges).toHaveLength(SMALL_PEOPLE_COUNT);
});
it('excludes soft-deleted records from the per-parent selection', async () => {
const queryData = findManyOperationFactory({
objectMetadataSingularName: 'company',
objectMetadataPluralName: 'companies',
gqlFields: `
id
people {
edges {
node {
id
}
}
}
`,
filter: { id: { in: [SOFT_DELETED_COMPANY_ID] } },
});
const response = await makeGraphqlAPIRequest(queryData);
expect(response.body.errors).toBeUndefined();
const company = response.body.data.companies.edges[0];
expect(company.node.people.edges).toHaveLength(
SOFT_DELETED_REMAINING_PEOPLE_COUNT,
);
const returnedIds = company.node.people.edges.map(
(edge: { node: { id: string } }) => edge.node.id,
);
for (const removedId of SOFT_DELETED_REMOVED_PERSON_IDS) {
expect(returnedIds).not.toContain(removedId);
}
});
it('returns an empty connection for a parent with no related records', async () => {
const queryData = findManyOperationFactory({
objectMetadataSingularName: 'company',
objectMetadataPluralName: 'companies',
gqlFields: `
id
people {
edges {
node {
id
}
}
}
`,
filter: { id: { in: [EMPTY_COMPANY_ID] } },
});
const response = await makeGraphqlAPIRequest(queryData);
expect(response.body.errors).toBeUndefined();
expect(
response.body.data.companies.edges[0].node.people.edges,
).toHaveLength(0);
});
it('still resolves many-to-one relations from the other side', async () => {
const queryData = findManyOperationFactory({
objectMetadataSingularName: 'person',
objectMetadataPluralName: 'people',
gqlFields: `
id
company {
id
}
`,
filter: { id: { in: SMALL_PERSON_IDS } },
});
const response = await makeGraphqlAPIRequest(queryData);
expect(response.body.errors).toBeUndefined();
const edges = response.body.data.people.edges;
expect(edges).toHaveLength(SMALL_PEOPLE_COUNT);
for (const edge of edges) {
expect(edge.node.company.id).toBe(SMALL_COMPANY_ID);
}
});
});