QueryData: number | string | object

For simple cases you can use:

  • number - Builds a simple filter where the value + 1 is used as endRow.
  • string - Builds a simple filter where the value equals SKU, contract-type, ... (based on module).

Otherwise, you can use your own filter:

  • 'object' - Will be used as a filter, for example:
{
endRow: 100,
operationType: 'fetch',
startRow: 0,
textMatchStyle: 'exact',
data: {
operator: 'and',
_constructor: 'AdvancedCriteria',
criteria: [
{
fieldName: 'inputs.DecimalUserEntry_Real_MONEY_USD.value',
operator: 'equals',
value: 2
}
]
}
}

Generated using TypeDoc