Forum Discussion
AishwaryaEA
2 months agoHelper
peterluThanks for answering. Actually when I am using conversationLastPostTime filter, it is showing up messages where I am adding attachment incrementally but it is not showing up the actual attachment related details. For e.g. I added a attachment in the reply section of a message on 2024-10-23. On running below mentioned query, in response, parent message id where we have added attachment in reply is showing up in incremental data but attachment details are still missing. Please let me know if we can modify our query to get the desired result.
query Attachments {
messages(
constraints: {conversationLastPostTime: {gte: "2024-10-21T01:47:41.349-08:00", lte: "2025-10-29T13:23:23.074-07:00"}, depth: {eq: 0}}
last: 1000
) {
edges {
node {
id
attachments {
edges {
node {
id
filename
url
}
}
}
}
}
}
}
"node": {
"id": "message:abc123",
"attachments": {
"edges": []
}
}
Regarding pagination, we have already started working on that, just like how you have suggested. Thanks for the help there.🙂
Related Content
- 2 months ago
- 12 years ago
- 2 years ago
- 4 years ago