Now it works with yyyy-MM-dd
and dd-MM-yyyy
, but not with yyyy/MM/dd
!
Working example with yyyy-MM-dd
:
>>> curl -kg --header "X-API-Token: $(cat /var/rudder/run/api-token)" 'https://localhost/rudder/api/latest/nodes?where=[{"objectType":"node","attribute":"inventoryDate","comparator":"lt","value":"2024-12-31"}]' --silent | jq '.data.nodes | length'
1
logs :
2024-11-26 14:06:39+0300 DEBUG query.node-fact - (only matches node and relay) && ([node.inventoryDate lt 2024-12-31])
2024-11-26 14:06:39+0300 DEBUG query.node-fact - --'RUDDERTEST1' (e98a11f8-7516-4775-b51f-69532733e815)--
2024-11-26 14:06:39+0300 TRACE query.node-fact - [true] for only matches node and relay on 'Node'
2024-11-26 14:06:39+0300 TRACE query.node-fact - [true] for 'lt 2024-12-31' on [2019-06-01T00:00:00+03:00]
2024-11-26 14:06:39+0300 DEBUG query.node-fact - = [true] on 'RUDDERTEST1' (e98a11f8-7516-4775-b51f-69532733e815)
And NON-WORKING example with yyyy/MM/dd
:
>>> curl -kg --header "X-API-Token: $(cat /var/rudder/run/api-token)" 'https://localhost/rudder/api/latest/nodes?where=[{"objectType":"node","attribute":"inventoryDate","comparator":"lt","value":"2024/12/31"}]' --silent | jq '.data.nodes | length'
0
logs:
2024-11-26 14:06:01+0300 DEBUG query.node-fact - (only matches node and relay) && ([node.inventoryDate lt 2024/12/31])
2024-11-26 14:06:01+0300 DEBUG query.node-fact - --'RUDDERTEST1' (e98a11f8-7516-4775-b51f-69532733e815)--
2024-11-26 14:06:01+0300 TRACE query.node-fact - [true] for only matches node and relay on 'Node'
2024-11-26 14:06:01+0300 TRACE query.node-fact - - '2024/12/31' can not be parsed into correct type: false'
2024-11-26 14:06:01+0300 DEBUG query.node-fact - = [false] on 'RUDDERTEST1' (e98a11f8-7516-4775-b51f-69532733e815)