INPUT_OBJECT

CreateEmailMailboxRelationInput

link GraphQL Schema definition

  • input CreateEmailMailboxRelationInput {
  • # Optional client-supplied identifier passed on a mutation input and echoed back
  • # unchanged on its payload, so a client can correlate the response with its
  • # request (Relay convention).
  • clientMutationId: String
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Field whose values are strictly defined with an enumeration of values.
  • direction: EmailDirectionEnum
  • # Creation time.
  • emailCreated: DateTime
  • # Id of the email that belongs to the mailbox.
  • emailId: ID!
  • # Denormalized flag indicating that the related email has been deleted from this
  • # mailbox; such relations are hidden from the inbox view.
  • emailIsDeleted: Boolean
  • # Error code for the email in this mailbox; 0 means the email was processed
  • # without error.
  • errorCode: Int
  • # Field whose values are strictly defined with an enumeration of values.
  • eventTypes: EmailEventTypeFlagEnum
  • # Whether the email is scheduled to be sent at a future time and has not been sent
  • # yet.
  • isScheduled: Boolean
  • # Id of the mailbox (connected email account) the email belongs to.
  • mailboxId: ID!
  • # Time when the email was sent, or its scheduled send time if it has not been sent
  • # yet.
  • sentOrScheduledAt: DateTime
  • # Id of the email thread, or the id of the email itself when it does not belong to
  • # a thread.
  • threadOrId: ID
  • # Field whose values are strictly defined with an enumeration of values.
  • type: EmailTypeEnum
  • }

link Require by