Mutations
deleteAsset
Deletes an asset.
MUTATION
deleteAsset(input: DeleteFileAttachmentInput!): DeleteAssetArguments
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 an asset.
deleteAsset(input: DeleteFileAttachmentInput!): DeleteAssetmutation DeleteAsset($input: DeleteFileAttachmentInput!) {
deleteAsset(input: $input) {
entityId
fileAttachmentId
}
}{
"input": {
"entityId": "id",
"fileAttachmentId": "id"
}
}{
"data": {
"deleteAsset": {
"entityId": 1,
"fileAttachmentId": 1
}
}
}Was this page helpful?
mutation DeleteAsset($input: DeleteFileAttachmentInput!) {
deleteAsset(input: $input) {
entityId
fileAttachmentId
}
}{
"input": {
"entityId": "id",
"fileAttachmentId": "id"
}
}{
"data": {
"deleteAsset": {
"entityId": 1,
"fileAttachmentId": 1
}
}
}Suggestions