Set multiple options in multiselect attribute on specific product
mutation { productAddAttributeValueTranslationsMultiSelect( input: {sku: "product_2" # SKU of a product we want to set attribute options inattributeCode: "labels" # attribute codetranslations: [ { value: ["test1", "test2"], language: "en_GB" } # options to set in a specific language ] } ) { __typename }}