OBJECT

AttachmentListType

Type definition for Attachment alerts list

link GraphQL Schema definition

  • type AttachmentListType {
  • # Attachment list, paginated by LimitOffsetPaginator
  • #
  • # Arguments
  • # limit: Number of results to return per page. Default
  • # 'default_limit': 20, and 'max_limit': 150
  • # offset: The initial index from which to return the results.
  • # Default: 0
  • # ordering: A string or comma delimited string values that
  • # indicate the default ordering when obtaining lists of objects.
  • results(limit: Int, offset: Int, ordering: String): [AttachmentType]
  • # Total count of matches elements
  • totalCount: Int
  • }