69. Mutasyon: "Photo" sil

Seçili "Fotoğraf"ı silin.

circle-info

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
  }
}

Last updated

Was this helpful?