productAppendImages mutation
Appends images to a product.
Required access
write_products
access scope.
On this page
Interactive example
This is an example mutation query. Use the embedded interactive tool below to edit the query.
Hint: use Ctrl + Space for autocompleting fields.
mutation productAppendImages($input: ProductAppendImagesInput!) { productAppendImages(input: $input) {} } { “input”: {
<font style="color:#1F61A0;">newImages</font> <font style="color:#555555;">{</font>
<font style="color:#1F61A0;">id</font>
<font style="color:#555555;">}</font>
<font style="color:#1F61A0;">product</font> <font style="color:#555555;">{</font>
<font style="color:#1F61A0;">id</font>
<font style="color:#555555;">}</font>
<font style="color:#1F61A0;">userErrors</font> <font style="color:#555555;">{</font>
<font style="color:#1F61A0;">field</font>
<font style="color:#1F61A0;">message</font>
<font style="color:#555555;">}</font>
} }
<font style="color:#8B2BB9;">"id"</font><font style="color:#555555;">:</font> <font style="color:#D64292;">"Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE="</font><font style="color:#555555;">,</font>
<font style="color:#8B2BB9;">"images"</font><font style="color:#555555;">:</font> <font style="color:#555555;">[</font>
<font style="color:#555555;">{}</font>
<font style="color:#555555;">]</font>
Arguments
ProductAppendImagesInput fields
- id (
[ID!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01)
) REQUIRED
The ID of the product. - images (
[[ImageInput!]!](https://shopify.dev/docs/admin-api/graphql/reference/common-objects/imageinput)
) REQUIRED
The images to be appended to the product.
Return fields
- newImages (
[[Image!]](https://shopify.dev/docs/admin-api/graphql/reference/common-objects/image)
)
List of new images appended to the product.
- product (
[Product](https://shopify.dev/docs/admin-api/graphql/reference/products-and-collections/product)
)
The product object. - userErrors (
[[UserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/usererror)
)
List of errors that occurred executing the mutation.