Labels and Cross-references
Global label registry and generic object-label mappings for cross-entity filtering and analysis.
Last updated
Global label registry and generic object-label mappings for cross-entity filtering and analysis.
Last updated
SELECT
category_name,
name AS label_value,
label_id
FROM reporting.labels
WHERE deleted_at IS NULL
ORDER BY category_name, name;SELECT
object_type,
COUNT(DISTINCT object_id) AS labeled_objects,
COUNT(DISTINCT label_id) AS distinct_labels
FROM reporting.object_labels
GROUP BY object_type
ORDER BY labeled_objects DESC;