Skip to main content

NauticalOrderLinesCsvUpload

Uploads lines for a draft order via CSV. This mutation must be sent as a multipart request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec

type NauticalOrderLinesCsvUpload {
nauticalOrder: NauticalOrder
csvFile: ImportFile
successfulLines: Int
failedLines: Int
orderErrors: [OrderError!]!
}

Fields

NauticalOrderLinesCsvUpload.nauticalOrder ● NauticalOrder object

The nautical order.

NauticalOrderLinesCsvUpload.csvFile ● ImportFile object

The csv file download link with error annotations.

NauticalOrderLinesCsvUpload.successfulLines ● Int scalar

The number of successfully uploaded lines from the csv.

NauticalOrderLinesCsvUpload.failedLines ● Int scalar

The number of lines that failed to upload.

NauticalOrderLinesCsvUpload.orderErrors ● [OrderError!]! non-null object

Returned By

nauticalOrderLinesCsvUpload mutation

Was this page helpful?