Skip to content

scheduledMessageBlasts

Fetch paginated scheduled message blasts collection

Arguments

org_chat · Boolean · If True - returns organization membership scheduled message blasts
client_id · String · Only include relevant scheduled message blasts for client
provider_id · ID · ID of the provider to get conversation for (if nil, will return current users)
provider_ids · [ID] · Used to filter org chat conversations by provider ids
after · String · Returns the elements in the list that come after the specified cursor.
before · String · Returns the elements in the list that come before the specified cursor.
first · Int · Returns the first _n_ elements from the list.
last · Int · Returns the last _n_ elements from the list.

Returns

NoteSchedulerPaginationConnection

Example

query scheduledMessageBlasts(
$org_chat: Boolean
$client_id: String
$provider_id: ID
$provider_ids: [ID]
$after: String
$before: String
$first: Int
$last: Int
) {
scheduledMessageBlasts(
org_chat: $org_chat
client_id: $client_id
provider_id: $provider_id
provider_ids: $provider_ids
after: $after
before: $before
first: $first
last: $last
) {
edges
nodes
page_info
total_count
}
}