Files
klz-cables.com/.pnpm-store/v10/files/58/8e9ed82a03aee0f06907434546f2f24d268f8f6b50a7bf425a6de107561e6dac688e319c72c4ddfc5bbc384b4fb48c866fcd2999fcbb964699e131c0a20a5f
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

20 lines
760 B
Plaintext

import type { GraphQLFieldConfig } from 'graphql';
import type { Field, GraphQLInfo, SanitizedConfig } from 'payload';
import { GraphQLObjectType } from 'graphql';
export type ObjectTypeConfig = {
[path: string]: GraphQLFieldConfig<any, any, any>;
};
type Args = {
baseFields?: ObjectTypeConfig;
collectionSlug?: string;
config: SanitizedConfig;
fields: Field[];
forceNullable?: boolean;
graphqlResult: GraphQLInfo;
name: string;
parentIsLocalized?: boolean;
parentName: string;
};
export declare function buildObjectType({ name, baseFields, collectionSlug, config, fields, forceNullable, graphqlResult, parentIsLocalized, parentName, }: Args): GraphQLObjectType;
export {};
//# sourceMappingURL=buildObjectType.d.ts.map