Id of baseline with regex

Hello,

I am looking for exact match of baseline name and getting its ID.

i am able to get name:

‘(name of it)whose(exists matches(regex “^prod change date$”) of it) of bes fixlets’.

But if i try to get id:

‘(id of it)whose(exists matches(regex “^prod change date$”) of it) of bes fixlets’

it gives error as The operator “matches” is not defined.

how do i solve this , kindly help me.

Thanks in advance.
kiran

That’s because you are trying to search a regex within the baseline ID (an Integer) rather than its name.

Try

ids of bes fixlets whose(exists matches(regex “^prod change date$”) of name of it)

It is working as expected.

Thank you so much.
regards,
Kiran