UNPKG

@hasura/metadata-api

Version:
15 lines (14 loc) 323 B
import type { PostgresBoolExp } from './PostgresBoolExp'; export type PostgresUpdPerm = { backend_only?: boolean; check?: PostgresBoolExp; /** * Allowed columns */ columns: ('*' | Array<string>); filter: PostgresBoolExp; /** * Preset columns */ set?: Record<string, any>; };