GraphQL OBJECT

ProductFileSearchResultItem

Product file that matches the search parameters.

link Definition

  • type ProductFileSearchResultItem {
  • # The size of the product file in bytes.
  • bytes: Long
  • # The md5 checksum of the product file.
  • checksum: String
  • # Client account that is assigned to the product file, if any.
  • client: Client
  • # User who created the product file.
  • createdBy: UserAccount
  • # Date and time when the product file was created.
  • creationDate: DateTime
  • # Link to product file download.
  • downloadLink: String
  • # Name of product file.
  • fileName: String
  • # Status of product file.
  • fileStatus: FileStatus
  • # Unique ID of the product file.
  • id: Int
  • # User who last edited the product file.
  • lastModifiedBy: UserAccount
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime
  • # Date and time when the file was successfully uploaded last time.
  • lastSuccessfulUploadDate: DateTime
  • # List of products in which the product file is used.
  • referringProducts: [Product]
  • }