# articleTags - admin-graphql - QUERY Version: 2024-10 ## Description List of all article tags. ### Access Scopes `read_content` access scope or `read_online_store_pages` access scope. ## Arguments * [limit](/docs/api/admin-graphql/2024-10/scalars/Int): Int! - The maximum number of tags to return. * [sort](/docs/api/admin-graphql/2024-10/enums/ArticleTagSort): ArticleTagSort - Type of sort order. ## Returns ## Examples ### Retrieves a list of all article tags 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\": \"query ArticleTagsList { articleTags(limit: 10, sort: ALPHABETICAL) }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query ArticleTagsList {\n articleTags(limit: 10, sort: ALPHABETICAL)\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 query ArticleTagsList {\n articleTags(limit: 10, sort: ALPHABETICAL)\n }\nQUERY\n\nresponse = client.query(query: query)\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query ArticleTagsList {\n articleTags(limit: 10, sort: ALPHABETICAL)\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query ArticleTagsList {\n articleTags(limit: 10, sort: ALPHABETICAL)\n}" #### Graphql Input null #### Graphql Response { "data": { "articleTags": [ "alpha", "important", "not_alpha" ] } }