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

71. Мутація: Згенерувати zip-архів із "Notes"

Створити zip-архів із "Notes", пов'язаними з вибраним "VectorAnalysisMap", "SoilDataset" або сутністю "Field".

Архів складається з файлів *.shp, *.shx, *.prj, *.dbf.

mutation ExportNotesData {
  exportData(input: {
    notes: [
      { 
        uuid: "<placeholder_for_vectoranalysismap_uuid>", 
        fieldUuid: "<placeholder_for_field_uuid>", 
        entity: VectorAnalysisMap 
      }    
    ]
  }) {
    archiveUrl
    zippedNotes {
      uuid
      fieldUuid
      status
    }
    ignoredNotes {
      uuid
      fieldUuid
      status
    }
  }
}

Після виконання користувач GraphQL-запиту може отримати zip-архів за властивістю "archiveUrl" та експортований вміст у рядках "zipped" та "ignored".

Останнє оновлення

Це було корисно?