75. Mutation: Generate "EquationMap" asynchronously

Generate "ZonesMap" for the "Field" asynchronously.

The asynchronous approach puts a task (Generate "generateEquationMap") to process and the Subscription will be received as soon as the processing is finished.

mutation GenerateEquationMap {
  generateEquationMapAsync(input: {
    fieldUuid: "<placeholder_of_field_uuid>"
    gridPixelSizeX: 
    gridPixelSizeY: 
    type: FERTILIZING
    equationAsText:"""calculated = yield_vol/prod + 0.5
if calculated >= 9:
    result = 35
elif calculated >=5  and calculated < 9:
    result = 25
else:
    result = 15
    """
    equationResultVariable: "result"
    dataVariables: [{
      variable: "yield_vol"
      yieldDatasetUuid: "<placeholder_of_yielddataset_uuid>"
      yieldAttribute: "Yld_Vol_We"
    }, {
      variable: "prod"
      yieldDatasetUuid: "<placeholder_of_yielddataset_uuid>"
      yieldAttribute: "Prod_ac_h_"
    }]
  }) {
    uuid
    fieldUuid
    statusCode
  }
}

Last updated

Powered by GeoPard Agriculture - Automated precisionAg platform