GraphQL/Objects
NoteRecord
No description
type NoteRecord implements Record {
recordId: ID!
recordType: RecordType
observationDate: Timestamp
sessionId: ID
animalId: ID!
note: String
authorId: ID
}Fields
NoteRecord.recordId ● ID! non-null scalar
NoteRecord.recordType ● RecordType enum
NoteRecord.observationDate ● Timestamp scalar
NoteRecord.sessionId ● ID scalar
NoteRecord.animalId ● ID! non-null scalar
NoteRecord.note ● String scalar
The note text
NoteRecord.authorId ● ID scalar
The ID of the author who wrote the note
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