OBJECT
CustomImage
# GraphQL Schema definition
1 type CustomImage { 2 # timestamp of when the record was created, automatically generated by the system 3 JSONDate! : 4 # timestamp of when the record was soft delete, populated by delete action. It is 5 # also possible to manually set it via update. To undelete change it back to empty 6 # value, but please note that associated records would need to be manually 7 # undeleted as well. 8 JSONDate : 9 ID! : 10 String : 11 ID : 12 # timestamp of when the record was updated, automatically generated by the system 13 JSONDate! : 14 ID : 15 # image url; ex: thumb: url(version: "thumb") 16 # 17 # Arguments 18 # version: [Not documented] 19 String): String ( : 20 }