Version: 2024-10
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) { shopResourceFeedbackCreate(input: $input) { userErrors { field message } } }\",\n \"variables\": {\n \"input\": {\n \"messages\": [\n \"is not connected. Connect your account to use this sales channel.\"\n ],\n \"state\": \"REQUIRES_ACTION\",\n \"feedbackGeneratedAt\": \"2024-09-12T01:10:50.056430Z\"\n }\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) {\n shopResourceFeedbackCreate(input: $input) {\n userErrors {\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"input\": {\n \"messages\": [\n \"is not connected. Connect your account to use this sales channel.\"\n ],\n \"state\": \"REQUIRES_ACTION\",\n \"feedbackGeneratedAt\": \"2024-09-12T01:10:50.056430Z\"\n }\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) {\n shopResourceFeedbackCreate(input: $input) {\n userErrors {\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"input\": {\n \"messages\": [\"is not connected. Connect your account to use this sales channel.\"],\n \"state\": \"REQUIRES_ACTION\",\n \"feedbackGeneratedAt\": \"2024-09-12T01:10:50.056430Z\"\n }\n}\n\nresponse = client.query(query: query, variables: variables)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<[\n \"messages\" => [\"is not connected. Connect your account to use this sales channel.\"],\n \"state\" => \"REQUIRES_ACTION\",\n \"feedbackGeneratedAt\" => \"2024-09-12T01:10:50.056430Z\",\n ],\n];\n\n$response = $client->query([\"query\" => $query, \"variables\" => $variables]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) {\n shopResourceFeedbackCreate(input: $input) {\n userErrors {\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"input\": {\n \"messages\": [\n \"is not connected. Connect your account to use this sales channel.\"\n ],\n \"state\": \"REQUIRES_ACTION\",\n \"feedbackGeneratedAt\": \"2024-09-12T01:10:50.056430Z\"\n }\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) {\n shopResourceFeedbackCreate(input: $input) {\n userErrors {\n field\n message\n }\n }\n}"
input: { "input": { "messages": [ "is not connected. Connect your account to use this sales channel." ], "state": "REQUIRES_ACTION", "feedbackGeneratedAt": "2024-09-12T01:10:50.056430Z" } }
response: { "data": { "shopResourceFeedbackCreate": { "userErrors": [] } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) { shopResourceFeedbackCreate(input: $input) { userErrors { field message } } }\",\n \"variables\": {\n \"input\": {\n \"state\": \"ACCEPTED\",\n \"feedbackGeneratedAt\": \"2024-09-12T01:10:50.164367Z\"\n }\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) {\n shopResourceFeedbackCreate(input: $input) {\n userErrors {\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"input\": {\n \"state\": \"ACCEPTED\",\n \"feedbackGeneratedAt\": \"2024-09-12T01:10:50.164367Z\"\n }\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) {\n shopResourceFeedbackCreate(input: $input) {\n userErrors {\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"input\": {\n \"state\": \"ACCEPTED\",\n \"feedbackGeneratedAt\": \"2024-09-12T01:10:50.164367Z\"\n }\n}\n\nresponse = client.query(query: query, variables: variables)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<[\n \"state\" => \"ACCEPTED\",\n \"feedbackGeneratedAt\" => \"2024-09-12T01:10:50.164367Z\",\n ],\n];\n\n$response = $client->query([\"query\" => $query, \"variables\" => $variables]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) {\n shopResourceFeedbackCreate(input: $input) {\n userErrors {\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"input\": {\n \"state\": \"ACCEPTED\",\n \"feedbackGeneratedAt\": \"2024-09-12T01:10:50.164367Z\"\n }\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) {\n shopResourceFeedbackCreate(input: $input) {\n userErrors {\n field\n message\n }\n }\n}"
input: { "input": { "state": "ACCEPTED", "feedbackGeneratedAt": "2024-09-12T01:10:50.164367Z" } }
response: { "data": { "shopResourceFeedbackCreate": { "userErrors": [] } } }
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) { shopResourceFeedbackCreate(input: $input) { userErrors { field message } } }\",\n \"variables\": {\n \"input\": {\n \"messages\": [\n \"is not connected. Connect your account to use this sales channel.\"\n ],\n \"state\": \"REQUIRES_ACTION\",\n \"feedbackGeneratedAt\": \"1998-06-07T10:00:00Z\"\n }\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) {\n shopResourceFeedbackCreate(input: $input) {\n userErrors {\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"input\": {\n \"messages\": [\n \"is not connected. Connect your account to use this sales channel.\"\n ],\n \"state\": \"REQUIRES_ACTION\",\n \"feedbackGeneratedAt\": \"1998-06-07T10:00:00Z\"\n }\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) {\n shopResourceFeedbackCreate(input: $input) {\n userErrors {\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"input\": {\n \"messages\": [\"is not connected. Connect your account to use this sales channel.\"],\n \"state\": \"REQUIRES_ACTION\",\n \"feedbackGeneratedAt\": \"1998-06-07T10:00:00Z\"\n }\n}\n\nresponse = client.query(query: query, variables: variables)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<[\n \"messages\" => [\"is not connected. Connect your account to use this sales channel.\"],\n \"state\" => \"REQUIRES_ACTION\",\n \"feedbackGeneratedAt\" => \"1998-06-07T10:00:00Z\",\n ],\n];\n\n$response = $client->query([\"query\" => $query, \"variables\" => $variables]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) {\n shopResourceFeedbackCreate(input: $input) {\n userErrors {\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"input\": {\n \"messages\": [\n \"is not connected. Connect your account to use this sales channel.\"\n ],\n \"state\": \"REQUIRES_ACTION\",\n \"feedbackGeneratedAt\": \"1998-06-07T10:00:00Z\"\n }\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation shopResourceFeedbackCreate($input: ResourceFeedbackCreateInput!) {\n shopResourceFeedbackCreate(input: $input) {\n userErrors {\n field\n message\n }\n }\n}"
input: { "input": { "messages": [ "is not connected. Connect your account to use this sales channel." ], "state": "REQUIRES_ACTION", "feedbackGeneratedAt": "1998-06-07T10:00:00Z" } }
response: { "data": { "shopResourceFeedbackCreate": { "userErrors": [ { "field": [ "input" ], "message": "Feedback for a later version of this resource was already accepted." } ] } } }