GraphQL/Inputs
WeighAnimalInput
Per-animal entry within a weigh record. Provide weight here for Individual weights mode, or omit it and set the record-level weight for Average mode.
input WeighAnimalInput {
animalIdentity: AnimalIdentityInput!
weight: WeightInput
}Fields
WeighAnimalInput.animalIdentity ● AnimalIdentityInput! non-null input
Identity of the animal being weighed.
WeighAnimalInput.weight ● WeightInput input
Individual weight for this animal. If omitted, the record-level weight applies (Average mode).
Member Of
input