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

Function selectExact

docs/app/js/sanddance-app.js:10302–10310  ·  view source on GitHub ↗
(column, value)

Source from the content-addressed store, hash-verified

10300 return searchExpression;
10301}
10302function selectExact(column, value) {
10303 if (value == null) return selectNullOrEmpty(column);
10304 const searchExpression = {
10305 name: column.name,
10306 operator: "==",
10307 value
10308 };
10309 return searchExpression;
10310}
10311function selectNone(column, values) {
10312 const expressions = values.map((value, i)=>{
10313 const searchExpression = {

Callers 1

selectExactAxisFunction · 0.70

Calls 1

selectNullOrEmptyFunction · 0.70

Tested by

no test coverage detected