I have this JSON data file - see example:
[
{
"date": "2019-4-22_16-21",
"site": "https://www.bnbc.com/",
"link": "https://www.bnbc.com/sites/"
},
{
"date": "2019-4-22_16-21",
"site": "https://www.wdc.com/new/",
"link": "https://www.wdc.com/new-sites/"
},
{
"date": "2019-4-23_18-22",
"site": "https://www.bnbc.com/new/",
"link": "https://www.bnbc.com/new-sites/"
}
]
- I try to go first to find the items with a certain date (date = 2019-4-22_16-21)
{{ $json := getJSON "data/snippets.json" }}
{{ $mydate := (where $json "date" .Params.date) }}
which is fine
- Then I go to check the link to have in it “bnbc”
{{ $bnbc := (where $mydate "link" "in" "bnbc") }}
On the second step unfortunately the range is empty, can you tell me why?