temporal icon indicating copy to clipboard operation
temporal copied to clipboard

Add query param to ListNamespacesRequest

Open lorensr opened this issue 3 years ago • 2 comments

User requested feature

lorensr avatar Aug 11 '22 00:08 lorensr

What would the query looks like?

yiminc avatar Aug 12 '22 21:08 yiminc

My guess is just name substring would be good enough for most: { query: 'foo' } or { query: { name: 'foo' } } matching namespace named foobar, but could do fuzzy or add other fields

message NamespaceInfo {
    string name = 1;
    temporal.api.enums.v1.NamespaceState state = 2;
    string description = 3;
    string owner_email = 4;
    // A key-value map for any customized purpose.
    map<string, string> data = 5;
    string id = 6;

lorensr avatar Aug 12 '22 23:08 lorensr