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

37. Query: Get "SatelliteImages" in the defined interval

Get "SatelliteImages" in the defined time frame (before and after the dates).

Filters before and after belong to AWSDate.

It is possible to use only one of the filters.

query GetFieldSatelliteImagesWithDateFilter {
  getFarms(farmUuids: ["<placeholder_of_farm_uuid>"]) {
    uuid
    userUuid
    name
    fields(fieldUuids: ["<placeholder_of_field_uuid>"]) {
      uuid
      name
      createdDate
      area(unit: HECTARES)
      satelliteImages(after: "2019-06-10" before:  "2019-07-10"){
         satelliteImage{
          acquisitionDate
          provider
         }
      }
    }
  }
}

Last updated

Was this helpful?