CompanySearchResponse
Paginated response containing company search results with metadata.
Provides a structured response for company search operations including the matching companies, pagination information, and result statistics. Enables efficient browsing of large result sets with comprehensive navigation metadata.
type CompanySearchResponse {
items: [CompanySearch!]!
itemsFound: Int!
offset: Int!
page: Int!
pages: Int!
start: Int!
end: Int!
}
Fields
CompanySearchResponse.items ● [CompanySearch!]! non-null object
List of items of type CompanySearch
CompanySearchResponse.itemsFound ● Int! non-null scalar
Total number of items found
CompanySearchResponse.offset ● Int! non-null scalar
The amount of items to show per page
CompanySearchResponse.page ● Int! non-null scalar
The current page
CompanySearchResponse.pages ● Int! non-null scalar
Total amount of pages
CompanySearchResponse.start ● Int! non-null scalar
Start position of the current page
CompanySearchResponse.end ● Int! non-null scalar
End position of the current page
Returned By
companySearch query