GraphQL/Objects
WeaningRecord
No description
type WeaningRecord implements Record {
recordId: ID!
recordType: RecordType
observationDate: Timestamp
sessionId: ID
animalId: ID!
preWeaningGroup: String
method: WeaningMethod
}Fields
WeaningRecord.recordId ● ID! non-null scalar
WeaningRecord.recordType ● RecordType enum
WeaningRecord.observationDate ● Timestamp scalar
WeaningRecord.sessionId ● ID scalar
WeaningRecord.animalId ● ID! non-null scalar
WeaningRecord.preWeaningGroup ● String scalar
The group the animal was in prior to weaning
WeaningRecord.method ● WeaningMethod enum
The method used to wean the animal
Interfaces
Record interface
Polymorphic parent type of various records regularly recorded against an animal. There is generally a 0-n relationship between these records and the individual, ie: the animal may have multiple records of the same type recorded against it over time