OBJECT

StrainInfo

Description

Information about list of strains identified.

link GraphQL Schema definition

  • type StrainInfo {
  • # Name of the strain detected.
  • strainId: String!
  • # Total number of files affected by the above strain.
  • totalAffectedFiles: Long!
  • # Total number of ransomware notes corresponding to the
  • # above strain.
  • totalRansomwareNotes: Long!
  • # A sample of filepaths that are affected by the strain.
  • sampleAffectedFiles: [String!]!
  • # A sample of filepaths that are ransomware notes.
  • sampleRansomwareNotes: [String!]!
  • # Additional information on the affected files.
  • sampleAffectedFilesInfo: [SuspiciousFileInfo!]!
  • # Additional information on the ransomware note files.
  • sampleRansomwareNoteFilesInfo: [SuspiciousFileInfo!]!
  • }