Object
Tag
Tags can be used to categorize sites and folders.
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"
}
]
}
}