Interface LocationQueryCreationRequest<TSchema, TQuery>

interface LocationQueryCreationRequest<
    TSchema extends LocationQuerySchema = LocationQuerySchema,
    TQuery extends Record<string, unknown> = Record<string, unknown>,
> {
    query: TQuery;
    resultArchive: string;
    resultArchivist: ApiConfig;
    schema: TSchema;
    sourceArchive: string;
    sourceArchivist: ApiConfig;
}

Type Parameters

Hierarchy (View Summary)

Properties

query: TQuery
resultArchive: string
resultArchivist: ApiConfig
schema: TSchema
sourceArchive: string
sourceArchivist: ApiConfig