Is there possibility of querying TAGS?
Im using the following query to consult ClientIDs that entered a specific action (Email action):
SELECT
DISTINCT identityMap['clientId'] [0] ['id'] AS node_enter_profiles
FROM
journey_step_events
WHERE
_experience.journeyOrchestration.stepEvents.journeyVersionID = 'd67b3772-71a9-4d4c-b78f-a7c5373f8034'
AND _experience.journeyOrchestration.stepEvents.actionID = 'b5a8420a-899b-437b-97fd-4a425f7a4e71'
AND COALESCE(
_experience.journeyOrchestration.stepEvents.journeyNodeProcessed,
false
) = true
AND (
_experience.journeyOrchestration.stepEvents.dryRunID IS NULL
OR _experience.journeyOrchestration.stepEvents.dryRunID = ''
)
AND COALESCE(
_experience.journeyOrchestration.stepEvents.inTest,
false
) = false
Is there a way to include in this query, the date of the start of the journey as well as tags related to the journey?