Query
query SavedThreadsView($savedThreadsViewId: ID!) {
savedThreadsView(savedThreadsViewId: $savedThreadsViewId) {
id
name
icon
color
threadsFilter {
statuses
statusDetails
priorities
assignedToUser
participants
customerGroups
}
isHidden
}
}Variables
{
"savedThreadsViewId": "id"
}Response
{
"data": {
"savedThreadsView": {
"id": "id",
"name": "string",
"icon": "string",
"color": "string",
"threadsFilter": {
"statuses": [
"TODO"
],
"statusDetails": [
"CREATED"
],
"priorities": [
1
],
"assignedToUser": [
"id"
],
"participants": [
"id"
],
"customerGroups": [
"id"
]
},
"isHidden": true
}
}
}Queries
savedThreadsView
Fetches a single saved threads view by its ID. Returns null if no view with the given ID exists in the workspace.
QUERY
savedThreadsView(savedThreadsViewId: ID!): SavedThreadsViewArguments
savedThreadsViewId
ID!
required
Returns
id
ID!
name
String!
icon
String!
A slug identifying the icon displayed alongside this view's name (lowercase alphanumeric, underscores, and hyphens).
color
String!
threadsFilter
The complete filter, sort, grouping, and display configuration that defines which threads this view shows and how they are presented.
isHidden
Boolean!
When true, this view is hidden from the navigation sidebar for all workspace members.
createdAt
createdBy
updatedAt
updatedBy
Query
query SavedThreadsView($savedThreadsViewId: ID!) {
savedThreadsView(savedThreadsViewId: $savedThreadsViewId) {
id
name
icon
color
threadsFilter {
statuses
statusDetails
priorities
assignedToUser
participants
customerGroups
}
isHidden
}
}Variables
{
"savedThreadsViewId": "id"
}Response
{
"data": {
"savedThreadsView": {
"id": "id",
"name": "string",
"icon": "string",
"color": "string",
"threadsFilter": {
"statuses": [
"TODO"
],
"statusDetails": [
"CREATED"
],
"priorities": [
1
],
"assignedToUser": [
"id"
],
"participants": [
"id"
],
"customerGroups": [
"id"
]
},
"isHidden": true
}
}
}Was this page helpful?

