Files
klz-cables.com/.pnpm-store/v10/files/a2/11574ab848c4648c95e71fa70a39059fc857db93ae1550b674534bb760688a2c14691b43a5e190096c30195e14734f8dde13af2ddc078d705f73a26fdd3100
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
338 B
Plaintext

import type { ASTVisitor } from '../../language/visitor';
import type { SDLValidationContext } from '../ValidationContext';
/**
* Lone Schema definition
*
* A GraphQL document is only valid if it contains only one schema definition.
*/
export declare function LoneSchemaDefinitionRule(
context: SDLValidationContext,
): ASTVisitor;