Download the PHP package skillshare/apollo-federation-php without Composer
On this page you can find all versions of the php package skillshare/apollo-federation-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download skillshare/apollo-federation-php
More information about skillshare/apollo-federation-php
Files in skillshare/apollo-federation-php
Package apollo-federation-php
Short Description A PHP port of the Apollo Federation specification.
License MIT
Informations about the package apollo-federation-php
Apollo Federation PHP
This package provides classes and utilities for webonyx/graphql-php
for creating federated GraphQL subgraphs in PHP to be consumed by the Apollo Gateway.
⚠️ IMPORTANT: This package is still in active development and it might introduce breaking changes.
Usage
Via composer:
Entities
An entity is an object type that you define canonically in one subgraph and can then reference and extend in other subgraphs. It can be defined via the EntityObjectType
which takes the same configuration as the default ObjectType
plus a keyFields
and __resolveReference
properties.
-
keyFields
— defines the entity's primary key, which consists of one or more of the type's. An entity's key cannot include fields that return a union or interface. __resolveReference
— resolves the representation of the entity from the provided reference. Subgraphs use representations to reference entities from other subgraphs. A representation requires only an explicit __typename definition and values for the entity's primary key fields.
For more detail on entities, see the official docs.
Entity references
A subgraph can reference entities from another subgraph by defining a stub including just enough information to know how to interact with the referenced entity. Entity references are created via the EntityRefObjectType
which takes the same configuration as the base EntityObjectType
.
For more detail on entity references, see the official docs.
Extending
A subgraph can add fields to an entity that's defined in another subgraph. This is called extending the entity. When a subgraph extends an entity, the entity's originating subgraph is not aware of the added fields. Only the extending subgraph (along with the gateway) knows about these fields.
The subgraph can extend using the following configuration properties:
-
isExternal
— marks a field as owned by another service. This allows service A to use fields from service B while also knowing at runtime the types of that field. -
provides
— used to annotate the expected returned fieldset from a field on a base type that is guaranteed to be selectable by the gateway. requires
— used to annotate the required input fieldset from a base type for a resolver. It is used to develop a query plan where the required fields may not be needed by the client, but the service may need additional information from other services.
Federated schema
The FederatedSchema
class extends from the base GraphQL\Schema
class and augments a schema configuration using entity types and federated field annotations with Apollo Federation metadata. See the docs for more info.
Config
The config parameter for the FederatedSchema
object is entirely compatible with the Schema
config argument. On top of this, we support the following optional parameters:
entityTypes
- the entity types (which extendEntityObjectType
) which will form the_Entity
type on the federated schema. If not provided, the Schema will scan theQuery
type tree for all types extendingEntityObjectType
.
Disclaimer
Documentation in this project include content quoted directly from the Apollo official documentation to reduce redundancy.