Improved
Hide Raw SQL in Comparison Monitor Alerts
12 days ago
Comparison monitor alert notifications can now be configured to omit the raw SQL query. When enabled, notifications lead with your custom notes and sample data, if sampling is enabled, instead of the full query.
The setting is account-level, off by default, and can be enabled by an Account Owner via the toggleAccountFeature API mutation.
mutation EnableDisableSqlInComparisonNotifications {
toggleAccountFeature(
feature: "disable_sql_in_comparison_notifications"
isEnabled: true
) {
success
}
}