在这篇文章中,作者制作了一个这样的示例助手,使用的包是Lighthouse
public function graphql(string $query)
{
return $this->post('/graphql', [
'query' => $query
]);
}
所以可以像这样使用它:
$response = $this->graphql("{articles(first: 10) { edges { node { title } } } }");
但我可以在突变上实现它吗?如果例如我有一个突变:
type Mutation {
sampleMutation(
id: ID!
)
}
我不确定如何在突变上做到这一点。