# 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](https://docs.aws.amazon.com/appsync/latest/devguide/scalars.html).&#x20;

It is possible to use only one of the filters.

{% code overflow="wrap" lineNumbers="true" %}

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

{% endcode %}
