Interface BatchFallbackQuery<ResultOnSuccess>

interface BatchFallbackQuery<ResultOnSuccess> {
    args: any;
    find: {
        id: number[];
    };
    on: {
        error: ((reject: ((error: any) => void)) => any);
        pending: ((wait: (() => void)) => any);
        success: ((next: ((fn: Promise<any>) => void), reject: ((value?: any) => void), result: ResultOnSuccess[]) => any);
    };
}

Type Parameters

  • ResultOnSuccess

Properties

Properties

args: any
find: {
    id: number[];
}
on: {
    error: ((reject: ((error: any) => void)) => any);
    pending: ((wait: (() => void)) => any);
    success: ((next: ((fn: Promise<any>) => void), reject: ((value?: any) => void), result: ResultOnSuccess[]) => any);
}