OBJECT

CaptureList

Contains a list of current available captures

link GraphQL Schema definition

  • type CaptureList {
  • # List of ongoing captures
  • #
  • # Arguments
  • # after: Returns the items in the list that come after the
  • # specified cursor.
  • # first: Returns the first n items from the list.
  • # before: Returns the items in the list that come before the
  • # specified cursor.
  • # last: Returns the last n items from the list.
  • ongoing(after: String, first: Int, before: String, last: Int): CaptureFileInfoConnection!
  • # List of completed captures
  • #
  • # Arguments
  • # after: Returns the items in the list that come after the
  • # specified cursor.
  • # first: Returns the first n items from the list.
  • # before: Returns the items in the list that come before the
  • # specified cursor.
  • # last: Returns the last n items from the list.
  • completed(after: String, first: Int, before: String, last: Int): CaptureFileInfoConnection!
  • }