38 lines
1.0 KiB
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|