core.operator | Medplum

Operator variable

Search operators. These operators represent "modifiers" and "prefixes" in FHIR search. See: https://www.hl7.org/fhir/search.html

Signature:

Operator: {

readonly EQUALS: "eq";

readonly NOT_EQUALS: "ne";

readonly GREATER_THAN: "gt";

readonly LESS_THAN: "lt";

readonly GREATER_THAN_OR_EQUALS: "ge";

readonly LESS_THAN_OR_EQUALS: "le";

readonly STARTS_AFTER: "sa";

readonly ENDS_BEFORE: "eb";

readonly APPROXIMATELY: "ap";

readonly CONTAINS: "contains";

readonly STARTS_WITH: "sw";

readonly EXACT: "exact";

readonly TEXT: "text";

readonly NOT: "not";

readonly ABOVE: "above";

readonly BELOW: "below";

readonly IN: "in";

readonly NOT_IN: "not-in";

readonly OF_TYPE: "of-type";

readonly MISSING: "missing";

readonly PRESENT: "present";

readonly IDENTIFIER: "identifier";

readonly ITERATE: "iterate";

}