apollo-router 1.61.13

A configurable, high-performance routing runtime for Apollo Federation 🚀
Documentation
query LicenseQuery($apiKey: String!, $graph_ref: String!, $ifAfterId: ID) {

    routerEntitlements(ifAfterId: $ifAfterId, apiKey: $apiKey, ref: $graph_ref) {
        __typename
        ... on RouterEntitlementsResult {
            id
            minDelaySeconds
            entitlement {
                jwt
            }
        }
        ... on Unchanged {
            id
            minDelaySeconds
        }
        ... on FetchError {
            code
            message
        }
    }
}