flamingo.me/flamingo-commerce/v3@v3.11.0/test/integrationtest/projecttest/tests/graphql/testdata/cart_update_additional_data.graphql (about) 1 mutation { 2 Commerce_Cart_UpdateAdditionalData(additionalData: [{key: "foo" value: "bar"}, {key: "biz" value: "baz"}]) { 3 cart { 4 additionalData { 5 customAttributes { 6 foo: get(key: "foo") { 7 key 8 value 9 } 10 biz: get(key: "biz") { 11 key 12 value 13 } 14 } 15 } 16 } 17 } 18 }