I have following expression in my code (React, Appolo, GraphQl):
events: {global: {worker_lname: `='somebody'`, ORDER_BY: ['timestamp DESC, id DESC']}}
I want to know if is it possible to use that piece of code like this:
let myvar=worker_lname: `='somebody'`;
events: {global: {myvar, ORDER_BY: ['timestamp DESC, id DESC']}}