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

69. Mutasyon: "Photo" Sil

Seçili "Fotoğraf"ı silin.

Bir fotoğrafı silmek için Sahip olmalısınız.

"Fotoğraf" ya "Not"a ya da "Yorum"a bağlı olabilir. Bu nedenle yanıttaki uuid, noteUuid ve commentUuid özniteliklerini kontrol etmek zorunludur.

mutation DeleteNotePhotoSample {
  deletePhoto(input: {
    uuid: "<placeholder_for_photo_uuid>"
    noteUuid: "<placeholder_for_note_uuid>"
  }) {
    uuid
    noteUuid
    url
    oluşturulmaTarihi
    updatedDate
  }
}
mutation DeleteCommentPhotoSample {
  deletePhoto(input: {
    uuid: "<placeholder_for_photo_uuid>"
    noteUuid: "<placeholder_for_note_uuid>"
    commentUuid: "<placeholder_for_comment_uuid>"
  }) {
    uuid
    noteUuid
    commentUuid
    url
    oluşturulmaTarihi
    updatedDate
  }
}

Son güncelleme

Bu yararlı oldu mu?