#977

Webhook Retries in the Metric

Operations needs to know how many different orders received events in webhook_events. Retries for the same order_id must not inflate the metric. Fix the report so it returns one value, n, for the number of unique orders.

Buggy query
SELECT COUNT(*) AS n FROM webhook_events;

Exemple de sortie attendue

Voici à quoi ressemble une réponse correcte — son nombre de lignes lui est propre, il n'a pas à correspondre aux tables du schéma.

n
2

Le résultat de votre requête apparaîtra ici