OBJECT
ContentCatalogConnection
link GraphQL Schema definition
- type ContentCatalogConnection {
- # The total number of 'ContentCatalog' records available given the constraints of
- # the query.
- # An important note: This number represents the total number of records accross
- # individual requests.
- # i.e. if totalCount were 100 and the 'ContentCatalog' query requested only 10
- # results via the 'first' argument in the query,
- # then you could calculate that you would need to make 10 requests to get all 100
- # records available.
- Int! :
- # A list of 'ContentCatalog' entities as well as a cursor field that can be used
- # to fetch subsequent pages.
- ContentCatalogEdge] : [
- # List of 'ContentCatalog' entities. Data for the most common Content use cases
- # are found here.
- ContentCatalog] : [
- # Information needed to fetch subsequent pages.
- PageInfo! :
- }