Database search options

Hi all,

Very interesting all this, but my database has MANY fields, is it possible to just say search everywhere instead of telling it EACH AND EVERY field to look into?

import wixData from ‘wix-data’;
export function searchinput1_onkeyPress() {

$w.onReady(function() {

wixData.query(“Inventaire”);
.contains( $w(‘’).value) //Obviously, this seems to be where the game will be played. It’s my ONLY red dot because I left the field blank
.find()
.then(res => {
$w(‘#table1’).rows = res.items;