complete_multipart_file_upload

Completes a multipart file upload.

Input fields

parts ([FilePartInput!]!)

List of information describing the file parts that were uploaded.

s3_key (String!)

S3 key of the file that was uploaded.

upload_id (ID!)

ID of the multipart upload within Amazon S3.

Return fields

complete_multipart_file_upload (Boolean!)

Completes a multipart file upload.

Argument Type Description
parts [FilePartInput!]!

List of information describing the file parts that were uploaded.

s3_key String!

S3 key of the file that was uploaded.

upload_id ID!

ID of the multipart upload within Amazon S3.

Examples

Complete Multipart File Upload

Completes a multipart file upload to Sentera's cloud storage.

Try this example in GraphiQL
mutation CompleteMultipartFileUpload{
  complete_multipart_file_upload(
  parts: [
    {
      part_number: 1
      etag: "e8a621777ce299758dadc46b3bf3b176"
    }
    {
      part_number: 2
      etag: "4da2f9e7c26d4017b0a9556dfd6f08c6"
    }
    {
      part_number: 3
      etag: "7bk2f9e7c26d4017b0a9556dfd6f02p3"
    }
  ]
  s3_key: "cyscAcmeOrg/fnnb6nz_AS_cyscAcme_CV_deve_7bbde271d_230313_103846/sre9bzg_CO_cyscAcme_CV_deve_7bbde271d_230313_103852/FeatureSets/z5rhe13_FS_cyscAcme_CV_deve_e0a089e79_230313_172119/test.geojson"
  upload_id: "kU_5uPVH_pGOud5ScQlCQs0dX2Q7gu.Pn80EB7M1EiYWhV2SthcHdGFt2ov2Awe2or1g0rUcRMU6.MrxPn4Pw4cS2HIcTnj6AJOoZCmaBZZZ6xv8r8jVCtVdZpUxYG17"
  )
}

{
  "data": {
  "complete_multipart_file_upload": true
  }
}