Query not triggered - endless loop on additionalScope

Goal: I want to set a few fields with a GraphQL mutation when I click a button in my application. It worked before, but now, it stopped working.

When I set the parameters directly in the query, like in the screenshot, the query is not called at all. I changed my button event handler for debugging: console.log('Triggering test query'); console.log("Job ID", getOrder.data?.fulfillment_job?.[0]?.id); console.log("Packed at", moment(packedAtInput?.value)?.toISOString()); console.log("Packed by", packedByInput?.value); markJobPackedNew.trigger({ onSuccess: (data) => { console.log('Query succeeded', data); }, onFailure: (err) => { console.error('Query failed', err); } })
But then the debug console only gives back the logged data, it seems that the query itself has not been called:

When I inspect it in the browser debug tool, it shows a trigger by JS Code though.

I also tried inserting the "id"-Parameter with additionalScope, replacing {{transOrderIssues.value.job_id}} with {{id}} and calling the query with markJobPackedNew.trigger({additionalScope: {id: transOrderIssues.value.job_id}}) but this leads to an endless loop that crashes my browser tab in the end: