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 } } } } } } } }