@hasura/metadata-api
Version:
Hasura GraphQL Engine Metadata API types
15 lines (14 loc) • 671 B
TypeScript
import type { CustomRootField } from './CustomRootField';
export type TableCustomRootFields = {
delete?: (string | CustomRootField) | null;
delete_by_pk?: (string | CustomRootField) | null;
insert?: (string | CustomRootField) | null;
insert_one?: (string | CustomRootField) | null;
select?: (string | CustomRootField) | null;
select_aggregate?: (string | CustomRootField) | null;
select_by_pk?: (string | CustomRootField) | null;
select_stream?: (string | CustomRootField) | null;
update?: (string | CustomRootField) | null;
update_by_pk?: (string | CustomRootField) | null;
update_many?: (string | CustomRootField) | null;
};