listImportJobs()
This operation lists import jobs submitted through the HTTP import job API. Use it to review job IDs, collection names, progress, and state.
await milvusClient.listImportJobs(params: HttpBaseReq)
Request Syntax
await milvusClient.listImportJobs({
dbName?: string,
})
PARAMETERS:
dbName (string) -
Specifies the database name.
RETURNS:
Promise
Example
const jobs = await milvusClient.listImportJobs({
dbName: 'default',
});