Hi there,
This code works for me
$w.onReady(function () {
wixData.query("Blog/Posts")
.hasSome("hashtags", "2018")
.find()
.then(results => {
$w("#repeater1").data = results.items;
})
});
And this code does not work
$w.onReady(function () {
wixData.query("Blog/Posts")
.hasSome("categories", "Новости")
.find()
.then(results => {
$w("#repeater1").data = results.items;
})
});
Any ideas? Why can’t I filter blog categories?
Thanks.