πŸ“™Delete By Ids

Prerequisites

Requires a user auth token. See the API Auth section.

Deleting Data

Deletes all vectors associated with provided vector Ids.

import mindplug from "@/src/mindplugAPI"; // base instance

mindplug.post("/data/delete", {
    "db": "walmart",
    "collection": "OfficeSupplies",
    "vectorIds": ["8ad610a8-9dc8-4e3c-bae4-0e10146fd43a"]
});

Once the data is deleted, there is no way for Mindplug to restore the deleted data.

Sample Response

{
    success: "true"
}

Last updated