OBJECT
ActivityEntity
link GraphQL Schema definition
- type ActivityEntity {
- # Arguments
- # apiNames: Api names of custom fields to retrieve. All are
- # returned if not set.
- (: [String!]): JSONString!
- # Deferred property. Will return data only if called via get_by_id. Otherwise null
- # or empty array is used.
- : Int
- # 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.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- : String
- : UUID
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- # Arguments
- # ids: Null to load all fields defined on InterfacePreview entity
- # first: [Not documented]
- (: [UUID!], : Int): [InterfaceFieldData]!
- }