69. Mutation: Foto löschen
Löschen Sie das ausgewählte „Foto“.
Das „Foto“ kann entweder mit „Notiz“ oder „Kommentar“ verknüpft sein. Daher ist es zwingend erforderlich, die Attribute uuid, noteUuid und commentUuid in der Antwort zu überprüfen.
mutation DeleteNotePhotoSample {
deletePhoto(input: {
uuid: "<placeholder_for_photo_uuid>"
noteUuid: "<placeholder_for_note_uuid>"
}) {
uuid
noteUuid
url
Erstellungsdatum
updatedDate
}
}mutation DeleteCommentPhotoSample {
deletePhoto(input: {
uuid: "<placeholder_for_photo_uuid>"
noteUuid: "<placeholder_for_note_uuid>"
commentUuid: "<placeholder_for_comment_uuid>"
}) {
uuid
noteUuid
commentUuid
url
Erstellungsdatum
updatedDate
}
}
Vorherige68. Mutation: Statistiken der Vektoranalysekarte aktualisieren
Nächste70. Mutation: mehrere Fotos löschen
Zuletzt aktualisiert
War das hilfreich?