I tried query tasks that were last updated today by
queries.push({
type:"task",
key:"tasks",
fetch:"WorkProduct,Name,FormattedID,ToDo,Owner,LastUpdateDate,RevisionHistory,Revisions",
query: "(LastUpdateDate > 2012-07-17)",
order: "LastUpdateDate desc"
});
then use the custom grid app to make a similar query with
(LastUpdateDate > "2012-07-17")
I notice that results from the first approach is a subset of the second. i.e. There are certain tasks that are updated after 2012-07-17 (I checked in the revisions) and are missing from the result of the first approach.
Could some one explain me this?