tagGroup
The eagle.tagGroup API allows easy access to the tag groups in the current application.
Methods
get()
Retrieves all tag groups.
Returns
Promise<tagGroups: Object[]>
- the query result for tagGroups.
create(options)
Creates a new tag group.
Returns
Promise<tagGroup: Object>
- the newly created tag group.
Instance Methods
save()
Saves changes to the tag group.
Returns
Promise<tagGroup: Object>
- the result of the save operation.
remove()
Removes the tag group.
Returns
Promise<result: boolean>
- whether the removal was successful.
Last updated