# Copyright © Magento, Inc. All rights reserved. # See COPYING.txt for license details. type Query { customerDownloadableProducts: CustomerDownloadableProducts @resolver(class: "Magento\\CustomerDownloadableGraphQl\\Model\\Resolver\\CustomerDownloadableProducts") @doc(description: "The query returns the contents of a customer's downloadable products") @cache(cacheable: false) } type CustomerDownloadableProducts { items: [CustomerDownloadableProduct] @doc(description: "List of purchased downloadable items") } type CustomerDownloadableProduct { order_increment_id: String date: String status: String download_url: String remaining_downloads: String }