Schema Documentation
addFee
Description
The addFee mutation
Response
 Returns an AddFeePayload
Arguments
| Name | Description | 
|---|---|
| input-AddFeeInput! | Input for the addFee mutation | 
Example
Query
mutation addFee($input: AddFeeInput!){  addFee(input: $input){    cart {      ...CartFragment    }cartFee {      ...CartFeeFragment    }clientMutationId  }}Variables
{"input":AddFeeInput}Response
{"data":{"addFee":{"cart":Cart,"cartFee":CartFee,"clientMutationId":"xyz789"}}}