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
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();
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-04/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
JSON{
"input": {
"id": "gid://shopify/GenericFile/1072273203",
"alt": "new alt text"
}
}
Response
JSON{
"fileUpdate": {
"userErrors": [],
"files": [
{
"alt": "new alt text"
}
]
}
}