= {}) {
const headers = { 'Content-Type': 'application/json' };
const res = await fetch(API_URL, {
method: 'POST',
headers,
body: JSON.stringify({ query, variables }),
});
const json = await res.json();
if (json.errors) {
console.log(json.errors);
throw new Error('Failed to fetch API');
}
return json.data;
}
async function fetchAPI(query: string, { variables }: { variables: Record<string, unknonw }): unknonwn {}
чет я нитуда написал?
async function fetchAPI(query: string, { variables }: { variables?: Record<string, unknonw } = {}): unknonwn { // body }
Обсуждают сегодня