Anchor to gateConfigurationUpdategate
gateConfigurationUpdate
mutationDeprecated
Requires access scope. Also: You must have write access to
gates
to update gate configurations.
Update a gate configuration. Gates API is being sunset and will be removed in a future version. Use metafields
instead for gate configuration.
Anchor to Arguments
Arguments
- Anchor to inputinput•Gate
Configuration requiredUpdate Input! Specifies the input fields to update a gate configuation.
Was this section helpful?
Anchor to GateConfigurationUpdatePayload returnsGateConfigurationUpdatePayload returns
- Anchor to gateConfigurationgate•
Configuration The updated gate configuration.
- Anchor to userErrorsuser•
Errors [GateConfiguration non-nullUser Error!]! The list of errors that occurred from executing the mutation.
Was this section helpful?
- Add metafields to a gate configuration metafields
- Update a gate configuration's name
- Updating a gate configuration with an incorrect ID returns an error
- gateConfigurationUpdate reference
Examples
const { admin } = await authenticate.admin(request);
const response = await admin.graphql(
`#graphql
mutation gateConfigurationUpdate($input: GateConfigurationUpdateInput!) {
gateConfigurationUpdate(input: $input) {
userErrors {
field
message
}
gateConfiguration {
id
reactions: metafield(namespace: "myapp", key: "reactions") {
id
type
value
description
}
}
}
}`,
{
variables: {
"input": {
"id": "gid://shopify/GateConfiguration/43548663",
"metafields": [
{
"key": "reactions",
mutation gateConfigurationUpdate($input: GateConfigurationUpdateInput!) {
gateConfigurationUpdate(input: $input) {
userErrors {
field
message
}
gateConfiguration {
id
reactions: metafield(namespace: "myapp", key: "reactions") {
id
type
value
description
}
}
}
}
curl -X POST \
https://your-development-store.myshopify.com/admin/api/unstable/graphql.json \
-H 'Content-Type: application/json' \
-H 'X-Shopify-Access-Token: {access_token}' \
-d '{
"query": "mutation gateConfigurationUpdate($input: GateConfigurationUpdateInput!) { gateConfigurationUpdate(input: $input) { userErrors { field message } gateConfiguration { id reactions: metafield(namespace: \"myapp\", key: \"reactions\") { id type value description } } } }",
"variables": {
"input": {
"id": "gid://shopify/GateConfiguration/43548663",
"metafields": [
{
"key": "reactions",
"namespace": "myapp",
"description": "My second gate reaction",
"type": "json",
"value": "{\"reactions\":\"test\"}"
}
]
}
}
}'
const { admin } = await authenticate.admin(request);
const response = await admin.graphql(
`#graphql
mutation gateConfigurationUpdate($input: GateConfigurationUpdateInput!) {
gateConfigurationUpdate(input: $input) {
userErrors {
field
message
}
gateConfiguration {
id
reactions: metafield(namespace: "myapp", key: "reactions") {
id
type
value
description
}
}
}
}`,
{
variables: {
"input": {
"id": "gid://shopify/GateConfiguration/43548663",
"metafields": [
{
"key": "reactions",
"namespace": "myapp",
"description": "My second gate reaction",
"type": "json",
"value": "{\"reactions\":\"test\"}"
}
]
}
},
},
);
const data = await response.json();
const client = new shopify.clients.Graphql({session});
const data = await client.query({
data: {
"query": `mutation gateConfigurationUpdate($input: GateConfigurationUpdateInput!) {
gateConfigurationUpdate(input: $input) {
userErrors {
field
message
}
gateConfiguration {
id
reactions: metafield(namespace: "myapp", key: "reactions") {
id
type
value
description
}
}
}
}`,
"variables": {
"input": {
"id": "gid://shopify/GateConfiguration/43548663",
"metafields": [
{
"key": "reactions",
"namespace": "myapp",
"description": "My second gate reaction",
"type": "json",
"value": "{\"reactions\":\"test\"}"
}
]
}
},
},
});
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 gateConfigurationUpdate($input: GateConfigurationUpdateInput!) {
gateConfigurationUpdate(input: $input) {
userErrors {
field
message
}
gateConfiguration {
id
reactions: metafield(namespace: "myapp", key: "reactions") {
id
type
value
description
}
}
}
}
QUERY
variables = {
"input": {
"id": "gid://shopify/GateConfiguration/43548663",
"metafields": [{"key"=>"reactions", "namespace"=>"myapp", "description"=>"My second gate reaction", "type"=>"json", "value"=>"{\"reactions\":\"test\"}"}]
}
}
response = client.query(query: query, variables: variables)
Input variables
JSON{
"input": {
"id": "gid://shopify/GateConfiguration/43548663",
"metafields": [
{
"key": "reactions",
"namespace": "myapp",
"description": "My second gate reaction",
"type": "json",
"value": "{\"reactions\":\"test\"}"
}
]
}
}
Response
JSON{
"gateConfigurationUpdate": {
"userErrors": [],
"gateConfiguration": {
"id": "gid://shopify/GateConfiguration/43548663",
"reactions": {
"id": "gid://shopify/Metafield/1069229041",
"type": "json",
"value": "{\"reactions\":\"test\"}",
"description": "My second gate reaction"
}
}
}
}