69. Mutatie: Șterge "Photo"

Șterge „Fotografia” selectată.

circle-info

Trebuie să fii Proprietarul pentru a șterge o fotografie.

„Fotografia” poate fi legată fie de „Notă”, fie de „Comentariu”. Prin urmare, este obligatoriu să verificați atributele uuid, noteUuid și commentUuid din răspuns.

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

Last updated

Was this helpful?