eventStreamsMessages
Retrieves all the backlog messages for specified subscription.
Description: This query to fetch a paginated list of backlog messages from a specific subscription within a topic and environment. You can specify a startIndex and endIndex to control the range of messages retrieved.
Example:
query getSubscriptionBacklogMessages {
eventStreamsMessages(
input: {
environmentId: "e0900205-7996-4795-9092-b9d2a21b77e9"
topicName: "UI-AutoTest-Dashboard-02"
subscriptionName: "Sub-AutoTest-Dashboard-02"
startIndex: 1
endIndex: 2
}) {
environment{
id
}
topicName
subscriptionName
messageId
metaData {
name
value
}
payload
redeliveryCount
producer
publishTime
size
}
}
eventStreamsMessages(
input: EventStreamsMessagesInput!
): [EventStreamsMessage]
Arguments
eventStreamsMessages.input ● EventStreamsMessagesInput! non-null input event-streams-admin
Type
EventStreamsMessage object event-streams-admin
Represents a message within Event Streams, including its environment, topic and subscription identifiers, metadata, payload, producer details, and delivery information.
Was this topic helpful?