query GetPhysicalProductsForDelivery(
    $type: PhysicalDeliveryType!
    $storeId: ID!
    $account: ID
    $limit: Int
    $offset: Int
) {
    physicalProductsForDelivery(
        type: $type
        storeId: $storeId
        account: $account
        limit: $limit
        offset: $offset
    ) {
        total
        products {
            productId
        }
    }
}
