Files
klz-cables.com/.pnpm-store/v10/files/88/0d7fe6709de29a7375df9870798f643e7cbec6efb6b706825a4d067afc0b686979dfc3cdbd9f3a8038b6775bfeab6243d8e4c9467b64fbf0ef77b1c7cffb16
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
335 B
Plaintext

import type { ASTVisitor } from '../../language/visitor';
import type { ASTValidationContext } from '../ValidationContext';
/**
* Unique variable names
*
* A GraphQL operation is only valid if all its variables are uniquely named.
*/
export declare function UniqueVariableNamesRule(
context: ASTValidationContext,
): ASTVisitor;