CategoryResponse
Paginated response containing category search results.
Provides a structured response for category queries with pagination support. Includes the list of categories, total count, and pagination metadata for efficient data navigation.
type CategoryResponse {
items: [Category!]!
itemsFound: Int!
offset: Int!
page: Int!
pages: Int!
start: Int!
end: Int!
}
Fields
CategoryResponse.items
● [Category!]!
non-null object
List of items of type Category
CategoryResponse.itemsFound
● Int!
non-null scalar
Total number of items found
CategoryResponse.offset
● Int!
non-null scalar
The amount of items to show per page
CategoryResponse.page
● Int!
non-null scalar
The current page
CategoryResponse.pages
● Int!
non-null scalar
Total amount of pages
CategoryResponse.start
● Int!
non-null scalar
Start position of the current page
CategoryResponse.end
● Int!
non-null scalar
End position of the current page
Returned By
categories
query