OBJECT

SecurityEntityInfo

link GraphQL Schema definition

  • type SecurityEntityInfo {
  • # Get list of current findings against this entity, if any
  • #
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # filter: Optional filter
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • # sort: Sort order for results in the connection
  • findings(
  • after: String,
  • filter: SecurityFindingsFilterInput,
  • first: Int,
  • sort: [QuerySort!]
  • ): SecurityFindingsConnection
  • }