assembly_remove_components

Arguments

ArgumentTypeRequiredDefaultDescription
dataRemoveAssemblyComponentsInput!Yes

Return Type

RemoveAssemblyComponentsOutput

Mutation

mutation assembly_remove_components(
  $data: RemoveAssemblyComponentsInput!
) {
  assembly_remove_components(
    data: $data
  ) {
    request_id
    complexity
    product {
      ...ProductFragment
    }
  }
}

Variables

{
  "data": {
    "assembly_sku": "abc123",
    "components": [RemoveAssemblyComponentsComponentInput],
    "customer_account_id": "abc123"
  }
}

Response

{
  "data": {
    "assembly_remove_components": {
      "request_id": "abc123",
      "complexity": 987,
      "product": Product
    }
  }
}