DataviewJS for interactive Dataview

Hi.

I have the following simple Dataview code:

Blockquote

TABLE file.folder, finished
WHERE contains(field_1,"#a")
     OR contains(field2,"#b")
     
LIMIT 20

I would like to make interactive this code having Dataview to use it’s input from 4 INLINEFIELDS:

INLINEFIELD_1:: name_1 INLINEFIELD_2:: content_1
INLINEFIELD_3:: name_2 INLINEFIELD_4:: content_2

Blockquote

TABLE file.folder, finished
WHERE contains(name_1,content_1)
     OR contains(name_2,content_2)
LIMIT 20

Then, when I select the contents of the INLINEFIELDS:
INLINEFIELD_1:: name_1 INLINEFIELD_2:: content_1
INLINEFIELD_3:: name_2 INLINEFIELD_4:: content_2

Dataview use the new contents and displays the new data.

Is there a way to do it ?