Waiting for engine...
Skip to main content

eventStreamsRoute

Retrieves a specific route by environment and name

Description: Returns detailed information for a single route identified by environment ID and route name. Returns null if the route does not exist.

Input Parameters:

  • environmentId: ID! — Environment where the route exists.
  • name: ID! — Name of the route.

Example:

query {
eventStreamsRoute(environmentId: "e0900205-7996-4795-9092-b9d2a21b77e9", name: "order-routing") {
environmentId
name
inputTopic
subscriptionName
defaultOutputTopic
status
errorMessage
messagesReceivedCount
messagesProcessedCount
totalRestarts
lastInvocationTime
filters {
name
outputTopic
conditions {
key
value
valueType
operationType
logicalOperator
}
}
}
}

eventStreamsRoute(
environmentId: ID!
name: ID!
): EventStreamsRoute

Arguments

eventStreamsRoute.environmentId ● ID! non-null scalar miscellaneous

eventStreamsRoute.name ● ID! non-null scalar miscellaneous

Type

EventStreamsRoute object event-streams-admin

A message routing rule that filters and routes messages based on metadata properties

On this Page