import '../augmentations'; import type { GraphileConfig } from 'graphile-config'; /** * BulkUpdatePlugin * * Registers `bulkUpdateX` mutation fields for each resource with the * `bulkUpdate` behavior. Uses UPDATE ... SET ... WHERE with conditions * from graphile-connection-filter (or PostGraphile's built-in condition type). * * Uses `RETURNING ` (not `RETURNING *`) + follow-up SELECT * to respect column-level SELECT grants. */ export declare const BulkUpdatePlugin: GraphileConfig.Plugin;