createAuctionLotInvoice

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

Arguments

Name

Type

Description

Required

orgID

UUID1

The organization ID.

Yes

lotID

UUID1

The lot ID.

Yes

Returns

Name

Type

Description

InvoiceDetails

Object

Contains all the information from InvoiceDetails.

Mutation Schema

type mutation{

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

}