1. Go to this page and download the library: Download idci/graphql-client-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
idci / graphql-client-bundle example snippets
namespace App\Controller;
use IDCI\Bundle\GraphQLClientBundle\Client\GraphQLApiClientRegistryInterface;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class HomeController extends AbstractController
{
/**
* @Route("/")
*/
public function homeAction(GraphQLApiClientRegistryInterface $graphQlApiClientRegistry)
{
$firstClient = $graphQlApiClientRegistry->get('my_client_one');
$secondClient = $graphQlApiClientRegistry->get('my_client_two');
// ...
}
}
class GraphQLApiClient
{
public function buildQuery($action, array $requestedFields): GraphQLQuery;
public function buildMutation($action, array $requestedFields): GraphQLQuery;
}