OBJECT

DiffData

Description

Statistic result for certain file/folder.

link GraphQL Schema definition

  • type DiffData {
  • # Absolute path of the file or folder.
  • path: String!
  • # Number of files deleted under this path.
  • filesDeleted: Long!
  • # Number of files modified under this path.
  • filesModified: Long!
  • # Number of files created under this path.
  • filesCreated: Long!
  • # Number of suspicious files added under this path.
  • suspiciousFilesAdded: Long!
  • # Mode of the inode of the file or folder at this path.
  • mode: Int!
  • # Boolean indicating whether this is a file or folder.
  • isFolder: Boolean!
  • # Number of bytes created under this path.
  • bytesCreated: Long!
  • # Number of bytes deleted under this path.
  • bytesDeleted: Long!
  • # Number of bytes modified under this path.
  • bytesModified: Long!
  • # Total size of the files under this path.
  • totalSize: Long!
  • # Modification time of the inode of the file or folder at this path.
  • lastModifiedTime: Long!
  • # Boolean indicating whether this file or folder was deleted in this snapshot.
  • isDeleted: Boolean!
  • # Additional information corresponding to the anomaly detected.
  • anomalyInfo: AnomalyInfo
  • }