Equality Operator Examples

Equal (EQ)

https://h.api.crmls.org/RESO/OData/Property?$filter=ArchitecturalStyle%20eq%20OData.Models.Style_Flags'CB,TRD'&$count=true

Not Equal (NE)

https://h.api.crmls.org/RESO/OData/Property?$filter=ArchitecturalStyle%20ne%20OData.Models.Style_Flags'Custom_Built,Traditional'&$count=true

Less Than (LT)

https://h.api.crmls.org/RESO/OData/Property?$filter=OffMarketTimestamp+lt+now()
https://h.api.crmls.org/RESO/OData/Property?$filter=time(OffMarketTimestamp)+lt+time(PhotosChangeTimestamp) br>

Less Than or Equal (LE)

https://h.api.crmls.org/RESO/OData/Property?$filter=(Appliances%20has%20OData.Models.Appliances_Flags'Freezer,Garbage_Disposal')%20and%20(PropertyUnits/any(d:d/UnitTypeActualRent%20le%201400))&$count=true

Greater Than (GT)

https://h.api.crmls.org/RESO/OData/Member?$filter=LastLoginTimestamp+gt+now()

Greater Than or Equal (GE)

https://h.api.crmls.org/RESO/OData/Property?$filter=date(ExpirationDate)+ge+date(EndingDate)

Has

https://h.api.crmls.org/RESO/OData/Property?$filter=Appliances%20has%20OData.Models.Appliances_Flags'Freezer,Garbage_Disposal'&$count=true
https://h.api.crmls.org/RESO/OData/Property?$filter=Appliances%20has%20OData.Models.Appliances_Flags'Ice_Maker,Garbage_Disposal'&$count=true
https://h.api.crmls.org/RESO/OData/Property?$filter=Appliances%20has%20OData.Models.Appliances_Flags'Ice_Maker'&$count=true