69. Muutos: Poista "Photo"

Poista valittu "Valokuva".

circle-info

Sinun tulee olla Omistaja poistaaksesi valokuvan.

"Valokuva" voi olla linkitetty joko "Muistiinpanoon" tai "Kommenttiin". Siksi vastauksessa on pakollista tarkistaa uuid-, noteUuid- ja commentUuid-attribuutit.

muunnos DeleteNotePhotoSample {
  deletePhoto(syöte: {
    uuid: "<placeholder_for_photo_uuid>"
    noteUuid: "<placeholder_for_note_uuid>"
  }) {
    uuid
    noteUuid
    url
    luontipäivä
    updatedDate
  }
}
muunnos DeleteCommentPhotoSample {
  deletePhoto(syöte: {
    uuid: "<placeholder_for_photo_uuid>"
    noteUuid: "<placeholder_for_note_uuid>"
    commentUuid: "<placeholder_for_comment_uuid>"
  }) {
    uuid
    noteUuid
    commentUuid
    url
    luontipäivä
    updatedDate
  }
}

Last updated

Was this helpful?