GraphQL/Inputs
AddRecordsInput
No description
input AddRecordsInput {
farmId: ID!
records: [RecordInput!]!
}Fields
AddRecordsInput.farmId ● ID! non-null scalar
Farm to create records on. All records in this call apply to this farm.
AddRecordsInput.records ● [RecordInput!]! non-null input
Records to process, in order. Maximum 50 per request. Purchase records must appear before any other record types for the same animal. The 50-record cap matches the internal command chunk size, ensuring correct per-record error reporting. Higher volumes will be supported once queue-based processing is introduced.
Member Of
mutation