For the complete documentation index, see llms.txt. This page is also available as Markdown.

69. Művelet: "Fotó" törlése

Törölje a kiválasztott „Fényképet”.

A fénykép törléséhez Önnek a tulajdonosnak kell lennie.

A „Fénykép” vagy „Megjegyzéshez”, vagy „Kommenthez” lehet kapcsolva. Ezért kötelező ellenőrizni a response-ban a uuid, noteUuid és commentUuid attribútumokat.

mutation DeleteNotePhotoSample {
  deletePhoto(input: {
    uuid: "<placeholder_for_photo_uuid>"
    noteUuid: "<placeholder_for_note_uuid>"
  }) {
    uuid
    noteUuid
    url
    létrehozásDátuma
    updatedDate
  }
}
mutation DeleteCommentPhotoSample {
  deletePhoto(input: {
    uuid: "<placeholder_for_photo_uuid>"
    noteUuid: "<placeholder_for_note_uuid>"
    commentUuid: "<placeholder_for_comment_uuid>"
  }) {
    uuid
    noteUuid
    commentUuid
    url
    létrehozásDátuma
    updatedDate
  }
}

Utoljára frissítve:

Hasznos volt ez?