├── .github ├── release-drafter.yml └── workflows │ ├── change-management.yml │ ├── ci.yml │ └── release-drafter.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── cursor.go ├── go.mod ├── go.sum ├── models.go ├── offset_paginator.go ├── orderby_test.go ├── page_info.go ├── page_info_resolver.go ├── schema.graphql └── tests ├── cursor_test.go ├── go_paging_suite_test.go ├── offset_paginator_test.go └── page_info_test.go /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/change-management.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/.github/workflows/change-management.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/README.md -------------------------------------------------------------------------------- /cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/cursor.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/go.sum -------------------------------------------------------------------------------- /models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/models.go -------------------------------------------------------------------------------- /offset_paginator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/offset_paginator.go -------------------------------------------------------------------------------- /orderby_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/orderby_test.go -------------------------------------------------------------------------------- /page_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/page_info.go -------------------------------------------------------------------------------- /page_info_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/page_info_resolver.go -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/schema.graphql -------------------------------------------------------------------------------- /tests/cursor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/tests/cursor_test.go -------------------------------------------------------------------------------- /tests/go_paging_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/tests/go_paging_suite_test.go -------------------------------------------------------------------------------- /tests/offset_paginator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/tests/offset_paginator_test.go -------------------------------------------------------------------------------- /tests/page_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfta/go-paging/HEAD/tests/page_info_test.go --------------------------------------------------------------------------------