I understand how to update the tags but that also removes the existing tags.
#update tags
for item in Items:item.update(item_properties={'tags': 'tag, test'})
How would I go about adding tags to existing? I a stumped.
I figured it out.
for item in Items:thislist = item.tagsaddtag = ("Newtag")thislist.append(addtag)
item.update(item_properties={'tags': thislist})
This appends a tag to existing for item in items
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.