GraphQL/Inputs
AddFeedOnOfferTargetInput
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 AddFeedOnOfferTargetInput {
value: Float!
farmId: String!
fieldId: String!
time: Timestamp!
}Fields
AddFeedOnOfferTargetInput.value ● Float! non-null scalar
Feed on offer target for the given field. Should be provided in kg dry matter per hectare unit (kg DM /ha)
AddFeedOnOfferTargetInput.farmId ● String! non-null scalar
Farm identifier to associate the record with
AddFeedOnOfferTargetInput.fieldId ● String! non-null scalar
AgriWebb field identifier to associate the record with. You can retrieve a list of field ids by querying fields
AddFeedOnOfferTargetInput.time ● Timestamp! non-null scalar
Time the feed on offer was recorded. Format will be UNIX epoch time with milliseconds. (e.g. 1564508046433)
Member Of
mutation