Hey guys,
We are working on a new Item View feature and wondering how we can fetch the item view tab name (like board view name in a board view) ?
With a board view we used to call the graphQL API providing boardId and boardViewId which give us the name of the view set by user.
const response = await monday.api(`query get_views{
boards(ids: [${context.boardId}]) {
views(ids: [${context.boardViewId}]) {
id
name
}
}
}`);
in the case of an ItemView, we see when calling monday.get('context')
that we have boardId and instanceId but no way to get the name given by the user to the newly added tab.
We looked already in the API schema, documentation, articles to find a way to grab that name without success.
Does any one had a similar use case and know how we can do that ?