OBJECT
ProjectEditorConfig
link GraphQL Schema definition
1 type ProjectEditorConfig { 2 3 # Allowed extensions for entity types 4 AllowedExtensions! : 5 6 # Allowed MIME types for source files 7 String!] : [ 8 9 # Maximum Project Canvas width measured in pixels 10 Int! : 11 12 # Padding around project canvas measured in pixels 13 Int! : 14 15 # Endpoint to transform embed code 16 String! : 17 18 # Font configuration 19 FontConfig! : 20 21 # Flag indicating if CCV is disabled 22 Boolean! : 23 24 # Flag indicating if lightroom is disabled 25 Boolean! : 26 27 # Lightroom endpoint 28 String! : 29 30 # Allowed size limits for entity types 31 SizeLimits! : 32 33 # Source File upload limit 34 Int! : 35 36 # Substance upload endpoint 37 String! : 38 39 # Localized translations for threeD asset types 40 ThreeDAssetTypes! : 41 42 # Mapping for threeD file extensions and threeD asset types 43 ThreeDFileExtensionToAssetTypeMap! : 44 45 }