59. Forespørgsel: Hent "AsAppliedDatasets"

Hent As-Planted eller As-Applied datasæt

Hent alle "AsAppliedDatasets" for den valgte "Field". Datasæt kan hentes ved hjælp af generiske GraphQL-forespørgsler som getFarms og getFields fra det tilknyttede "Field".

circle-exclamation
query GetAsAppliedDatasetsViaGetFarms {
  getFarms (farmUuids: ["<placeholder_of_farm_uuid>"]) {
    uuid 
    navn
    fields (fieldUuids: ["<placeholder_of_field_uuid>"]) {
      uuid
      asAppliedDatasets {
        uuid 
        navn
        number #samlet antal geofunktioner 
        geometryType 
        totalCoveredArea(unit: HECTARES) 
        fieldCoverage 
        fieldCoveredArea(unit: HECTARES)
  
        attributes
        
        fullAttributes { #komplette detaljer pr. attribut
          name #link til statistik >> attribut
          transliteratedName
          fullName #korrekt menneskeligt læsbart navn
          unit#måleenheder
        }

        usedMachines { #brugte maskiner
          id
          serial
          operatorId
        } 

        createdDate #enhed oprettet dato og tid i GeoPard
        updatedDate #sidste opdateringsdato og -tid
        operationId
        operationType
        operationFileDate #filens oprettelsesdato og -tid kommer fra metainformationen 
        operationStartDate #operationens starttidspunkt kommer fra metainformationen
        
        statistics { #statistikfordeling for hver attribut
          attribute
          min
          max
          avg
          mdn
          var
          std
          sum
        }

        geoMaps {
          url
          kortNavn
          hexColorCodes
          classes
        }
      }
    }
  } 
}

Last updated

Was this helpful?