Update invoice request mutation
This commit is contained in:
parent
b0c62d7ad9
commit
acef5b7f44
2 changed files with 2 additions and 0 deletions
|
@ -491,6 +491,7 @@ const invoiceEmailSendMutation = gql`
|
|||
...InvoiceFragment
|
||||
}
|
||||
order {
|
||||
id
|
||||
invoices {
|
||||
...InvoiceFragment
|
||||
}
|
||||
|
|
|
@ -34,6 +34,7 @@ export interface InvoiceRequest_invoiceRequest_order_invoices {
|
|||
|
||||
export interface InvoiceRequest_invoiceRequest_order {
|
||||
__typename: "Order";
|
||||
id: string;
|
||||
invoices: (InvoiceRequest_invoiceRequest_order_invoices | null)[] | null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue