How to get a list of running (open) workflows using typescript-sdk?

Hi, I would like to know how I can list the running workflows using typescrit-sdk, or if it’s not available right now, if there is any timeframes when it could be released? As this feature is quite important to me, would be glad to hear any response.

Hi @nick_vasyliv you can use the grpc WorkflowService client provided in the @temporalio/client package at Connection.service and invoke the listOpenWorkflowExecutions method, note that you’ll have to provide the namespace in this call.

Hi @bergundy , thanks for quick response. I have already tried it, working great. Also, found a lot of other useful methods.