Mail Log

Query

mailLog — Returns ConnectionType of Mail

Scopes Required: see_mail_log

Sortable Fields

Fields from Mail that can be used to sort the connection items

  • sentAt
Example Query
query GetMailLog {
    mailLog {
        edges {
            node {
                id,
                externalId,
                status,
                recipient,
                sentAt
            }
        },
        pageInfo {
            hasNextPage,
            endCursor
        }
    }
}