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.
1{2 allCards(3 pipeId: 1114 filter: {field: "updated_at", operator: gte, value: "2024-02-01T00:00:00Z"}5 ) {6 edges {7 node {8 inbox_emails {9 id10 subject11 }12 }13 }14 }15}16
Is there a query or field that would allow me to find recently sent or received emails?