Add solution

This commit is contained in:
Julius Freudenberger 2025-11-19 23:24:55 +01:00
parent 41ae601c19
commit 2c35421a33
4 changed files with 8 additions and 11 deletions

View file

@ -4,7 +4,7 @@ fetch("https://countries.trevorblades.com/", {
"method": "POST",
"body": JSON.stringify(
{
query: "", // Fill in Query here
query: "query countriesPayingIn($currency: [String!]!) {countries(filter: {currency: {in:$currency}}) { name code }}",
"operationName": "countriesPayingIn",
"variables": { "currency": currency }
}),