CustomImage
Last edit: Oct 26, 2022
No description
type CustomImage {
created_at: JSONDate!
deleted_at: JSONDate
file_url: String
id: ID!
name: String
property_id: ID
updated_at: JSONDate!
uploader_id: ID
url(version: String): String
}
Fields
created_at
(JSONDate
)
timestamp of when the record was created, automatically generated by the system
deleted_at
(JSONDate
)
timestamp of when the record was soft delete, populated by delete action. It
is also possible to manually set it via update. To undelete change it back to
empty value, but please note that associated records would need to be manually
undeleted as well.
file_url
(String
)
id
(ID
)
name
(String
)
property_id
(ID
)
updated_at
(JSONDate
)
timestamp of when the record was updated, automatically generated by the system
uploader_id
(ID
)
url
(String
)
image url; ex: thumb: url(version: "thumb")
-
version
(String
)