tagGroup
The eagle.tagGroup API allows easy access to the tag groups in the current application.
// Get all tag groups
const tagGroups = (await eagle.tagGroup.get());Methods
get()
const tagGroups = (await eagle.tagGroup.get());create(options)
await eagle.tagGroup.create({
name: "new group",
color: "red",
tags: ["tag1", "tag2"],
description: "Group description" // Eagle 4.0 build18+
});save()
remove()
addTags(options)
removeTags(options)
Last updated