31. Forespørgsel: Hent alle "Notes" relateret til "Field"

Hent alle "Noter" relateret til det definerede "Mark".

VIGTIGT: Attributten "comment" ER FORÆLDET, brug i stedet "comments".

query GetAllFieldNotes {
  getFarms(farmUuids: ["d2bf8ef5-cde0-4500-b931-2edd0fb40781"]) {
    uuid
    fields(fieldUuids: ["d31240db-98e6-4cb0-b0a8-97ffe00f5e0d"]) {
      uuid
      navn
      notes {
        uuid
        centroid {
          breddegrad
          længdegrad
        }
        oprettetDato
        updatedDate
        type
        comment #FORÆLDET
        vectorAnalysisMap {
          uuid
          fieldUuid
        }
      }
    }
  }
}

Last updated

Was this helpful?