tags: graphql

Design Patterns

  1. Sorting options
enum OrderBy {
	asc
	desc
}
  1. Pagination
type Pagination {
	limit: Int
	offset: Int
}