Skip to content

v2024.12.6

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 04 Feb 15:36
· 208 commits to refs/heads/master since this release
c28394d

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