Variables
Variables
{
course(id: "00000000-5945-95c7-65fd-a9747b200317") {
id
title
flows {
title
}
}
}{
"data": {
"course": {
"id": "00000000-5945-95c7-65fd-a9747b200317",
"title": "History of Dunder-Mifflin",
"flows": [
{
"title": "Founding a Company"
},
{
"title": "Corporate Citizenship"
}
]
}
}
}query($courseId: UUID!) {
course(id: $courseId) {
id
title
flows {
title
}
}
}{
"data": {
"course": {
"id": "00000000-5945-95c7-65fd-a9747b200317",
"title": "History of Dunder-Mifflin",
"flows": [
{
"title": "Founding A Company"
},
{
"title": "Corporate Citizenship"
}
]
}
}
}
See also
Last updated