MCPcopy Create free account
hub / github.com/microsoft/SandDance / selectNullOrEmpty

Function selectNullOrEmpty

docs/app/js/sanddance-app.js:10295–10301  ·  view source on GitHub ↗
(column)

Source from the content-addressed store, hash-verified

10293 };
10294}
10295function selectNullOrEmpty(column) {
10296 const searchExpression = {
10297 name: column.name,
10298 operator: "isnullorEmpty"
10299 };
10300 return searchExpression;
10301}
10302function selectExact(column, value) {
10303 if (value == null) return selectNullOrEmpty(column);
10304 const searchExpression = {

Callers 1

selectExactFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected