v2024.12.6
Pre-release
Pre-release
·
208 commits
to refs/heads/master
since this release
What’s Changed
🐛 Bug Fixes
- fix: Ordering referenced entities by reference attribute inside
inScope
container doesn't work @novoj (#791)
This graphQL query:
query productPage {
queryProduct{
recordStrip(limit: 1) {
data {
primaryKey
categories(
orderBy: {inScope: {scope: LIVE, ordering: {attributeCategoryPriorityNatural: ASC}}}
) {
referencedPrimaryKey
attributes {
categoryPriority
}
referencedEntity {
primaryKey
attributes {
code
}
}
}
}
}
}
}
... doesn't work properly. When ordering constraint is enveloped in inScope
container it's completely skipped.
Refs: #789