No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

19 líneas
1.2 KiB

  1. # Copyright © Magento, Inc. All rights reserved.
  2. # See COPYING.txt for license details.
  3. type Query {
  4. customerDownloadableProducts: CustomerDownloadableProducts @resolver(class: "Magento\\CustomerDownloadableGraphQl\\Model\\Resolver\\CustomerDownloadableProducts") @doc(description: "Return a list of downloadable products the customer has purchased.") @cache(cacheable: false)
  5. }
  6. type CustomerDownloadableProducts @doc(description: "Contains a list of downloadable products.") {
  7. items: [CustomerDownloadableProduct] @doc(description: "An array of purchased downloadable items.")
  8. }
  9. type CustomerDownloadableProduct @doc(description: "Contains details about a single downloadable product.") {
  10. order_increment_id: String @doc(description: "The unique ID assigned to the item.")
  11. date: String @doc(description: "The date and time the purchase was made.")
  12. status: String @doc(description: "Indicates when the product becomes available for download. Options are `Pending` and `Invoiced`.")
  13. download_url: String @doc(description: "The fully qualified URL to the download file.")
  14. remaining_downloads: String @doc(description: "The remaining number of times the customer can download the product.")
  15. }