UNPKG

@hasura/metadata-api

Version:
11 lines (10 loc) 446 B
import type { BigqueryBoolExp } from './BigqueryBoolExp'; export type BigquerySelPerm = { allow_aggregations?: boolean; columns: ('*' | Array<string>); computed_fields?: Array<string>; filter: BigqueryBoolExp; 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; };