Using enumeration values in an xpath constraint for retieve data

1
I just tried to use the modeler to change a microflow. What I want to do is to  retrieve all the records which are having that particular value of enumeration.   for example: acb.xyz{p,q,r,s,t} here: abc is module           xyz is Enumeration          p,q,r,s,t are Possible vaalues. I have an entity called "cust” having an attribute "bar” of type xyz enumeration.   Now I want to retrieve all the records from cust entity which are having q value in bar Any Idea ?  
asked
3 answers
6

You can do a retrieve from database in a microflow with the following xpath:

[bar= 'q']

answered
4

[bar = ‘q’] should do it

answered
1

Hey,

I think this is what you’re looking for:

answered