/
How do I search for streams after a certain date?
How do I search for streams after a certain date?
You can search for streams created after a certain date using the tmborn query arg:
root@c-csn1:~>curl -L "$SCSP_HOST/egan.2011_05?format=json&domain=test1.c-csn1.enfield.com&size=5&tmborn>=2017-01-16T19:24:20.476000Z&fields=tmborn,name&sort=tmborn:desc"
[
{"last_modified":"2017-01-16T19:24:50.328400Z", "name":"Egan.2011_0503.16-43-27.jpg"},
{"last_modified":"2017-01-16T19:24:49.900400Z", "name":"Egan.2011_0503.16-43-42.jpg"},
{"last_modified":"2017-01-16T19:24:49.632400Z", "name":"Egan.2011_0503.16-43-56.jpg"},
{"last_modified":"2017-01-16T19:24:49.412400Z", "name":"Egan.2011_0503.16-44-07.jpg"},
{"last_modified":"2017-01-16T19:24:48.992400Z", "name":"Egan.2011_0503.17-51-24.jpg"} #This one won't be included in the next search based on the search.
]
Changing the date slightly, you can see one less result.
root@c-csn1:~>curl -L "$SCSP_HOST/egan.2011_05?format=json&domain=test1.c-csn1.enfield.com&size=5&tmborn>=2017-01-16T19:24:49.000000Z&fields=tmborn,name&sort=tmborn:desc"
[
{"last_modified":"2017-01-16T19:24:50.328400Z", "name":"Egan.2011_0503.16-43-27.jpg"},
{"last_modified":"2017-01-16T19:24:49.900400Z", "name":"Egan.2011_0503.16-43-42.jpg"},
{"last_modified":"2017-01-16T19:24:49.632400Z", "name":"Egan.2011_0503.16-43-56.jpg"},
{"last_modified":"2017-01-16T19:24:49.412400Z", "name":"Egan.2011_0503.16-44-07.jpg"}
]
Where $SCSP_HOST is any Swarm node.
Related content
Can I search for streams that match a particular content type?
Can I search for streams that match a particular content type?
More like this
Search Collections
Search Collections
More like this
How do I create a lifepoint in the correct format for a specific date or time?
How do I create a lifepoint in the correct format for a specific date or time?
More like this
Search Examples
Search Examples
More like this
Search Query Arguments
Search Query Arguments
More like this
Walkthrough: Ordering Sets of Filtered Objects
Walkthrough: Ordering Sets of Filtered Objects
More like this
© DataCore Software Corporation. · https://www.datacore.com · All rights reserved.