添加标签-tagsAdd mutation

将标签添加到可标记对象。


在本页面


互动范例

这是一个示例变异查询。

mutation tagsAdd($id: ID!, $tags: [String!]!) { tagsAdd(id: $id, tags: $tags) {
  1. <font style="color:#1F61A0;">node</font> <font style="color:#555555;">{</font>
  2. <font style="color:#1F61A0;">id</font>
  3. <font style="color:#555555;">}</font>
  4. <font style="color:#1F61A0;">userErrors</font> <font style="color:#555555;">{</font>
  5. <font style="color:#1F61A0;">field</font>
  6. <font style="color:#1F61A0;">message</font>
  7. <font style="color:#555555;">}</font>
} }

变量:

{ “id”: “Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE=”, “tags”: [
  1. <font style="color:#D64292;">"placeholder"</font>
] }


参数

参数 描述
id
[ID!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01)

必需的
要添加标签的资源的ID。
tags
[[String!]!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#string-2021-01)

必需的
标签列表。可以是数组或逗号分隔的列表。值示例:["tag1", "tag2", "tag3"]"tag1, tag2, tag3"


返回字段

  • node[Node](https://shopify.dev/docs/admin-api/graphql/reference/common-objects/node)
    已更新的对象。
  • userErrors[[UserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/usererror)
    执行mutation时发生的错误列表。