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