Files
server/opt/psa/admin/cp/queries/AdminHomeOverusedSubscriptions.graphql
2026-01-07 20:52:11 +01:00

38 lines
1.0 KiB
GraphQL

query AdminHomeOverusedSubscriptions {
viewer {
login
client {
id
subscriptions(
input: {
pagination: { page: 1, itemsPerPage: 3 }
orderBy: { displayName: ASC }
searchFilters: { overuse: "true" }
own: false,
}
) {
pageInfo {
total
}
nodes {
id
... on Subscription {
status
mainDomain {
id
name
}
limits {
all(overused: true) {
name
formattedValue
formattedUsed
}
}
}
}
}
}
}
}