Anchor to fileUpdatefile
fileUpdate
mutation
Requires access scope or
access scope. Also: Users must have edit files permissions.
Updates an existing file asset that was uploaded to Shopify.
Anchor to Arguments
Arguments
- Anchor to filesfiles•[File
Update requiredInput!]! List of files to be updated.
Was this section helpful?
Anchor to FileUpdatePayload returnsFileUpdatePayload returns
- Anchor to filesfiles•
The list of updated files.
- Anchor to userErrorsuser•
Errors [FilesUser non-nullError!]! The list of errors that occurred from executing the mutation.
Was this section helpful?
- Update a file
- Update a generic file
- Update an image
- Updating a file that doesn't exist returns an error
- fileUpdate reference
Examples
1const { admin } = await authenticate.admin(request);23const response = await admin.graphql(4 `#graphql5 mutation FileUpdate($input: [FileUpdateInput!]!) {6 fileUpdate(files: $input) {7 userErrors {8 code9 field10 message11 }12 files {13 alt14 }15 }16 }`,17 {18 variables: {19 "input": {20 "id": "gid://shopify/GenericFile/1072273203",21 "alt": "new alt text"22 }23 },24 },25);2627const data = await response.json();28
mutation FileUpdate($input: [FileUpdateInput!]!) {
fileUpdate(files: $input) {
userErrors {
code
field
message
}
files {
alt
}
}
}
curl -X POST \
https://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \
-H 'Content-Type: application/json' \
-H 'X-Shopify-Access-Token: {access_token}' \
-d '{
"query": "mutation FileUpdate($input: [FileUpdateInput!]!) { fileUpdate(files: $input) { userErrors { code field message } files { alt } } }",
"variables": {
"input": {
"id": "gid://shopify/GenericFile/1072273203",
"alt": "new alt text"
}
}
}'
const { admin } = await authenticate.admin(request);
const response = await admin.graphql(
`#graphql
mutation FileUpdate($input: [FileUpdateInput!]!) {
fileUpdate(files: $input) {
userErrors {
code
field
message
}
files {
alt
}
}
}`,
{
variables: {
"input": {
"id": "gid://shopify/GenericFile/1072273203",
"alt": "new alt text"
}
},
},
);
const data = await response.json();
const client = new shopify.clients.Graphql({session});
const data = await client.query({
data: {
"query": `mutation FileUpdate($input: [FileUpdateInput!]!) {
fileUpdate(files: $input) {
userErrors {
code
field
message
}
files {
alt
}
}
}`,
"variables": {
"input": {
"id": "gid://shopify/GenericFile/1072273203",
"alt": "new alt text"
}
},
},
});
session = ShopifyAPI::Auth::Session.new(
shop: "your-development-store.myshopify.com",
access_token: access_token
)
client = ShopifyAPI::Clients::Graphql::Admin.new(
session: session
)
query = <<~QUERY
mutation FileUpdate($input: [FileUpdateInput!]!) {
fileUpdate(files: $input) {
userErrors {
code
field
message
}
files {
alt
}
}
}
QUERY
variables = {
"input": {
"id": "gid://shopify/GenericFile/1072273203",
"alt": "new alt text"
}
}
response = client.query(query: query, variables: variables)
Input variables
JSON1{2 "input": {3 "id": "gid://shopify/GenericFile/1072273203",4 "alt": "new alt text"5 }6}
Response
JSON1{2 "fileUpdate": {3 "userErrors": [],4 "files": [5 {6 "alt": "new alt text"7 }8 ]9 }10}