PHP code example of axtiva / flexible-graphql-federation

1. Go to this page and download the library: Download axtiva/flexible-graphql-federation 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/ */

    

axtiva / flexible-graphql-federation example snippets




xtiva\FlexibleGraphql\Builder\Foundation\CodeGeneratorBuilder;
use Axtiva\FlexibleGraphql\Utils\SchemaBuilder;
use Axtiva\FlexibleGraphql\Generator\Config\Foundation\Psr4\CodeGeneratorConfig;
use Axtiva\FlexibleGraphql\Generator\Config\Foundation\Psr4\FieldResolverGeneratorConfig;
use Axtiva\FlexibleGraphql\Federation\Generator\Model\Foundation\Psr4\_EntitiesResolverGenerator;
use Axtiva\FlexibleGraphql\Federation\Generator\Model\Foundation\Psr4\_ServiceResolverGenerator;
use Axtiva\FlexibleGraphql\Federation\Generator\Config\Foundation\Psr4\FederationRepresentationResolverGeneratorConfig;
use Axtiva\FlexibleGraphql\Federation\Generator\model\Foundation\Psr4\FederationRepresentationResolverGenerator;
use Axtiva\FlexibleGraphql\FederationExtension\FederationSchemaExtender;

$namespace = 'Axtiva\FlexibleGraphql\Example\GraphQL';
$dir = __DIR__ . '/GraphQL';
$mainConfig = new CodeGeneratorConfig($dir, CodeGeneratorConfig::V7_4, $namespace);
$builder = new CodeGeneratorBuilder($mainConfig);
$fieldResolverConfig = new FieldResolverGeneratorConfig($mainConfig);
$representationConfig = new FederationRepresentationResolverGeneratorConfig($mainConfig);

$builder->addFieldResolverGenerator(new _EntitiesResolverGenerator($fieldResolverConfig));
$builder->addFieldResolverGenerator(new _ServiceResolverGenerator($fieldResolverConfig));
$builder->addModelGenerator(new FederationRepresentationResolverGenerator($representationConfig));

$generator = $builder->build();

$schema = FederationSchemaExtender::build(SchemaBuilder::build('/path/to/schema.graphql'));

foreach ($generator->generateAllTypes($schema) as $filename);