attach_tags {quasardb}R Documentation

Attach tags to an entry.

Description

Attach one or many tags to an existing entry.

When attaching tags, no error will be raised if the entry has been tagged with at least one tag (i.e. when this entry had not already been tagged with all given tags).

Usage

attach_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")
attach_tags(handle, "key", "tag")

[Package quasardb version 3.3.0.0 Index]