detach_tags {quasardb}R Documentation

Detach tags from an entry.

Description

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).

Usage

detach_tags(handle, entry, tags)

Arguments

handle

A valid cluster opened using 'connect'.

entry

An alias (key) of an entry.

tags

A vector of tag names to attach.

See Also

https://doc.quasardb.net/master/concepts/tags.html

connect

Examples

handle <- connect("qdb://127.0.0.1:2836")
detach_tags(handle, entry = "key", tags = "tag")

detach_tags(handle, entry = "key", tags = c("tag1", "tag2"))

[Package quasardb version 3.3.0.0 Index]