Freebase のmetaweb クエリ言語を使用して、 ISO8601形式の日付を渡すと、将来のイベントを取得できます。
[{
"id": null,
"name": null,
"start_date" : null,
"type": "/time/event",
"start_date>" : "2011-09-02"
}]
Freebase のmetaweb クエリ言語を使用して、 ISO8601形式の日付を渡すと、将来のイベントを取得できます。
[{
"id": null,
"name": null,
"start_date" : null,
"type": "/time/event",
"start_date>" : "2011-09-02"
}]
NOW()
またはと同等のものをサポートしていますかCURDATE()
?__now__
タイムスタンプ フィールドで特別なショートカットとして使用することもできます。
[{
"id": null,
"name": null,
"start_date" : null,
"type": "/time/event",
"start_date>" : "__now__"
}]
この Freebase Query Editor snippetからライブ デモを見ることができます。
MQLにはSQLのNOW()またはCURDATEに相当するものはありません。クエリの送信に使用しているプログラミング言語には、使用できる同等の関数が必要です。
次のようにstart_dateの降順で並べ替えることで、将来のイベントのリストを取得できます。
[{
"id": null,
"name": null,
"type": "/time/event",
"start_date": {
"value": null,
"optional": false
},
"sort": "-start_date.value"
}]