Skip to main content

@webda/coreReadme | API


Class: AndExpression

AND Expression implementation

Extends

Constructors

new AndExpression(children)

new AndExpression(children): AndExpression

Parameters

children: Expression<string>[]

Expressions to use for AND

Returns

AndExpression

Overrides

LogicalExpression.constructor

Source

packages/core/src/stores/webdaql/query.ts:526

Properties

children

children: Expression<string>[] = []

Contains the members of the logical expression

Inherited from

LogicalExpression.children

Source

packages/core/src/stores/webdaql/query.ts:497


operator

operator: "AND"

Inherited from

LogicalExpression.operator

Source

packages/core/src/stores/webdaql/query.ts:318

Methods

eval()

eval(target): boolean

Parameters

target: any

Returns

boolean

Overrides

LogicalExpression.eval

Source

packages/core/src/stores/webdaql/query.ts:533


toString()

toString(depth): string

Parameters

depth: number= 0

Returns

string

Inherited from

LogicalExpression.toString

Source

packages/core/src/stores/webdaql/query.ts:511