Skip to content

GraphQL price range numeric values #28628

Closed
@nrkapoor

Description

@nrkapoor

In order to support a price range slider, price intervals returned in a product aggregation should be numeric only (no wildcards).

Current price aggregation response:

{
"options": [
{
"count": 1,
"label": "60-70",
"value": "60_70"
},
{
"count": 2,
"label": "90-",
"value": "90_
"
}
],
"attribute_code": "price",
"count": 5,
"label": "Price"
}
 

Expected price aggregation response:

{
"options": [
{
"count": 1,
"label": "60-70",
"value": "60_70"
},
{
"count": 2,
"label": "90-110",
"value": "90_110"
}
],
"attribute_code": "price",
"count": 5,
"label": "Price"
}
 

Metadata

Metadata

Assignees

Labels

Issue: Format is not validGate 1 Failed. Automatic verification of issue format is failedPAPPartners acceleration programProject: GraphQL

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions