createAuctionLotInvoice

This mutation allows the creation of invoices for a given lot. This can be called by an organization admin.

Arguments

NameTypeDescriptionRequired
orgIDUUID1The organization ID.Yes
lotIDUUID1The lot ID.Yes

Returns

NameTypeDescription
InvoiceDetailsObjectContains all the information from InvoiceDetails.

Mutation Schema

type mutation{

  createAuctionLotInvoice(orgID: UUID1! lotID: UUID1!): InvoiceDetails!

}