I only want to show data of the next 7 days
I found a topic concerning my question,
so far I got the following code:
var d = new Date();
d.setDate(d.getDate() + 7);
var dateStr = d.toISOString();
return '{"Datum_product":{"$":"'+ dateStr +'"}}';
but my knowledge of JavaScript is very bad so can you help me do this for my app?