queryTasks( )


Creates a query to retrieve a list of tasks.

について queryTasks() function builds a query to retrieve a list of tasks and returns a TasksQueryBuilder オブジェクトがある。

The returned object contains the query definition which is typically used to run the query using the find() function. You can refine the query by chaining TasksQueryBuilder functions onto the query. TasksQueryBuilder functions enable you to sort, filter, and control the results that queryTasks() returns.

queryTasks() runs with these TasksQueryBuilder defaults, which you can override:

  • limit(50)
  • descending('_createdDate')

The functions that are chained to queryTasks() are applied in the order they are called. For example, if you apply ascending('_createdDate') and then descending('_updatedDate'), the results are sorted first by the created date and then, if there are multiple results with the same date, the items are sorted by the updated date.

The following TasksQueryBuilder functions are supported for queryTasks(). For a full description of the task object, see the object returned for the 項目 property in TasksQueryResult.

PROPERTYSUPPORTED FILTERS & SORTING
_ideq(),ne(),in(),昇順(),降順()
_createdDateeq(),ne(),gt(),lt(),ge(),ル(),昇順(),降順()
_updatedDateeq(),ne(),gt(),lt(),ge(),ル(),昇順(),降順()
dueDateeq(),ne(),gt(),lt(),ge(),ル(),昇順(),降順()
statuseq(),ne(),in()
contact.ideq(),ne(),in(),存在する()
Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Manage Tasks
Read Tasks
Learn more about app permissions.
メソッド宣言
コピー
リクエスト
このメソッドはパラメータを取らない
リターン
Return Type:TasksQueryBuilder
役に立ちましたか?
はい
いいえ