import '../augmentations'; import type { GraphileConfig } from 'graphile-config'; /** * ConnectionFilterLogicalOperatorsPlugin * * Adds the `and`, `or`, and `not` logical operators to filter types. * * - `and`: [Filter!] - all conditions must match (uses $where.andPlan()) * - `or`: [Filter!] - any condition must match (uses $where.orPlan()) * - `not`: Filter - negates the condition (uses $where.notPlan()) * * These are only added if the filter type has at least one other field * (to avoid creating useless logical-only filter types). */ export declare const ConnectionFilterLogicalOperatorsPlugin: GraphileConfig.Plugin;