GraphQL/Objects
FeedRecord
No description
type FeedRecord implements Record {
recordId: ID!
recordType: RecordType
observationDate: Timestamp
sessionId: ID
animalId: ID!
feeds: [FeedDetails]
}
Fields
FeedRecord
.recordId
● ID!
non-null scalar
FeedRecord
.recordType
● RecordType
enum
FeedRecord
.observationDate
● Timestamp
scalar
FeedRecord
.sessionId
● ID
scalar
FeedRecord
.animalId
● ID!
non-null scalar
FeedRecord
.feeds
● [FeedDetails]
list object
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