31. Fråga: Hämta alla "Notes" relaterade till "Field"

Hämta alla "Anteckningar" som är relaterade till det definierade "Fältet".

VIKTIGT: Attributet "comment" ÄR FÖRÅLDRAT, använd istället "comments".

query GetAllFieldNotes {
  getFarms(farmUuids: ["d2bf8ef5-cde0-4500-b931-2edd0fb40781"]) {
    uuid
    fields(fieldUuids: ["d31240db-98e6-4cb0-b0a8-97ffe00f5e0d"]) {
      uuid
      namn
      notes {
        uuid
        centroid {
          latitud
          longitud
        }
        skapadDatum
        updatedDate
        typ
        comment #FÖRÅLDRAT
        vectorAnalysisMap {
          uuid
          fieldUuid
        }
      }
    }
  }
}

Last updated

Was this helpful?