71. Mutasyon: "Notes" ile bir zip arşivi oluştur

Seçilen "VectorAnalysisMap", "SoilDataset" veya "Field" varlığına bağlı "Notlar" ile bir zip arşivi oluşturun.

circle-info

Arşiv *.shp, *.shx, *.prj, *.dbf dosyalarından oluşur.

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

Çalıştırmadan sonra, GraphQL sorgu kullanıcısı "archiveUrl" özelliğinden bir zip arşivi ve "zipped" ile "ignored" satırlarıyla dışa aktarılmış içeriği alabilir.

Last updated

Was this helpful?