New data
-
-
Hi,
How can i get the data that were added from specific date (mqlread)
Tx.
-
You can query against the timestamp, something along the lines of:
[
{
"name" : null,
"timestamp" : null,
"timestamp>" : "2008-08",
"type" : "/film/film"
}
]This returns films that were added this month.
-
To be precise, Bryan’s query will find things that were created this month, which are also of type /film/film. To find new assertions, you have to get a little more complicated.
[
{
"id" : null,
"type" : {
"id" : "/film/film",
"link" : {
"timestamp>" : "2008-08"
}
}
}
]will find things who have had their film type asserted this month.
[
{
"id" : null,
"type" : [
{
"id" : null,
"link" : {
"timestamp>" : "2008-08"
}
}
]
}
]will find things that have had new types added this month. In general, for any property assertion, you can ask about the timestamp on the link.
-
Hi,
Thanks a lot for your help.
-