Example:


sh.addTagRange(
    "demo.emails",                                     // database.collection
    { continent: "Asia" }, { continent: "Australia" }, // range (min, max)
    "ASIA"                                             // tag
);
sh.addTagRange(
    "demo.emails",
    { continent: "Europe" }, { continent: "Europe" },
    "EUR"
);