Microsoft Teams Emoji Reactions
Description
This query lists the statistics of the Emoji reactions that have been send via Microsoft Teams
Query · kql
CloudAppEvents | where Application == "Microsoft Teams" | where ActionType == "ReactedToMessage" | extend Emoji = tostring(RawEventData.MessageReactionType) | where isnotempty(Emoji) | summarize TotalUsage = count() by Emoji | sort by TotalUsage