@hasura/metadata-api
Version:
Hasura GraphQL Engine Metadata API types
11 lines (10 loc) • 450 B
TypeScript
import type { CockroachBoolExp } from './CockroachBoolExp';
export type CockroachSelPerm = {
allow_aggregations?: boolean;
columns: ('*' | Array<string>);
computed_fields?: Array<string>;
filter: CockroachBoolExp;
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;
};