-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added todos for Downloadable products
- Loading branch information
Showing
7 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
# Magento Downloadable Products | ||
|
||
## Todo | ||
|
||
- [ ] DownloadableOrderItem | ||
- [ ] DownloadableCreditMemoItem | ||
- [ ] DownloadableInvoiceItem |
6 changes: 6 additions & 0 deletions
6
packages/magento-product-downloadable/graphql/fragments/DownloadableCreditMemoItem.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
fragment DownloadableCreditMemoItem on DownloadableCreditMemoItem | ||
@inject(into: ["CreditMemoItem"]) { | ||
downloadable_links { | ||
...DownloadableItemsLinks | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
packages/magento-product-downloadable/graphql/fragments/DownloadableInvoiceItem.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
fragment DownloadableInvoiceItem on DownloadableInvoiceItem @inject(into: ["InvoiceItem"]) { | ||
downloadable_links { | ||
...DownloadableItemsLinks | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
packages/magento-product-downloadable/graphql/fragments/DownloadableItemsLinks.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
fragment DownloadableItemsLinks on DownloadableItemsLinks { | ||
sort_order | ||
title | ||
uid | ||
} |
5 changes: 5 additions & 0 deletions
5
packages/magento-product-downloadable/graphql/fragments/DownloadableOrderItem.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
fragment DownloadableOrderItem on DownloadableOrderItem @inject(into: ["OrderItem"]) { | ||
downloadable_links { | ||
...DownloadableItemsLinks | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
packages/magento-product-downloadable/graphql/fragments/DownloadableProductLinks.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
fragment DownloadableProductLinks on DownloadableProductLinks { | ||
price | ||
sample_url | ||
sort_order | ||
title | ||
uid | ||
} |
5 changes: 5 additions & 0 deletions
5
packages/magento-product-downloadable/graphql/fragments/DownloadableProductSamples.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
fragment DownloadableProductSamples on DownloadableProductSamples { | ||
title | ||
sort_order | ||
sample_url | ||
} |