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); }; } Properties
find
find: {
id: number[];
}
on
on: { error: ((reject: ((error: any) => void)) => any); pending: ((wait: (() => void)) => any); success: ((next: ((fn: Promise<any>) => void),
reject: ((value?: any) => void),
result: ResultOnSuccess[]) => any); }