# 60. Mutation: Generate As-Applied-based "ZonesMap" asynchronously

Generate As-Applied-based "ZonesMap" for the "Field" asynchronously.

{% hint style="info" %}
The asynchronous approach puts a task (Generate "generateAsAppliedVectorAnalysisMap") to process and the Subscription will be received as soon as the processing is finished.
{% endhint %}

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

```graphql
mutation GenerateAsAppliedZonesMapAsync {
  generateAsAppliedVectorAnalysisMapAsync(
    input: {
      fieldUuid: "<placeholder_of_field_uuid>"
      name: "actual"
      numberOfZones: 3
      asAppliedAttribute: "actual"
      asAppliedDatasetUuid: "<placeholder_of_as_applied_dataset_uuid>"
    }
  ) {
    uuid
    fieldUuid
    statusCode
  }
}
```

{% endcode %}
