Skip to content

Commit

Permalink
Added todos for Downloadable products
Browse files Browse the repository at this point in the history
  • Loading branch information
paales committed Feb 18, 2025
1 parent a5fe2b4 commit 5fb36cd
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/magento-product-downloadable/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# Magento Downloadable Products

## Todo

- [ ] DownloadableOrderItem
- [ ] DownloadableCreditMemoItem
- [ ] DownloadableInvoiceItem
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
fragment DownloadableCreditMemoItem on DownloadableCreditMemoItem
@inject(into: ["CreditMemoItem"]) {
downloadable_links {
...DownloadableItemsLinks
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
fragment DownloadableInvoiceItem on DownloadableInvoiceItem @inject(into: ["InvoiceItem"]) {
downloadable_links {
...DownloadableItemsLinks
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
fragment DownloadableItemsLinks on DownloadableItemsLinks {
sort_order
title
uid
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
fragment DownloadableOrderItem on DownloadableOrderItem @inject(into: ["OrderItem"]) {
downloadable_links {
...DownloadableItemsLinks
}
}
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
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
fragment DownloadableProductSamples on DownloadableProductSamples {
title
sort_order
sample_url
}

0 comments on commit 5fb36cd

Please sign in to comment.