GraphQL/Inputs
AddTotalStandingDryMatterInput
Records a feed on offer record from a Total Standing Dry Matter input. To do this a farmer entered utilisation and wastage are deducted from the total standing dry matter value to get a usable feed on offer value Only one record per field per day is saved. If multiple records for the same day is passed in, only the latest record will be saved.
input AddTotalStandingDryMatterInput {
value: Float!
farmId: String!
fieldId: String!
time: Timestamp!
}
Fields
AddTotalStandingDryMatterInput
.value
● Float!
non-null scalar
Total standing dry matter for the given field. Should be provided in kg dry matter per hectare unit (kg DM /ha)
AddTotalStandingDryMatterInput
.farmId
● String!
non-null scalar
Farm identifier to associate the record with
AddTotalStandingDryMatterInput
.fieldId
● String!
non-null scalar
AgriWebb field identifier to associate the record with. You can retrieve a list of field ids by querying fields
AddTotalStandingDryMatterInput
.time
● Timestamp!
non-null scalar
Time the total standing dry matter was recorded. Format will be UNIX epoch time with milliseconds. (e.g. 1564508046433)
Member Of
mutation