common-types.graphql 101 B

12345678
  1. interface PaginatedList {
  2. items: [Node!]!
  3. totalItems: Int!
  4. }
  5. interface Node {
  6. id: ID!
  7. }