Can I put a msg object in a "wait until" node?

See below. I have an entity which has msg.data.timeSinceChangedMs is currently set to 18868924.

I want a wait node to watch this and wait until this number is > 300000. I tried it as shown in picture, but the wait node is “waiting”, which it should have passed right through.

Is is possible?

Did you ever find a solution/workaround? I’m trying to do the same type of flow and it’s just stuck on “waiting” like you described.

No solution to the core of my post. I found a work around for my specific problem that solved it in a totally different way (not a node red solution)

You can use a mustache template

{{data.timeSinceChangedMs}}

or pass it in as an input

{
  payload: {
    entityId: msg.data.timeSinceChangedMs
  }
}