CreateQuoteInput
Provides the fields and values to use when creating a quote.
input CreateQuoteInput {
status: ID
clientId: ID
personId: ID
issuerId: ID
priceListId: ID!
effectiveAt: Date
dueAt: Date
currency: CurrencyCode!
discount: Decimal
notes: String
lines: CreateQuoteLinesInput
properties: RelatedPropertiesInput
tasks: RelatedTasksInput
letters: RelatedLettersInput
contracts: RelatedContractsInput
projects: RelatedProjectsInput
copyRelations: CopyRelationsInput
}
Fields
CreateQuoteInput.status ● ID scalar
The quote's status.
CreateQuoteInput.clientId ● ID scalar
The quote's client.
CreateQuoteInput.personId ● ID scalar
The quote's client related person.
CreateQuoteInput.issuerId ● ID scalar
The quote's issuer.
CreateQuoteInput.priceListId ● ID! non-null scalar
The quote's price list.
CreateQuoteInput.effectiveAt ● Date scalar
Effective date of the quote.
CreateQuoteInput.dueAt ● Date scalar
Due date of the quote.
CreateQuoteInput.currency ● CurrencyCode! non-null enum
The quote's currency.
CreateQuoteInput.discount ● Decimal scalar
The quote's discount percentage.
CreateQuoteInput.notes ● String scalar
The quote's notes.
CreateQuoteInput.lines ● CreateQuoteLinesInput input
The quote's lines.
CreateQuoteInput.properties ● RelatedPropertiesInput input
The quote's properties relation.
CreateQuoteInput.tasks ● RelatedTasksInput input
The quote's tasks relation.
CreateQuoteInput.letters ● RelatedLettersInput input
The quote's letters relation.
CreateQuoteInput.contracts ● RelatedContractsInput input
The quote's contracts relation.
CreateQuoteInput.projects ● RelatedProjectsInput input
The quote's projects relation.
CreateQuoteInput.copyRelations ● CopyRelationsInput input
The relations that should be copied from another entity.
Member Of
createQuote mutation