OBJECT

EmailSequenceActivityLogEntity

link GraphQL Schema definition

  • type EmailSequenceActivityLogEntity {
  • # 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 initiated the run, or empty for runs triggered by automation.
  • actor: ClientEntity
  • # Application context the run was triggered in (e.g. browser, automation,
  • # third-party integration).
  • application: ApplicationEntity
  • # Email sequence this activity log belongs to.
  • emailSequence: EmailSequenceEntity
  • # Id of the actor.
  • actorId: ID
  • # Id of the application.
  • applicationId: ID!
  • # Id of the email sequence.
  • emailSequenceId: ID!
  • # Timestamp when the run finished. Empty for runs still in progress.
  • endTime: DateTime
  • # True when the run was a dry-run / test execution and did not produce real-side
  • # effects.
  • isTestRun: Boolean
  • # Timestamp when the run started.
  • startTime: DateTime!
  • # Outcome of the run (e.g. Ok, Error, Cancelled).
  • status: ProcessStatusEnum!
  • # Step-by-step log lines produced during the run.
  • #
  • # Arguments
  • # filter: Filter EmailSequenceActivityLogLine relations by target
  • # EmailSequenceActivityLogLine attributes.
  • # orderBy: Order EmailSequenceActivityLogLine relations by target
  • # EmailSequenceActivityLogLine attributes.
  • # includeDeleted: Returns deleted target records as well. Default
  • # is true.
  • # before: Cursor until which to take entities to result set.
  • # after: Cursor after which to start taking entities to result
  • # set.
  • # first: Number of entities to return from beginning of the
  • # result set.
  • # last: Return only the "last" number of entities from result
  • # set.
  • lines(
  • filter: EmailSequenceActivityLogLineFilterInput,
  • orderBy: [EmailSequenceActivityLogLineOrderByInput!],
  • includeDeleted: Boolean,
  • before: String,
  • after: String,
  • first: Int,
  • last: Int
  • ): EmailSequenceActivityLogLineEntityConnection
  • # Display name of the record this run enrolled (e.g. contact name). Read-only;
  • # computed by Coevera.
  • recordName: String
  • # Email address of the record this run enrolled. Read-only; computed by Coevera.
  • recordEmail: String
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }