OBJECT

SnapshotFileDelta

Description

Snapshot file or directory and its delta information.

link GraphQL Schema definition

  • type SnapshotFileDelta {
  • # Information about the file or directory such as the path and last modified date.
  • file: SnapshotFile!
  • # This field is empty for directories. It contains the delta information of the
  • # file.
  • selfDeltas: [SnapshotDelta!]!
  • # This field is non-empty for directories only. It contains the consolidated delta
  • # information of the subdirectories.
  • childrenDeltas: [SnapshotDelta!]!
  • # Quarantine information for a path in the previous snapshot.
  • previousSnapshotQuarantineInfo: QuarantineInfo
  • }