24 lines
544 B
GraphQL
24 lines
544 B
GraphQL
query ServerMailVirusVirusesStatistics(
|
|
$from: String!
|
|
$to: String!
|
|
$pagination: PaginationInput!
|
|
$orderBy: EmailStatisticsVirusesSortingInput!
|
|
) {
|
|
emailStatistics {
|
|
virusSummary(from: $from, to: $to) {
|
|
clean
|
|
infected
|
|
protected
|
|
skipped
|
|
}
|
|
viruses(from: $from, to: $to, pagination: $pagination, orderBy: $orderBy) {
|
|
rows {
|
|
name
|
|
count
|
|
ratio
|
|
}
|
|
totalRows
|
|
}
|
|
}
|
|
}
|