Query
query Broadcasts {
broadcasts {
edges {
cursor
node {
id
name
notificationTitle
content
contentFormat
type
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"broadcasts": {
"edges": [
{
"cursor": "string",
"node": {
"id": "id",
"name": "string",
"notificationTitle": "string",
"content": "string",
"contentFormat": "TIPTAP",
"type": "SLACK"
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Queries
broadcasts
Returns a paginated list of the workspace’s broadcasts, newest first. Soft-deleted
broadcasts are excluded. Optionally narrow the results with filters (status). Supports standard
forward and backward cursor pagination. Requires the broadcast:read permission.
QUERY
broadcasts(filters: BroadcastsFilter, first: Int, after: String, last: Int, before: String): BroadcastConnection!Arguments
filters
first
Int
after
String
last
Int
before
String
Returns
edges
[BroadcastEdge!]!
pageInfo
Query
query Broadcasts {
broadcasts {
edges {
cursor
node {
id
name
notificationTitle
content
contentFormat
type
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"broadcasts": {
"edges": [
{
"cursor": "string",
"node": {
"id": "id",
"name": "string",
"notificationTitle": "string",
"content": "string",
"contentFormat": "TIPTAP",
"type": "SLACK"
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Was this page helpful?

