OBJECT

ExtensionConnection

A paginated list of extensions, and its metadata.

link GraphQL Schema definition

1type ExtensionConnection {
2
3# The list of extensions in this page.
4edges: [ExtensionEdge!]!
5
6# Information about this page of extensions.
7pageInfo: PageInfo!
8
9# The total number of extensions in the larger collection.
10totalCount: Int!
11
12}