0
GraphQLエンドポイントから一部のデータを取得しようとしていますが、「クエリ文字列を指定する必要があります」というエラーが表示され続けます。私はクエリ文字列を提供していると確信していますが、このエラーはどこから来たのですか?GraphQL APIから取得するクエリ文字列を提供
エンドポイントは次のとおりです。この場合、https://antserver-blocjgjbpw.now.sh/graphql
const query = `{
ants {
name
color
length
weight
}
}`
document.getElementById("basicFetchButton").addEventListener("click",() => {
\t fetch("https://antserver-blocjgjbpw.now.sh/graphql", {
\t method: 'POST',
\t \t 'Content-Type': 'application/graphql',
body: JSON.stringify({query})
})
.then(res => res.json())
.then(data => console.log(data))
})