import '../augmentations'; import type { GraphileConfig } from 'graphile-config'; /** * ConnectionFilterArgPlugin * * Adds the `where` argument (name configurable via * `connectionFilterArgumentName`, default `'where'`) to connection and * simple collection fields. Uses `applyPlan` to create a PgCondition * that child filter fields can add WHERE clauses to. * * This runs before PgConnectionArgOrderByPlugin so that filters are applied * before ordering (important for e.g. full-text search rank ordering). */ export declare const ConnectionFilterArgPlugin: GraphileConfig.Plugin;