GraphQL/Objects
FeedOnOffer
Record for persisting feed on offer for a given field
type FeedOnOffer {
id: String
value: Float
farmId: String
fieldId: String
time: Timestamp
source: SourceType
}Fields
FeedOnOffer.id ● String scalar
Unique identifier of the feed on offer record
FeedOnOffer.value ● Float scalar
Feed on offer for the given field. Value is recorded in kg dry matter per hectare unit (kg DM /ha)
FeedOnOffer.farmId ● String scalar
Farm identifier to associate the record with
FeedOnOffer.fieldId ● String scalar
AgriWebb field identifier to associate the record with. You can retrieve a list of field ids by querying fields
FeedOnOffer.time ● Timestamp scalar
Time the feed on offer was recorded. Format will be UNIX epoch time with milliseconds. (e.g. 1564508046433)
FeedOnOffer.source ● SourceType enum
Source of the feed on offer record. Possible values are: IOT, Manual, LivestockEntry, LivestockExit
Returned By
query
Member Of
object