You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
consttags=awaitAgent.state('tags')consttagId='dacc9090-1c56-11f0-a9d9-670bacd2d69b'constitemToTagId='31f98ad0-381d-11f0-bf81-df92c6aad829'constpartition='Public Tags'if(!tags[tagId])tags[tagId]={}tags[tagId][itemToTagId]={ partition,value: true}// To removetags[tagId][itemToTagId]={ partition,value: null}
Consuming Tags
// Get all tags an item has been tagged withconstpartition='Public Tags'consttarget='31f98ad0-381d-11f0-bf81-df92c6aad829'awaitAgent.query('taggings-for-target',[partition,target],'tags.knowlearning.systems')// Get items tagged by a set of tagsconstpartition='Public Tags'consttagSet=['b0926ed0-0d0c-11ef-bdf5-877c72019f04','dacc9090-1c56-11f0-a9d9-670bacd2d69b']constitemsTagged=awaitAgent.query('taggings-intersection',[partition,tagSet],'tags.knowlearning.systems')// returns: [{target: '08b37440-0cbf-11ef-9008-15cef562b52e'}]