GraphQL Requests
GraphQL Requests
/**
* @var string the GraphQL schema name
*/
protected $schema = 'sandboxes';public function sandboxes_save_object_returns_200(): void
{
$mutation = <<<'GQL'
mutation {
saveSandbox(data: { title: "New Sandbox" }) {
id
title
}
}
GQL;
// ...
}Last updated