Skip to content

Commit

Permalink
Merge pull request #671 from contember/fix/client-order
Browse files Browse the repository at this point in the history
fix(client-content): has many relation is not supported in order by
  • Loading branch information
matej21 committed Mar 11, 2024
2 parents 5dd6c3e + 0dfab56 commit 0329fd6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions build/api/client-content.api.md
Expand Up @@ -111,8 +111,6 @@ export namespace ContentClientInput {
readonly __typeGuard?: TEntity['name'];
} & {
readonly [key in keyof TEntity['columns']]?: `${Input.OrderDirection}` | null;
} & {
readonly [key in keyof TEntity['hasMany']]?: FieldOrderBy<TEntity['hasMany'][key]> | null;
} & {
readonly [key in keyof TEntity['hasOne']]?: FieldOrderBy<TEntity['hasOne'][key]> | null;
};
Expand Down
3 changes: 0 additions & 3 deletions packages/client-content/src/types/Input.ts
Expand Up @@ -228,9 +228,6 @@ export namespace ContentClientInput {
& {
readonly [key in keyof TEntity['columns']]?: `${Input.OrderDirection}` | null
}
& {
readonly [key in keyof TEntity['hasMany']]?: FieldOrderBy<TEntity['hasMany'][key]> | null
}
& {
readonly [key in keyof TEntity['hasOne']]?: FieldOrderBy<TEntity['hasOne'][key]> | null
}
Expand Down

0 comments on commit 0329fd6

Please sign in to comment.