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.
  • 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
  • # User who owns the schedule. The schedule sends emails on behalf of this user.
  • owner: ClientEntity
  • # Report whose delivery is scheduled.
  • report: ReportEntity
  • # Id of the owning user.
  • ownerId: ID!
  • # Id of the scheduled report.
  • reportId: ID!
  • settings: ReportScheduleSchema
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Files attached to scheduled emails sent for this report.
  • documents: [CloudObjectRelationEntity!]
  • # Email address used to send the scheduled report (company email when configured,
  • # otherwise the owner's personal email).
  • senderEmail: String
  • # Name of the scheduled report (mirror of the linked Report.name).
  • reportName: String!
  • # Id of the user who owns the scheduled report.
  • reportOwnerId: UUID!
  • # Kind of the scheduled report (e.g. TableReport, AdvancedReport,
  • # DashboardReport).
  • reportType: ReportTypeEnum!
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }