-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update dependency apollographql.hotchocolate.federation to v1 #645
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/major-apollo-graphql-packages
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1
−1
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Apollo Federation Subgraph Compatibility Results
|
renovate
bot
force-pushed
the
renovate/major-apollo-graphql-packages
branch
from
November 9, 2024 10:07
bbcacd3
to
116da2c
Compare
✅ Docs Preview ReadyNo new or changed pages found. |
Apollo Federation Subgraph Compatibility Results
|
renovate
bot
force-pushed
the
renovate/major-apollo-graphql-packages
branch
from
November 16, 2024 09:35
116da2c
to
61f9e5a
Compare
Apollo Federation Subgraph Compatibility Results
|
renovate
bot
force-pushed
the
renovate/major-apollo-graphql-packages
branch
from
November 17, 2024 22:06
61f9e5a
to
f8bdc75
Compare
Apollo Federation Subgraph Compatibility Results
|
renovate
bot
force-pushed
the
renovate/major-apollo-graphql-packages
branch
from
December 21, 2024 10:35
f8bdc75
to
c2db29a
Compare
Apollo Federation Subgraph Compatibility Results
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.2.0
->1.3.0
Release Notes
apollographql/federation-hotchocolate (ApolloGraphQL.HotChocolate.Federation)
v1.3.0
Minor Changes
Patch Changes
Other Changes
v1.2.1
Patch Changes
Other Changes
v1.2.0
Minor Changes
Patch Changes
Other Changes
v1.1.0
Minor Changes
Adds support for
HotChocolate
v13.6.0.v1.0.0
Apollo Federation for HotChocolate
Apollo Federation is a powerful, open architecture that helps you create a unified supergraph that combines multiple GraphQL APIs.
ApolloGraphQL.HotChocolate.Federation
provides Apollo Federation support for building subgraphs in theHotChocolate
ecosystem. Individual subgraphs can be run independently of each other but can also specify relationships to the other subgraphs by using Federated directives. See Apollo Federation documentation for details.Generating Federated Schemas
ApolloGraphQL.HotChocolate.Federation
package is published to Nuget. Update your.csproj
file with following package referencesAfter installing the necessary packages, you need to register Apollo Federation with your GraphQL service. You need to opt-in to Federation v1 or v2 schema by invoking corresponding builder extension
Apollo Federation requires subgraphs to provide some additional metadata to make them supergraph aware. Entities are GraphQL objects that can be uniquely identified across the supergraph by the specified
@key
s. Since entities can be extended by various subgraphs, we need an extra entry point to access the entities, i.e. subgraphs need to implement reference resolvers for entities that they support.All federated directives are provided as attributes that can be applied directly on classes/fields/methods. Alternatively, if you need more granular control, you can use code first approach and manually populate federation information on the underlying GraphQL type descriptor. All federated directives expose corresponding methods on the applicable descriptor. Example attribute usage
Federation v1 directives
Extends
applicable on objects, see@extends
documentationExternal
applicable on fields, see@external
documentationKey
applicable on objects, see@key
documentationProvides
applicable on fields, see@provides
documentationRequires
applicable on fields, see@requires
documentationFederation v2 directives (includes all of the v1 directives)
ApolloTag
applicable on schema, see@tag
documentationApolloAuthenticated
(since v2.5) applicable on enum, field, interface and object,@authenticated
documentationComposeDirective
(since v2.1) applicable on schema, see@composeDirective
documentationContact
applicable on schema, see@contact
usageInaccessible
applicable on all type definitions, see@inaccessible
documentationInterfaceObject
(since v2.3) applicable on objects, see@interfaceObject
documentationKeyInterface
applicable on interfaces, see entity interface@key
documentationLink
applicable on schema, see@link
documentationRequiresScopes
(since v2.5) applicable on enum, field, interface and object,@requiresScopes
documentationShareable
applicable on schema, see@shareable
documentationEntity resolution
Map
applicable on entity resolver method paramaters, allows you to map complex argument to a simpler representation value, e.g.[Map("foo.bar")] string bar
ReferenceResolver
applicable on public static methods within an entity class to indicate entity resolverv0.3.0
Minor Changes
@authenticated
and@requiresScopes
(#33) @dariuszkucOther Changes
Configuration
📅 Schedule: Branch creation - "every weekend" in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.