I am looking to search for all emails recently sent to or from a card.
The inbox_emails query can be used to display the details of an email, but doesn’t allow me to search for an email.
The closest thing I could find was to use the allCards query and filter by the “updated_at” field, but this pertains to the card itself and receiving an email doesn’t update this field.
{
allCards(
pipeId: 111
filter: {field: "updated_at", operator: gte, value: "2024-02-01T00:00:00Z"}
) {
edges {
node {
inbox_emails {
id
subject
}
}
}
}
}
Is there a query or field that would allow me to find recently sent or received emails?