GraphQL/Inputs
AddPastureGrowthRateInput
Only one record per field per day is saved. If multiple records for the same day are passed in, only the latest record will be saved.
input AddPastureGrowthRateInput {
value: Float!
farmId: String!
fieldId: String!
time: Timestamp!
}
Fields
AddPastureGrowthRateInput
.value
● Float!
non-null scalar
Pasture growth rate for the given field. Should be provided in kg dry matter per hectare per day unit (kg DM /ha/day)
AddPastureGrowthRateInput
.farmId
● String!
non-null scalar
Farm identifier to associate the record with
AddPastureGrowthRateInput
.fieldId
● String!
non-null scalar
AgriWebb field identifier to associate the record with. You can retrieve a list of field ids by querying fields
AddPastureGrowthRateInput
.time
● Timestamp!
non-null scalar
Time the pasture growth rate was recorded. Format will be UNIX epoch time with milliseconds. (e.g. 1564508046433)
Member Of
mutation