cancel_analytic

Cancel an analytic.

Input fields

sentera_id (ID!)

The Sentera ID of the analytic to cancel

Return fields

application_rate (PlantingRate)

The rate at which seed was applied to the field.

Argument Type Description
unit_system UnitSystem

The unit system in which the requestor would like the application rate. Defaults to Imperial (Seeds Per Acre).

crop_type (CropType)

The type of crop to analyze.

deliverables ([Deliverable!]!)

The deliverables that have been uploaded for this analytic.

error (String)

An error message describing why an order has a FAILED status

name (String)

The human understandable name of this type of analytic.

row_spacing (RowSpacing)

The spacing between rows.

Argument Type Description
unit_system UnitSystem

The unit system in which the requestor would like the row spacing. Defaults to Imperial (Inches).

sentera_id (ID!)

The ID of the analytic.

sku (SKU)

A unique identifier for this type of analytic.

status (AnalyticStatus!)

The status of the order

Examples

Cancel Analytic

Cancel an analytic.

Try this example in GraphiQL
mutation CancelAnalytic {
  cancel_analytic(sentera_id: "7qhgc8l_AL_phgrAcme_CV_deve_5ab6a8995_221219_142757") {
  sentera_id
  status
  }
}

{
  "data": {
  "cancel_analytic": {
    "sentera_id": "7qhgc8l_AL_phgrAcme_CV_deve_5ab6a8995_221219_142757",
    "status": "CANCELED"
  }
  }
}