Skip to main content
Level 2
September 2, 2026
Question

Journey Step Event query

  • September 2, 2026
  • 2 replies
  • 67 views

Why something like do not return anything? This journey exist - checked with query without WHERE clause. 

What Query do you use to check Node Name or Node ID? 

2 replies

Dex 666Author
Level 2
September 2, 2026

Sorry - image did not attach itself
 

 

SatheeskannaK
Community Advisor
Community Advisor
September 2, 2026

@Dex 666 The query appears to be correct, except for the casing on the “journeyOrchestration.journey.name” variable.

You can try this query (replace the “journey version id” with the actual value):

SELECT
_experience.journeyOrchestration.stepEvents.nodeID,
_experience.journeyOrchestration.stepEvents.nodeName,
_experience.journeyOrchestration.stepEvents.stepName
FROM journey_step_events
WHERE _experience.journeyOrchestration.stepEvents.journeyVersionID = 'abcdef-abcdef-4211-abcdef-abcdef'
AND _experience.journeyOrchestration.stepEvents.nodeName IS NOT NULL
AND _experience.journeyOrchestration.stepEvents.stepName IS NOT NULL

 

Thanks, Sathees