federation-hotchocolate icon indicating copy to clipboard operation
federation-hotchocolate copied to clipboard

HotChocolate support for Apollo Federation

Results 16 federation-hotchocolate issues
Sort by recently updated
recently updated
newest added

Subgraph publish errors when using this library: ``` DIRECTIVE_DEFINITION_INVALID: [shop] Invalid definition for directive "@key": argument "fields" should have type "_FieldSet!" but found type "FieldSet!" DIRECTIVE_DEFINITION_INVALID: [shop] Invalid definition for...

I'm shifting over to use federation and directives with this package, but now getting linting errors (from Apollo Studio) within our pipeline. I believe they shouldn't exist and hence the...

In `ArgumentParser.TryGetValue`, the casting of all string value node type is done in the following manner: ```csharp value = (T)scalarType.ParseLiteral(valueNode)!; ``` Refer [here](https://github.com/apollographql/federation-hotchocolate/blob/87bf1e70d162ad763c3ddc23b9422f577f893c27/Federation/Helpers/ArgumentParser.cs#L75C1-L75C64). This causes the following error from the...

The type `CollectionSegmentInfo` is defined within HotChocolate for paging responses. Considering that, two subgraphs that use this same type end up with the below error on rover subgraph validation. ```...

Currently we don't support all features of `@link` directive. ```graphql directive @link( url: String!, as: String, import: [Import], for: Purpose) repeatable on SCHEMA scalar Import enum Purpose { SECURITY EXECUTION...

enhancement

Reference resolver currently fails to map `@key`s that specify list fields. `ArgumentParser` is currently missing case for `SyntaxKind.ListValue` so whenever we have to process representation with list values it is...

bug