SubmitInvoiceInput
InputAutogenerated input type of SubmitInvoice
mutation { organization(id: $organizationId) { project(id: $projectId) { submitInvoice } } }
Example
mutation SubmitInvoice(
$organizationId: ID!
$projectId: ID!
$input: SubmitInvoiceInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
submitInvoice(input: $input) {
invoiceSubmission
errors
}
}
}
}Fields
| Field | Type | Description |
|---|---|---|
| clientMutationId | String | A unique identifier for the client performing the mutation. |
| currentDate | ISO8601Date! | — |
| id | ID! | — |
| mutationMetadata | JSON | — |
| submittedAt | ISO8601DateTime! | — |
| submittedById | ID! | — |