interface IGenerateMutationOptions {
    operation: "insert" | "update" | "delete";
    queryName?: string;
    returning?: string;
    tableName: string;
    variables?: any;
}

Hierarchy (view full)

Properties

operation: "insert" | "update" | "delete"
queryName?: string
returning?: string
tableName: string
variables?: any

Generated using TypeDoc