query LabelQuery($vendorId: Int!, $subaccountId: Int!) {
    _entities(
        representations: {
            __typename: "Label"
            id: { vendorId: $vendorId, subaccountId: $subaccountId }
        }
    ) {
        ... on Vendor {
            __typename
            id {
                vendorId
                subaccountId
            }
        }
        ... on Subaccount {
            __typename
            id {
                vendorId
                subaccountId
            }
        }
    }
}
