| detach_tags {quasardb} | R Documentation |
Detach one or many tags from an existing entry.
When detaching tags, no error will be raised if the entry has been untagged from at least one tag (i.e. when this entry had no tags amongst the given ones).
detach_tags(handle, entry, tags)
handle |
A valid cluster opened using 'connect'. |
entry |
An alias (key) of an entry. |
tags |
A vector of tag names to attach. |
https://doc.quasardb.net/master/concepts/tags.html
handle <- connect("qdb://127.0.0.1:2836")
detach_tags(handle, entry = "key", tags = "tag")
detach_tags(handle, entry = "key", tags = c("tag1", "tag2"))