Query a stream - find 2 of 4500 events.

Can you share the syntax to query a stream in the UI #/query? I’m just doing research on a stream, not trying to create a new stream.

Pseudo code would be

from stream ‘name’ show events with ‘name’

And then display them on the screen like the stream browser does? Out of 4500 events in the stream, I want to specifically find two of them.

Thank you for the assistance.

fromStream(“name”)

.when({

eventname : function (s, e)

{

//Do what you want with the event here

}

})

:+1: