Skip to main content

RQBJsonLogicDateTimeOperations

RQBJsonLogicDateTimeOperations = { dateAfter: FnDateDate; dateBefore: FnDateDate; dateBetween: FnDateDateDate; dateIn: FnDateArrayOfDates; dateNotBetween: FnDateDateDate; dateNotIn: FnDateArrayOfDates; dateNotOn: FnDateDate; dateOn: FnDateDate; dateOnOrAfter: FnDateDate; dateOnOrBefore: FnDateDate; }

Defined in: types.ts:106

Properties

dateAfter

dateAfter: FnDateDate

Defined in: types.ts:108

Determines if the first date is after the second date.


dateBefore

dateBefore: FnDateDate

Defined in: types.ts:110

Determines if the first date is before the second date.


dateBetween

dateBetween: FnDateDateDate

Defined in: types.ts:112

Determines if the second date is between the first and third dates (inclusive).


dateIn

dateIn: FnDateArrayOfDates

Defined in: types.ts:114

Determines if the first date is one of the values in the array of dates.


dateNotBetween

dateNotBetween: FnDateDateDate

Defined in: types.ts:116

Determines if the second date is not between the first and third dates.


dateNotIn

dateNotIn: FnDateArrayOfDates

Defined in: types.ts:118

Determines if the first date is not one of the values in the array of dates.


dateNotOn

dateNotOn: FnDateDate

Defined in: types.ts:120

Determines if the first date is not the same as the second date.


dateOn

dateOn: FnDateDate

Defined in: types.ts:122

Determines if the first date is the same as the second date (at the level of least precision between the two).


dateOnOrAfter

dateOnOrAfter: FnDateDate

Defined in: types.ts:124

Determines if the first date is either the same as the second date or after it.


dateOnOrBefore

dateOnOrBefore: FnDateDate

Defined in: types.ts:126

Determines if the first date is either the same as the second date or before it.


caution

API documentation is generated from the latest commit on the main branch. It may be somewhat inconsistent with official releases of React Query Builder.