query GetAccountsWithProducts(
    $storeId: ID!
    $type: PhysicalDeliveryType!
    $limit: Int
    $offset: Int
) {
    physicalProductsForDelivery(
        storeId: $storeId
        type: $type
        limit: $limit
        offset: $offset
    ) {
        products {
            label {
                id {
                    vendorId
                    subaccountId
                }
                name
                uuid
            }
        }
    }
}
