![]()  | 
  
    Qore ServiceNowRestDataProvider Module Reference 1.2.1
    
   | 
 
Functions | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::query_make_op (string op, auto arg) | 
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::query_op_eq (auto arg) | 
returns an QueryOperatorInfo hash for the "=" operator with the given argument for use in ServiceNow queries when comparing column values to immediate values  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::query_op_ge (auto arg) | 
returns an QueryOperatorInfo hash for the ">=" operator with the given argument for use in ServiceNow queries when comparing column values to immediate values  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::query_op_gt (auto arg) | 
returns an QueryOperatorInfo hash for the ">" operator with the given argument for use in ServiceNow queries when comparing column values to immediate values  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::query_op_isempty () | 
returns an QueryOperatorInfo hash for the "ISEMPTY" operator with the given argument for use in ServiceNow queries when comparing column values to an empty string  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::query_op_isnotempty () | 
returns an QueryOperatorInfo hash for the "ISNOTEMPTY" operator with the given argument for use in ServiceNow queries when comparing column values to an empty string  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::query_op_le (auto arg) | 
returns an QueryOperatorInfo hash for the "<=" operator with the given argument for use in ServiceNow queries when comparing column values to immediate values  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::query_op_like (string str) | 
returns an QueryOperatorInfo hash for the "LIKE" operator with the given argument for use in ServiceNow queries  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::query_op_lt (auto arg) | 
returns an QueryOperatorInfo hash for the "<" operator with the given argument for use in ServiceNow queries when comparing column values to immediate values  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::query_op_ne (auto arg) | 
returns an QueryOperatorInfo hash for the "!=" or "<>" operator with the given argument for use in ServiceNow queries when comparing column values to immediate values  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::query_op_not (hash arg) | 
returns an QueryOperatorInfo hash for the "not" operator; for use in ServiceNow queries  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::query_op_notlike (string str) | 
returns an QueryOperatorInfo hash for the "NOTLIKE" operator with the given argument for use in ServiceNow queries  More... | |
| hash< string, hash< QueryOperatorInfo > > | ServiceNowRestDataProvider::query_wop_or (hash< auto > h1, hash< auto > h2) | 
returns an QueryOperatorInfo hash with a fake "_OR_" column name; the list of arguments to the function is combined such that each hash in the list generates SQL expressions combined with "and" logic, and each of those clauses is combined with "or" logic; this is for use in ServiceNow queries  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::soql_op_in () | 
returns an QueryOperatorInfo hash for the "IN" operator with all arguments passed to the function  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::soql_op_in (list< auto > args) | 
returns an QueryOperatorInfo hash for the "IN" operator with the given argument list as the first argument  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::soql_op_notin () | 
returns an QueryOperatorInfo hash for the "NOTIN" operator with all arguments passed to the function  More... | |
| hash< QueryOperatorInfo > | ServiceNowRestDataProvider::soql_op_notin (list< auto > args) | 
returns an QueryOperatorInfo hash for the "NOTIN" operator with the given argument list as the first argument  More... | |
These are the operators that can be used in ServiceNow queries
"LIKE" operator"NOTLIKE" operator">=" operator when comparing column values to immediate values">" operator when comparing column values to immediate values"<=" operator when comparing column values to immediate values"<" operator when comparing column values to immediate values"!=" or "<>" operator when comparing column values to immediate values"=" operator when comparing column values to immediate values"ISEMPTY" operator comparing column values to an empty string"ISNOTEMPTY" operator comparing column values to an empty string"IN" operator to compare a column to multiple values"NOTIN" operator to compare a column to multiple values"or" | hash< QueryOperatorInfo > ServiceNowRestDataProvider::query_make_op | ( | string | op, | 
| auto | arg | ||
| ) | 
returns an QueryOperatorInfo hash
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::query_op_eq | ( | auto | arg | ) | 
returns an QueryOperatorInfo hash for the "=" operator with the given argument for use in ServiceNow queries when comparing column values to immediate values 
| arg | the argument for the operator | 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::query_op_ge | ( | auto | arg | ) | 
returns an QueryOperatorInfo hash for the ">=" operator with the given argument for use in ServiceNow queries when comparing column values to immediate values 
| arg | the argument for the operator | 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::query_op_gt | ( | auto | arg | ) | 
returns an QueryOperatorInfo hash for the ">" operator with the given argument for use in ServiceNow queries when comparing column values to immediate values 
| arg | the argument for the operator | 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::query_op_isempty | ( | ) | 
returns an QueryOperatorInfo hash for the "ISEMPTY" operator with the given argument for use in ServiceNow queries when comparing column values to an empty string 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::query_op_isnotempty | ( | ) | 
returns an QueryOperatorInfo hash for the "ISNOTEMPTY" operator with the given argument for use in ServiceNow queries when comparing column values to an empty string 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::query_op_le | ( | auto | arg | ) | 
returns an QueryOperatorInfo hash for the "<=" operator with the given argument for use in ServiceNow queries when comparing column values to immediate values 
| arg | the argument for the operator | 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::query_op_like | ( | string | str | ) | 
returns an QueryOperatorInfo hash for the "LIKE" operator with the given argument for use in ServiceNow queries 
| str | the argument for the operator | 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::query_op_lt | ( | auto | arg | ) | 
returns an QueryOperatorInfo hash for the "<" operator with the given argument for use in ServiceNow queries when comparing column values to immediate values 
| arg | the argument for the operator | 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::query_op_ne | ( | auto | arg | ) | 
returns an QueryOperatorInfo hash for the "!=" or "<>" operator with the given argument for use in ServiceNow queries when comparing column values to immediate values 
| arg | the argument for the operator | 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::query_op_not | ( | hash | arg | ) | 
returns an QueryOperatorInfo hash for the "not" operator; for use in ServiceNow queries 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::query_op_notlike | ( | string | str | ) | 
returns an QueryOperatorInfo hash for the "NOTLIKE" operator with the given argument for use in ServiceNow queries 
| str | the argument for the operator | 
| hash< string, hash< QueryOperatorInfo > > ServiceNowRestDataProvider::query_wop_or | ( | hash< auto > | h1, | 
| hash< auto > | h2 | ||
| ) | 
returns an QueryOperatorInfo hash with a fake "_OR_" column name; the list of arguments to the function is combined such that each hash in the list generates SQL expressions combined with "and" logic, and each of those clauses is combined with "or" logic; this is for use in ServiceNow queries 
| h1 | the first hash of expressions to combine with "or" logic  | 
| h2 | the second hash of expressions to combine with "or" logic  | 
| ... | remaining expressions to combine with "or" logic | 
"_OR_" with a numeric prefix for uniqueness) for use in a where operation description hash for use in ServiceNow queries| hash< QueryOperatorInfo > ServiceNowRestDataProvider::soql_op_in | ( | ) | 
returns an QueryOperatorInfo hash for the "IN" operator with all arguments passed to the function 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::soql_op_in | ( | list< auto > | args | ) | 
returns an QueryOperatorInfo hash for the "IN" operator with the given argument list as the first argument 
| args | a list of values for the "IN" operator | 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::soql_op_notin | ( | ) | 
returns an QueryOperatorInfo hash for the "NOTIN" operator with all arguments passed to the function 
| hash< QueryOperatorInfo > ServiceNowRestDataProvider::soql_op_notin | ( | list< auto > | args | ) | 
returns an QueryOperatorInfo hash for the "NOTIN" operator with the given argument list as the first argument 
| args | a list of values for the "NOTIN" operator |