tagGroup(タグ グループ)
eagle.tagGroup APIを通じて、現在のアプリケーション内のタググループに簡単にアクセスできます。
// すべてのタググループを取得
const tagGroups = (await eagle.tagGroup.get());メソッド
get()
const tagGroups = (await eagle.tagGroup.get());create(options)
await eagle.tagGroup.create({
name: "new group",
color: "red",
tags: ["tag1", "tag2"],
description: "グループの説明" // Eagle 4.0 build18+
});save()
remove()
addTags(options)
removeTags(options)
最終更新