Hello,
So I´m implementing a program for my project on cloud and server services, but am encountering the problem that an api call made on the server to fetch all details for an epic, inlcuding the attachments returns an undefined for my attachments but when I call it on the cloudSide, it works perfectly fine. I use the following call with the following definition for attachments:
export interface Attachment {
id: string
filename: string
content: string
mimeType: string
created: string
}
.get(
`search?jql=issuetype = Epic AND project = ${projectIdOrKey}&fields=*all`
)