Skip to main content

OrgUsageSummary

Org-level rollup of replication/GraphQL byte totals and GraphQL op counts across all apps in the organization for the time window. WHICH OF THESE YOU PAY FOR: the *SendBytes fields are the billable direction, and *RecvBytes are metered but do NOT count toward Aggregate Data Volume, the monthly free-tier and overage measure. All byte figures are wire bytes measured at the network interface, including transport and network headers, and after any compression the service applies -- they will not match a client-side byte counter.

type OrgUsageSummary {
orgId: String!
replicationSendBytes: String!
replicationRecvBytes: String!
graphqlSendBytes: String!
graphqlRecvBytes: String!
totalOps: String!
}

Fields

OrgUsageSummary.orgId ● String! non-null scalar

Organization id (as a string).

OrgUsageSummary.replicationSendBytes ● String! non-null scalar

Total replication bytes sent across all org apps (string counter).

OrgUsageSummary.replicationRecvBytes ● String! non-null scalar

Total replication bytes received across all org apps (string counter).

OrgUsageSummary.graphqlSendBytes ● String! non-null scalar

Total GraphQL bytes sent across all org apps (string counter).

OrgUsageSummary.graphqlRecvBytes ● String! non-null scalar

Total GraphQL bytes received across all org apps (string counter).

OrgUsageSummary.totalOps ● String! non-null scalar

Total GraphQL operations (send + recv) across all org apps (string counter).

Returned By

orgUsageSummary query