OBJECT

FileUploadProperty

link GraphQL Schema definition

  • type FileUploadProperty {
  • # Maximum number of files that can be uploaded to this field.
  • maxFiles: Int!
  • # Maximum size per file, in MB.
  • maxFileSize: Int!
  • # Allowed file-type categories (e.g. image, document); used when file-type
  • # restriction is enabled.
  • fileTypes: [FileTypeEnum!]!
  • # Additional allowed file extensions when the Custom file type is selected (e.g.
  • # ".dwg").
  • customFileExtensions: [String!]!
  • # If true, uploads are restricted to the configured file types and custom
  • # extensions; otherwise any file type is accepted.
  • fileTypesEnabled: Boolean!
  • }