INPUT_OBJECT

SecurityShareFindingsInput

link GraphQL Schema definition

  • input SecurityShareFindingsInput {
  • # A list of finding ID(s) that will be shared
  • findingId: [String!]!
  • # Integration Details to use for sending findings
  • integration: SecurityIntegrationInput!
  • # A human-readable message that will be shared alongside the findings
  • message: String
  • # Flag to indicate if all finding(s) should be shared as a single message using
  • # the existing Integration specified.
  • # If set to FALSE and more than 1 finding IDs are specified, each finding will be
  • # sent in its own separate message.
  • # Not all integrations methods support bulk sharing.
  • # If the integration method doesn't support bulk share, the 'findingId' must be a
  • # list with a single value.
  • # TODO: Check if this should throw an error in case int method doesnt support bulk
  • # send.
  • shareAsBulk: Boolean!
  • }