SuiteQL.params
Property Description |
The parameters for the query. In SuiteQL, query conditions are represented using the For example, consider the following query.Condition object in a query for customer records:
If you use Query.toSuiteQL() to convert this query to SuiteQL, the resulting SuiteQL query string includes the following
In the resulting query.SuiteQL object, the |
Type |
<string | number | > (read-only) |
Module |
|
Parent Object |
|
Sibling Object Members |
|
Since |
2020.1 |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/query Module Script Samples.
// Add additional code
...
// myQuery is an existing query.Query object
var mySuiteQLQuery = myQuery.toSuiteQL();
var theParams = mySuiteQLQuery.params;
...
// Add additional code