Hi,
I'm having the following issue with the library in this part of the code:
|
*/ |
|
private function extractEntityTypes(array $config): array |
|
{ |
|
$resolvedTypes = TypeInfo::extractTypes($config['query']); |
|
$entityTypes = []; |
|
|
|
foreach ($resolvedTypes as $type) { |
|
if ($type instanceof EntityObjectType) { |
|
$entityTypes[$type->name] = $type; |
|
} |
|
} |
|
|
|
return $entityTypes; |
The issue is that the library is unable to subscribe entities that aren't returned by a query.
Thank you!
Hi,
I'm having the following issue with the library in this part of the code:
apollo-federation-php/src/FederatedSchema.php
Lines 215 to 227 in 4f958dd
The issue is that the library is unable to subscribe entities that aren't returned by a query.
Thank you!