Helper function to build search ranges for priority or date values.
Description of the range.
import { buildRangeParameter } from "@dvelop-sdk/task";const range = buildRangeParameter({ from: new Date(), to: new Date("2025-01-01T00:00:00.000Z"), beginInclusive: true, endInclusive: true}); Copy
import { buildRangeParameter } from "@dvelop-sdk/task";const range = buildRangeParameter({ from: new Date(), to: new Date("2025-01-01T00:00:00.000Z"), beginInclusive: true, endInclusive: true});
Helper function to build search ranges for priority or date values.