CreateInvoiceImportRunsPayload
ObjectAutogenerated return type of CreateInvoiceImportRuns.
mutation { organization(id: $organizationId) { createInvoiceImportRuns } }
Example
mutation CreateInvoiceImportRuns(
$organizationId: ID!
$input: CreateInvoiceImportRunsInput!
) {
organization(id: $organizationId) {
createInvoiceImportRuns(input: $input) {
errors
}
}
}