I’d like to for example query my database for all items which exclude the text “value”
import wixData from 'wix-data';
wixData.query("myCollection")
.DOES NOT INCLUDE("identifier", "value")
.find()
.then( (results) => {
} )
.catch( (err) => {
let errorMsg = err;
} );