mirror of
https://github.com/wassname/talk.git
synced 2026-08-15 12:55:10 +08:00
11 lines
290 B
JavaScript
11 lines
290 B
JavaScript
export default function fetcher(query) {
|
|
return fetch(`${window.location.origin}/api/v1/graph/ql`, {
|
|
method: 'POST',
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ query }),
|
|
}).then(res => res.json());
|
|
}
|