UNPKG

@hasura/metadata-api

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