Skip to content

Instantly share code, notes, and snippets.

@codeitlikemiley
Created June 20, 2019 14:55
Show Gist options
  • Save codeitlikemiley/618baf77e645a14065cc1a6e687557c4 to your computer and use it in GitHub Desktop.
Save codeitlikemiley/618baf77e645a14065cc1a6e687557c4 to your computer and use it in GitHub Desktop.
trait graphql
<?php
namespace Tests;
trait GraphQLAPI
{
/**
* @param string $query
* @return mixed
*/
public function graphql(string $query)
{
return $this->post('/graphql', [
'query' => $query
]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment