# 2. Query: Get "Fields"

A simple example of a "Fields" query that retrieves the area in hectares.

{% hint style="info" %}
"Field" area unit could be one of the following: `ACRES` or `HECTARES` or `SQUARE_METERS`.
{% endhint %}

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

```graphql
query GetFieldInHectares {
  getFarms (farmUuids: ["<placeholder_of_farm_uuid>"]){
    uuid
    userUuid
    name
    fields {
      uuid
      name
      area(unit: HECTARES)
    }
  }
}
```

{% endcode %}

{% hint style="info" %}
A more detailed example, including pagination and filtering capabilities, is described in [43: Query Get "Fields"](https://docs.geopard.tech/geopard-tutorials/api-docs/requests-overview/43.-query-get-fields).
{% endhint %}
