added
New GraphQL update: Retrieve Card attachments
over 7 years ago by Raphael Costa
We added support to retrieve card attachments -- we will return both attachments attached through the card and by the fields of type attachment. We added a new type called Attachment and we also added the attachments attribute inside the Card type.
Sample query:
{
card(id: ID) {
attachments {
url
createdAt
createdBy {
id
}
}
}
}
Changelog
- added:
Attachmenttype - added:
attachmentsattribute inside theCardtype
