Get Record List Query

Get Record List Query - kintone.app.getQueryCondition()

Retrieves the record list filter conditions as a query string

Function

Desktop

kintone.app.getQueryCondition()

Mobile

kintone.mobile.app.getQueryCondition()

Parameters

None

Response

  • String or null.
  • An empty string is returned if there are no filter conditions for the record list.
  • Null is returned for pages where it cannot be used.

Sample

1
2
3
4
5
var condition = kintone.app.getQueryCondition();
console.log(condition);

// Sample Response
// 'record_id <= "5" and creator in ("john-d")'

Available Pages

  • Record List
  • Graph

Notes