Commit dfaf03f3 authored by Natalia Tepluhina's avatar Natalia Tepluhina

Merge branch 'tr-alert-detail-remaining-fields' into 'master'

Add missing fields to Alert Details view

See merge request gitlab-org/gitlab!32392
parents f41c5b4f d8b9a3ad
#import "./listItem.fragment.graphql"
fragment AlertDetailItem on AlertManagementAlert {
...AlertListItem
createdAt
monitoringTool
service
description
updatedAt
details
}
#import "../fragments/detailItem.fragment.graphql"
query alertDetails($fullPath: ID!, $alertId: String) {
project(fullPath: $fullPath) {
alertManagementAlerts(iid: $alertId) {
nodes {
iid
createdAt
endedAt
eventCount
monitoringTool
service
severity
startedAt
status
title
...AlertDetailItem
}
}
}
......
---
title: Add fields to Alert Details view
merge_request: 32392
author:
type: added
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment