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
{{ message }}
This repository was archived by the owner on Jun 22, 2021. It is now read-only.
Changes pagination and sorting constants to improve readability. (#8) (561d0b9)
BREAKING CHANGES
In pagination forward was renamed to direction.
To paginate forward use 'forward' in pagination.direction instead of true in pagination.forward. Use import { forward } from '@js-entity-repos/core/dist/types/PaginationDirection'.
To paginate backward use 'backward' in pagination.direction instead of false in pagination.forward. Use import { backward } from '@js-entity-repos/core/dist/types/PaginationDirection'.
To sort in ascending order use 'asc' in sort instead of true. Use import { asc } from '@js-entity-repos/core/dist/types/SortOrder'.
To sort in descending order use 'desc' in sort instead of false. Use import { desc } from '@js-entity-repos/core/dist/types/SortOrder'.