OBJECT

FindingMutation

Defines Mutations related to the Findings Sub-System

link GraphQL Schema definition

  • type FindingMutation {
  • # Create Report Configuration
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • createReportConfiguration(
  • input: FindingCreateReportConfigurationInput!
  • ): FindingReportConfiguration!
  • # Delete a Report
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • deleteReport(input: FindingDeleteInput): ID
  • # Delete Report Configuration
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • deleteReportConfiguration(input: FindingDeleteInput): ID
  • # Generate Download Report Link
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • generateDownloadReportLink(
  • input: FindingDownloadReportInput
  • ): FindingDownloadReportResponse!
  • # Generate report
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • generateReport(input: FindingGenerateReportInput): FindingReport!
  • # Patch an existing Report
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • patchReport(input: FindingPatchReportInput): FindingReport!
  • # Patch Report Configuration
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • patchReportConfiguration(
  • input: FindingPatchReportConfigurationInput
  • ): FindingReportConfiguration!
  • # Update Report Configuration
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • updateReportConfiguration(
  • input: FindingUpdateReportConfigurationInput
  • ): FindingReportConfiguration!
  • }

link Require by