You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The implicit ordering is ASC by primary key, but we have discovered that we lack the possibility to order by PK in descending fashion. Although this ordering is not widely used, we should support it. Because we have orderign constraints entityPrimaryKeyInFilter and entityPrimaryKeyExact we should provide new constraint to be used like that:
query(
orderBy(
entityPrimaryKey(DESC)
)
)
And this would produce output sorted by PK in descending order.
The text was updated successfully, but these errors were encountered:
The implicit ordering is ASC by primary key, but we have discovered that we lack the possibility to order by PK in descending fashion. Although this ordering is not widely used, we should support it. Because we have orderign constraints `entityPrimaryKeyInFilter` and `entityPrimaryKeyExact` we should provide new constraint to be used like that:
```
query(
orderBy(
entityPrimaryKey(DESC)
)
)
```
And this would produce output sorted by PK in descending order.
novoj
linked a pull request
Dec 5, 2023
that will
close
this issue
The implicit ordering is ASC by primary key, but we have discovered that we lack the possibility to order by PK in descending fashion. Although this ordering is not widely used, we should support it. Because we have orderign constraints
entityPrimaryKeyInFilter
andentityPrimaryKeyExact
we should provide new constraint to be used like that:And this would produce output sorted by PK in descending order.
The text was updated successfully, but these errors were encountered: