30. म्यूटेशन: कई "Notes" हटाएँ

चयनित बहु "नोट्स" को हटाएँ।

  • उपयोगकर्ता द्वारा बनाया गया "नोट" हटाया जा सकता है।

  • महत्त्वपूर्ण: हटाने के लिए "नोट्स" की अधिकतम संख्या 25 है।

  • महत्त्वपूर्ण: प्रतिक्रिया में केवल कुंजी (uuid और fieldUuid) उपलब्ध हैं।

mutation DeleteNotes {
  deleteNotes(input:{
    notes: [{
      uuid: "<placeholder_for_note_uuid>",
      fieldUuid: "<placeholder_for_field_uuid>"
    }, {
       uuid: "<placeholder_for_note_uuid>",
      fieldUuid: "<placeholder_for_field_uuid>"
    }, {
      uuid: "<placeholder_for_note_uuid>",
      fieldUuid: "<placeholder_for_field_uuid>"
    }]
  }) {
    uuid
    fieldUuid
  }
}

Last updated

Was this helpful?