Skip to content

Commit 9fa6a28

Browse files
committed
GraphQl-42: [My Account] My Downloadable Products
1 parent 556e70c commit 9fa6a28

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/DownloadableGraphQl/etc/schema.graphqls

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
# See COPYING.txt for license details.
33

44
type Query {
5-
customerDownloadableProducts: customerDownloadableProducts @resolver(class: "Magento\\DownloadableGraphQl\\Model\\Resolver\\CustomerDownloadableProducts") @doc(description: "The query returns the contents of a customer's downloadable products")
5+
customerDownloadableProducts: CustomerDownloadableProducts @resolver(class: "Magento\\DownloadableGraphQl\\Model\\Resolver\\CustomerDownloadableProducts") @doc(description: "The query returns the contents of a customer's downloadable products")
66
}
77

8-
type customerDownloadableProducts {
9-
items: [customerDownloadableProduct] @doc(description: "List of purchased downloadable items")
8+
type CustomerDownloadableProducts {
9+
items: [CustomerDownloadableProduct] @doc(description: "List of purchased downloadable items")
1010
}
1111

12-
type customerDownloadableProduct {
12+
type CustomerDownloadableProduct {
1313
order_increment_id: String
1414
date: String
1515
status: String

0 commit comments

Comments
 (0)