GraphQL/Objects
FertilityRecord
No description
type FertilityRecord implements Record {
recordId: ID!
recordType: RecordType
observationDate: Timestamp
sessionId: ID
animalId: ID!
fertilityStatus: FertilityStatus
}Fields
FertilityRecord.recordId ● ID! non-null scalar
FertilityRecord.recordType ● RecordType enum
FertilityRecord.observationDate ● Timestamp scalar
FertilityRecord.sessionId ● ID scalar
FertilityRecord.animalId ● ID! non-null scalar
FertilityRecord.fertilityStatus ● FertilityStatus enum
The fertility status determined for this animal in this record
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