Mutations
deleteFileAttachment
Deletes a file attachment.
MUTATION
deleteFileAttachment(input: DeleteFileAttachmentInput!): DeleteFileAttachmentArguments
input
required
Returns
entityId
Int
fileAttachmentId
Int
Mutation
Variables
Response
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Deletes a file attachment.
deleteFileAttachment(input: DeleteFileAttachmentInput!): DeleteFileAttachmentmutation DeleteFileAttachment($input: DeleteFileAttachmentInput!) {
deleteFileAttachment(input: $input) {
entityId
fileAttachmentId
}
}{
"input": {
"entityId": "id",
"fileAttachmentId": "id"
}
}{
"data": {
"deleteFileAttachment": {
"entityId": 1,
"fileAttachmentId": 1
}
}
}Was this page helpful?
mutation DeleteFileAttachment($input: DeleteFileAttachmentInput!) {
deleteFileAttachment(input: $input) {
entityId
fileAttachmentId
}
}{
"input": {
"entityId": "id",
"fileAttachmentId": "id"
}
}{
"data": {
"deleteFileAttachment": {
"entityId": 1,
"fileAttachmentId": 1
}
}
}Suggestions