OBJECT

FindingEntityInfo

link GraphQL Schema definition

  • type FindingEntityInfo {
  • # 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
  • # Note: When this filter is specified in the entityId and entityName inputs are
  • # ignored as the findings will be filtered
  • # based on the entity for which they are queried.
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • # sort: Sort order for results in the connection
  • findingsQuery(
  • after: String,
  • filter: FindingFilterInput,
  • first: Int,
  • sort: [QuerySort!]
  • ): FindingConnection
  • }