<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>How to query data older than 30 days?</title><link>https://community.appian.com/discussions/f/data/25224/how-to-query-data-older-than-30-days</link><description>HI All, I want to query all of the data that older than 30 days in the DB. 
 Can an someone suggest me how to achieve the filtering thing from db? 
 Thanks in advance</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to query data older than 30 days?</title><link>https://community.appian.com/thread/97856?ContentTypeID=1</link><pubDate>Sat, 16 Jul 2022 17:11:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5559e18d-609a-42ce-877a-7b50434acf51</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;In the filters, you can use the following code.&amp;nbsp;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!queryFilter(
  field: &amp;quot;createdOn&amp;quot;,
  operator: &amp;quot;&amp;lt;&amp;quot;,
  value: today()-(day()*30)
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>