GraphQL/Objects
PastureGrowthRate
Record for persisting pasture growth rate for a given field
type PastureGrowthRate {
id: String
value: Float
farmId: String
fieldId: String
time: Timestamp
}Fields
PastureGrowthRate.id ● String scalar
Unique identifier of the pasture growth rate record
PastureGrowthRate.value ● Float scalar
Pasture growth rate for the given field. Value is recorded in kg dry matter per hectare per day unit (kg DM /ha/day)
PastureGrowthRate.farmId ● String scalar
Farm identifier to associate the record with
PastureGrowthRate.fieldId ● String scalar
AgriWebb field identifier to associate the record with. You can retrieve a list of field ids by querying fields
PastureGrowthRate.time ● Timestamp scalar
Time the pasture growth rate was recorded. Format will be UNIX epoch time with milliseconds. (e.g. 1564508046433)
Returned By
query
Member Of
object