to show recent changes. This was my first slightly-non-trivial MQL query, I'm sure it can be improved upon!
{
"query":[{
"name":null,
"creator":null,
"limit":50,
"sort":"-timestamp",
"timestamp":null,
"type":"/common/topic"
}]
}
Should be easy...
-
-
-
This query will show you the last 50 topics created. Changing a property value doesn't 'change' the topic so it would be reflected in this query. I can think of a probably very non-performant solution to this, but I there are people who are much better at this than I am.
As for the interface, MJT should do a great job of this. -
For the record, this query shows you the latest new links, which corresponds to recent changes:
[{
"*" : null,
"sort" : "-timestamp",
"timestamp" : null,
"type" : "/type/link"
}]
-

