eventStreamsTopics
Retrieves all the topics in the specified environment. If no environmentId is provided, then Topics from all Environments are returned.
Description: This query Returns a list of all topics. Supports optional filtering by environment ID.
Input Parameters:
environmentId: ID (optional) — Environment ID to filter topics.
Example:
query {
eventStreamsTopics(environmentId: "e0900205-7996-4795-9092-b9d2a21b77e9") {
name
environment {
id
name
publishedName
classification
}
producerCount
subscriptionCount
subscriptions {
name
type
durable
backlogCount
messageRateOut
createdTime
consumers {
name
messageRateOut
}
description
deadLetterBacklogCount
retryBacklogCount
}
backlogCount
backlogSize
messageRateIn
messageRateOut
createdTime
producers {
name
messageRateIn
createdTime
}
description
createdBy
partitions
}
}
eventStreamsTopics(
environmentId: ID
): [EventStreamsTopic!]
Arguments
eventStreamsTopics.environmentId ● ID scalar miscellaneous
Type
EventStreamsTopic object event-streams-query
Was this topic helpful?