SearchResultPageInfo
Provides navigation for the query response.
type SearchResultPageInfo = {
__typename?: 'SearchResultPageInfo'; /** The specific page to return. */
current_page?: Maybe<Scalars['Int']['output']>; /** The maximum number of items to return per page of results. */
page_size?: Maybe<Scalars['Int']['output']>; /** The total number of pages in the response. */
total_pages?: Maybe<Scalars['Int']['output']>;
};