Filtering Data by Time Created

Options

I am trying to send data to my frontend based on the time that it was created. The use case for this is a user's post would be displayed based on how recent it was posted. Think of how any forum or social media account displays posts based on how recent it was created.

I know there is a way to do this, but I am unsure how to go about it.

Tagged:

Answers

  • Max
    Max Member
    Options

    you can get this result in many ways, but most simple and straightforward might be to use sorting in output setup of your database request step like so:

    and then choose what you need to sort on and direction:

  • NWold
    NWold Member
    Options

    That worked perfectly, thank you.