Query multiple spatial coordinates

Hello, I wish to make a list of coordinates tuple to query in order to save connections to server time.

Those coordinates are individuals.

I tried to define a variable of coordinates with no success.

Afterwards I thought about go through them with a for-each statement and my query:

[out:json];
[[10,32.78463,34.98642],[10,32.78463,34.68642]]->.tuples
way(around:10, .tuples)->.allways;
foreach .allways → .currentway(
(.allways; - .currentway;)->.allotherways;
node(w.currentway)->.e;
node(w.allotherways)->.f;
node.e.f;
(._ ; .result;) → .result;
);
.result out meta;