UNPKG

@hasura/metadata-api

Version:
11 lines (10 loc) 446 B
import type { PostgresBoolExp } from './PostgresBoolExp'; export type PostgresSelPerm = { allow_aggregations?: boolean; columns: ('*' | Array<string>); computed_fields?: Array<string>; filter: PostgresBoolExp; limit?: number; query_root_fields?: Array<'select' | 'select_by_pk' | 'select_aggregate'> | null; subscription_root_fields?: Array<'select' | 'select_by_pk' | 'select_aggregate' | 'select_stream'> | null; };