QueryTask.query

Note:

The content in this help topic pertains to SuiteScript 2.0.

Property Description

Query definition for the query task.

The query definition is a query.Query object. To use this object, you must load the N/query module in your script and create a query using query.create(options) or load a query using query.load(options). For more information, see N/query Module.

Type

query.Query

Supported Script Types

Server scripts

For more information, see SuiteScript 2.x Script Types.

Module

N/task Module

Parent Object

task.QueryTask

Sibling Object Members

QueryTask Object Members

Since

2020.2

Syntax

Important:

The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/task Module Script Samples.

            // Add additional code
...
var myQueryTask = task.create({
    taskType: task.TaskType.QUERY
});

// myQuery is an existing query.Query object created using the N/query module
myQueryTask.query = myQuery;
...
// Add additional code 

          

Related Topics

task.QueryTask
N/task Module
SuiteScript 2.x Modules
SuiteScript 2.x

General Notices