OBJECT

Baseline

The system's baseline asset map to alert on

link GraphQL Schema definition

  • type Baseline {
  • # is baseline defined
  • isPresent: Boolean!
  • # Time of baseline creation
  • timestamp: Time!
  • # Baseline links from this time onwards
  • from: Time!
  • # Baseline links until this time
  • to: Time!
  • # Baseline links
  • #
  • # Arguments
  • # filter: [Not documented]
  • # search: [Not documented]
  • # sort: [Not documented]
  • # slowCount: When requesting totalCount set this to true to wait
  • # for count query to complete.
  • # Otherwise, countTimeout is used to limit the execution time, resulting in -1
  • # when limit is reached.
  • # countTimeout: Time (in milliseconds) to wait for count query to
  • # return.
  • # Only applicable when slowCount is not set.
  • # 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.
  • links(
  • filter: LinkExpressionsParams,
  • search: String,
  • sort: [LinkSortParams!],
  • slowCount: Boolean,
  • countTimeout: Int,
  • after: String,
  • first: Int,
  • before: String,
  • last: Int
  • ): LinkConnection!
  • }