Files
klz-cables.com/.pnpm-store/v10/files/e3/697e6c3ff3e115353cffb527f83b57cf78cf8b602cf55faec39da125247bb0686008c468884d3946d729a7462f43c99f278eec2c146060a180ecd6ffc65a6b
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

23 lines
1.0 KiB
Plaintext

import type { GraphQLInputFieldConfig, GraphQLScalarType } from 'graphql';
import type { Field, GraphQLInfo, SanitizedCollectionConfig, SanitizedConfig } from 'payload';
import { GraphQLInputObjectType } from 'graphql';
declare const idFieldTypes: {
number: GraphQLScalarType<number, number>;
text: GraphQLScalarType<string, string>;
};
export declare const getCollectionIDType: (type: keyof typeof idFieldTypes, collection: SanitizedCollectionConfig) => GraphQLScalarType;
export type InputObjectTypeConfig = {
[path: string]: GraphQLInputFieldConfig;
};
type BuildMutationInputTypeArgs = {
config: SanitizedConfig;
fields: Field[];
forceNullable?: boolean;
graphqlResult: GraphQLInfo;
name: string;
parentIsLocalized: boolean;
parentName: string;
};
export declare function buildMutationInputType({ name, config, fields, forceNullable, graphqlResult, parentIsLocalized, parentName, }: BuildMutationInputTypeArgs): GraphQLInputObjectType | null;
export {};
//# sourceMappingURL=buildMutationInputType.d.ts.map