Microflow for retrieving dates from database

0
Hello all,   I want to retrieve dates on which user registered for an app between two dates given by administrator at runtime, I have created this microflow but in UserDetail_Overview page I want list of dates in column so how  I can do this Or which activity is required at the end of microflow?
asked
1 answers
1

Do you store in an Entity the dates on which a user register for your app?

If so, you can use a Retrieve action, from database, with the following XPath constraint:

[RegisterDate > $beginDate and RegisterDate < $endDate]

 

Where RegisterDate is the date attribute, when a user register for the app, and $beginDate and $endDate are the dates given by the administrator to specify a search range.

 

answered