Files
klz-cables.com/.pnpm-store/v10/files/ac/e824b74d10a6228cf70abe1ddd8f78f1242ffaae943139e20bb1511a3d149fc0a8be90441b841e4d478e2a2b175872f7e9d7e2fa01f3c3a51bf1a5a4282aad
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

11 lines
334 B
Plaintext

import type { ASTVisitor } from '../../language/visitor';
import type { SDLValidationContext } from '../ValidationContext';
/**
* Unique operation types
*
* A GraphQL document is only valid if it has only one type per operation.
*/
export declare function UniqueOperationTypesRule(
context: SDLValidationContext,
): ASTVisitor;