No description
type Email implements Node {
nodeId: ID!
id: String!
accordId: String
receiverId: String
receiverEmail: String!
senderId: String
templateName: String!
templateData: JSON
status: StatusUpdate
createdAt: Datetime!
updatedAt: Datetime!
deletedAt: Datetime
workspaceId: String
notificationId: String
emailType: String
receiverAccount: Account
receiverProfile: Profile
senderAccount: Account
senderProfile: Profile
accord: Accord
}
Fields
Email.nodeId ● ID! non-null scalar
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
Email.id ● String! non-null scalar
Email.accordId ● String scalar
Email.receiverId ● String scalar
Email.receiverEmail ● String! non-null scalar
Email.senderId ● String scalar
Email.templateName ● String! non-null scalar
Email.templateData ● JSON scalar
Email.status ● StatusUpdate enum
Email.createdAt ● Datetime! non-null scalar
Email.updatedAt ● Datetime! non-null scalar
Email.deletedAt ● Datetime scalar
Email.workspaceId ● String scalar
Email.notificationId ● String scalar
Email.emailType ● String scalar
Email.receiverAccount ● Account object
Reads a single Account that is related to this Email.
Email.receiverProfile ● Profile object
Reads a single Profile that is related to this Email.
Email.senderAccount ● Account object
Reads a single Account that is related to this Email.
Email.senderProfile ● Profile object
Reads a single Profile that is related to this Email.
Email.accord ● Accord object
Reads a single Accord that is related to this Email.
Interfaces
Node interface
An object with a globally unique ID.
Returned By
email query ● emailByNodeId query ● emails query
Member Of
Accord object ● Account object ● CreateEmailPayload object ● DeleteEmailPayload object ● EmailsConnection object ● EmailsEdge object ● Profile object ● RecoverEmailPayload object ● UpdateEmailPayload object