A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
Hi there,
I created an order with the admin rest API and added a discount to the order
```
"discount_applications": [
{
"target_type": "line_item",
"type": "manual",
"value": "1.0",
"value_type": "fixed_amount",
"allocation_method": "across",
"target_selection": "all",
"title": "discount title",
"description": "discount description"
}
]
```
Note the title and the description.
Where do I find the discount description on the orders page on admin? In this case, when I go to https://spotting-diehard.myshopify.com/admin/orders/4207939879012 I see
Note that I can see the discount title, but I don't see the discount description. Where do I find the discount description?
Thanks!