GraphQL/Objects
WormTestRecord
No description
type WormTestRecord implements Record {
recordId: ID!
recordType: RecordType
observationDate: Timestamp
sessionId: ID
animalId: ID!
locationIds: [ID]
averages: WormTestAverages
}Fields
WormTestRecord.recordId ● ID! non-null scalar
WormTestRecord.recordType ● RecordType enum
WormTestRecord.observationDate ● Timestamp scalar
WormTestRecord.sessionId ● ID scalar
WormTestRecord.animalId ● ID! non-null scalar
WormTestRecord.locationIds ● [ID] list scalar
IDs of the locations associated with this worm test
WormTestRecord.averages ● WormTestAverages object
Average worm counts from the test samples
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