I am trying to get views names and ids for a board. I am trying this query for the same
{
boards(ids: [1841601504]) {
name
views {
id
name
}
}
}
In response I am getting this
{
"data": {
"boards": [
{
"name": "New Board",
"views": []
}
]
}
}
How can I get the views info ? I am trying this from API playground for now.
