Erudika / scoold

A Stack Overflow clone for teams (self-hosted or hosted)
https://scoold.com
Apache License 2.0
862 stars 239 forks source link

How to find post in between two dates? #356

Closed Vinayak-Mahadev closed 1 year ago

Vinayak-Mahadev commented 1 year ago

para-cli search "creatorid:1234567 AND type:question AND timestamp:[1652140800000 TO 1672133864296]" How to convert it into java code with help of ParaClient?

albogdano commented 1 year ago

Try this:

ParaClient pc = new ParaClient("app:myapp", "secret");
List<Question> results = pc.findQuery("question", "creatorid:1234567 AND timestamp:[1652140800000 TO 1672133864296]");
Vinayak-Mahadev commented 1 year ago

Thank you, It's working