Tags
Querying
Course tags
{
course(id: "00000000-5945-95c7-65fc-a9747b200320") {
tags {
label
color
students {
edges {
node {
name
email
}
}
}
}
}
}
{
"data": {
"course": {
"tags": [
{
"label": "Stark",
"color": "#EB5757FF",
"students": {
"edges": [
{
"node": {
"name": "Sansa Stark",
"email": "[email protected]"
}
},
{
"node": {
"name": "Ned Stark",
"email": "[email protected]"
}
}
]
}
},
{
"label": "Lannister",
"color": "#2F80EDFF",
"students": {
"edges": [
{
"node": {
"name": "Jaime Lannister",
"email": "[email protected]"
}
}
]
}
}
]
}
}
}Participant tags
Mutations
Create tag
Add students to tag
Last updated