multipart_file_upload_parts

Retrieves a list of the parts that have been uploaded for a file.

Arguments

s3_key (String!)

S3 key of the file that was uploaded.

upload_id (ID!)

ID of the multipart upload within Amazon S3.

Return fields

etag (String!)

Entity tag generated by AWS S3 when the file part was uploaded.

part_number (Int!)

Number of the file part.

size (BigInt!)

Size of the file part in bytes.

Examples

List Parts for Multipart File Upload

Retrieve a list of parts for a multipart file upload that have been uploaded to Sentera's cloud storage.

Try this example in GraphiQL
query MultipartFileUploadParts{
  multipart_file_upload_parts(
  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"
  ) {
  etag
  part_number
  size
  }
}

{
  "data": {
  "multipart_file_upload_parts": [
    {
      "etag": "\"092bf09510a613e7d4746def653b53f6\"",
      "part_number": 1,
      "size": "5242880"
    },
    {
      "etag": "\"051a7e2c7e4908c3efa3a8733ddbf7a8\"",
      "part_number": 2,
      "size": "5242880"
    },
    {
      "etag": "\"df50374965ddfd1b6992a7983a1b28f0\"",
      "part_number": 3,
      "size": "30414"
    }
  ]
  }
}