OBJECT
ReportScheduleEntity
link GraphQL Schema definition
- type ReportScheduleEntity {
- # 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!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # User who owns the schedule. The schedule sends emails on behalf of this user.
- : ClientEntity
- # Report whose delivery is scheduled.
- : ReportEntity
- # Id of the owning user.
- : ID!
- # Id of the scheduled report.
- : ID!
- : ReportScheduleSchema
- # Revision when entity was lastly changed.
- : Int
- # Files attached to scheduled emails sent for this report.
- : [CloudObjectRelationEntity!]
- # Email address used to send the scheduled report (company email when configured,
- # otherwise the owner's personal email).
- : String
- # Name of the scheduled report (mirror of the linked Report.name).
- : String!
- # Id of the user who owns the scheduled report.
- : UUID!
- # Kind of the scheduled report (e.g. TableReport, AdvancedReport,
- # DashboardReport).
- : ReportTypeEnum!
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }