OBJECT

CloudObjectTemplateEntity

link GraphQL Schema definition

  • type CloudObjectTemplateEntity {
  • # Tells if the entity instance is protected against delete (Entities that need to
  • # be present in the system at any time). Delete action still may fail if entity is
  • # deletable, due some other additional validations.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • application: ApplicationEntity
  • companyCloudObjectFolder: CloudObjectFolderEntity
  • creator: ClientEntity
  • # Relation to single entity instance.
  • applicationId: ID
  • # Relation to single entity instance.
  • companyCloudObjectFolderId: ID
  • # Relation to single entity instance.
  • creatorId: ID
  • # Simple text input field.
  • filename: String!
  • # Boolean value.
  • isPublic: Boolean
  • # Mime-type of the cloud object Is detected from content.
  • mimeType: String
  • # Size of the object in bytes.
  • size: Int!
  • # Field whose values are strictly defined with an enumeration of values.
  • status: CloudObjectTemplateStatusEnum
  • # Field whose values are strictly defined with an enumeration of values.
  • templateEntityName: EntityNameEnum!
  • # Field whose values are strictly defined with an enumeration of values.
  • type: CloudObjectTypeEnum!
  • # URL of the object. If URL scheme is not defined "http://" is automatically
  • # prepended to supplied URL.
  • url: String
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }