Object

Tag

Tags can be used to categorize sites and folders.

Fields

color(): TagColor!
The color of the tag.
description(): String
The description of the tag.
id(): ID!
The unique identifier of the tag.
name(): String!
The name of the tag.

Example

Query
query GetAllTags {
  tags {
    id
    name
    description
    color
  }
}
Result
{
  "data": {
    "tags": [
      {
        "id": "1",
        "name": "Production",
        "description": "Production environment sites",
        "color": "DARK_BLUE"
      },
      {
        "id": "2",
        "name": "Staging",
        "description": "Staging environment sites",
        "color": "ORANGE"
      },
      {
        "id": "3",
        "name": "High Priority",
        "description": null,
        "color": "PURPLE"
      }
    ]
  }
}