eventStreamsTopic
Retrieves the specified topic
Description: This query Returns detailed information for a single topic in the given environment.
Input Parameters:
environmentId: ID! — Environment where the topic exists.name: ID! — Name of the topic.
Example:
query {
eventStreamsTopic(environmentId: "e0900205-7996-4795-9092-b9d2a21b77e9", name: "my-topic") {
name
environment {
id
name
publishedName
classification
}
producerCount
subscriptionCount
subscriptions {
name
type
durable
backlogCount
messageRateOut
createdTime
consumers {
name
messageRateOut
}
description
deadLetterBacklogCount
retryBacklogCount
}
backlogCount
messageRateIn
messageRateOut
createdTime
producers {
name
messageRateIn
createdTime
}
description
createdBy
partitions
}
}
eventStreamsTopic(
environmentId: ID!
name: ID!
): EventStreamsTopic!
Arguments
eventStreamsTopic.environmentId ● ID! non-null scalar miscellaneous
eventStreamsTopic.name ● ID! non-null scalar miscellaneous
Type
EventStreamsTopic object event-streams-query
Was this topic helpful?