Closed
Description
Preconditions (*)
- Magento 2.4.1 CE
Steps to reproduce (*)
- Add multiple Date customizable options to a product. Use different date types: Date, Date & Time, Time
- Query the previous product via graphQL and display the customizable options. Use sample query below:
{
products(filter: {sku: {eq: "test-sku"}}) {
items {
sku
__typename
id
name
... on SimpleProduct {
options {
__typename
option_id
required
sort_order
title
... on CustomizableDateOption {
value {
uid
price
price_type
__typename
}
__typename
}
}
}
}
}
}
Expected result (*)
- The customizable option part of the response, for Date options, should contain information about the precise field type ( Date, Date & Time, Time)
Actual result (*)
Please provide Severity assessment for the Issue as Reporter. This information will help during Confirmation and Issue triage processes.
- Severity: S0 - Affects critical data or functionality and leaves users without workaround.
- Severity: S1 - Affects critical data or functionality and forces users to employ a workaround.
- Severity: S2 - Affects non-critical data or functionality and forces users to employ a workaround.
- Severity: S3 - Affects non-critical data or functionality and does not force users to employ a workaround.
- Severity: S4 - Affects aesthetics, professional look and feel, “quality” or “usability”.