The syntax for this function shown in EBNF is:
Press CTRL+C to copySearchConditionStr ::= '"' Expression '"'
The syntax for this function shown in EBNF is:
Press CTRL+C to copySearchExprStrList ::= '[' '"' Expression '"' ( ',' '"' Expression '"' )* ']'
The syntax for this function shown in EBNF is:
Press CTRL+C to copyProjectedDocumentExprStr ::= ProjectedSearchExprStrList | 'expr("' JSONDocumentExpression '")'
The syntax for this function shown in EBNF is:
Press CTRL+C to copyProjectedSearchExprStrList ::= '[' '"' Expression ( 'AS' Alias )? '"' ( ',' '"' Expression ( 'AS' Alias )? '"' )* ']'
The syntax for this function shown in EBNF is:
Press CTRL+C to copySortExprStrList ::= '[' '"' Expression ( 'ASC' | 'DESC' )? '"' ( ',' '"' Expression ( 'ASC' | 'DESC' )? '"' )* ']'
The syntax for this function shown in EBNF is:
Press CTRL+C to copyExprOrLiteral ::= 'expr("' Expression '")' | Literal
The syntax for this function shown in EBNF is:
Press CTRL+C to copyExprOrLiterals ::= ExprOrLiteral ( ',' ExprOrLiteral )*
The syntax for this function shown in EBNF is:
Press CTRL+C to copyExprOrLiteralOrOperand ::= ExprOrLiteral
The syntax for this function shown in EBNF is:
Press CTRL+C to copyPlaceholderValues ::= '{' PlaceholderName ':' ( ExprOrLiteral ) '}'
The syntax for this function shown in EBNF is:
Press CTRL+C to copyPlaceholderName ::= NamedPlaceholderNotQuestionmarkNotNumbered
The syntax for this function shown in EBNF is:
Press CTRL+C to copyDocPath ::= ( '[*]' | ( '[' Index ']' ) | '.*' | ( '.' StringLiteral ) | '**' )+
The syntax for this function shown in EBNF is:
Press CTRL+C to copyLiteral ::= '"' StringLiteral '"' | Number | true | false | Document
Press CTRL+C to copyExpression ::= Literal | DocPath | TableField | FunctionName '(' Expression ( ',' Expression )* ')' | ':' PlaceholderName | Expression Operator Expression | JSONExpression
An API call expecting a JSON document allows the use of many data types to describe the document. Depending on the X DevAPI implementation and language any of the following data types can be used:
String
Native JSON
JSON equivalent syntax
DbDoc
Generated Doc Classes
All implementations of X DevAPI allow expressing a document by the special DbDoc type and as a string.
The syntax for this function shown in EBNF is:
Press CTRL+C to copyDocument ::= JSONDocument | JSONEquivalentDocument | DbDoc | GeneratedDocumentClasses
The syntax for this function shown in EBNF is:
Press CTRL+C to copyJSONExpression ::= JSONDocumentExpression | '[' Expression ( ',' Expression )* ']'
The syntax for this function shown in EBNF is:
Press CTRL+C to copyJSONDocumentExpression ::= '{' StringLiteral ':' JSONExpression (',' StringLiteral ':' JSONExpression)* '}'
The syntax for this function shown in EBNF is:
Press CTRL+C to copyFunctionName ::= StringLiteral | StringLiteral '.' StringLiteral
The syntax for this function shown in EBNF is:
Press CTRL+C to copyDocumentOrJSON ::= Document | 'expr("' JSONDocumentExpression '")'
The syntax for this function shown in EBNF is:
Press CTRL+C to copyTableField ::= ( StringLiteral '.' )? ( StringLiteral '.' )? StringLiteral ( '@' DocPath )?