You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Were running a command to compose a supergraph: » npx @apollo/rover supergraph compose --config ./graph/supergraph-config.yaml > supergraph.graphql
However, because our rover version is not up to date (on CI server), the beginning of file will look like this:
There is a newer version of Rover available: �[36mv0.1.5�[0m (currently running v0.1.3)
For instructions on how to install, run �[33m`rover docs open start`�[0m
schema
@core(feature: "https://specs.apollo.dev/core/v0.1"),
@core(feature: "https://specs.apollo.dev/join/v0.1")
{
query: Query
This results to internal server error, when we pass the generated supergraph to graphql gateway.
Steps to reproduce
Add an older rover version to package.json devDependencies:
Make sure you have no config, so the update check will be performed:
npx @apollo/rover config clear
Run rover command to compose a supergraph: npx @apollo/rover supergraph compose --config ./graph/supergraph-config.yaml > supergraph.graphql
Expected result
The output file supergraph.graphql should contain a valid composed supergraph
Actual result
The beginning of file contains an update notice:
┌──────────────────────────────────────────────────────────────────────────────────────────┐
│ │
│ There is a newer version of Rover available: v0.1.5 (currently running v0.1.3) │
│ │
│ For instructions on how to install, run `rover docs open start` │
│ │
└──────────────────────────────────────────────────────────────────────────────────────────┘
schema
@core(feature: "https://specs.apollo.dev/core/v0.1"),
@core(feature: "https://specs.apollo.dev/join/v0.1")
{
query: Query
mutation: Mutation
}
...
Environment
Rover Info:
Version: 0.1.3
Install Location: /Users/lkol/projects/sok/voikukka/services/backend/graphql/node_modules/binary-install/bin/rover
OS: Mac OS 10.15.7 [64-bit]
Shell: /bin/zsh
The text was updated successfully, but these errors were encountered:
Description
Were running a command to compose a supergraph:
» npx @apollo/rover supergraph compose --config ./graph/supergraph-config.yaml > supergraph.graphql
However, because our rover version is not up to date (on CI server), the beginning of file will look like this:
This results to internal server error, when we pass the generated supergraph to graphql gateway.
Steps to reproduce
Add an older rover version to package.json devDependencies:
Make sure you have no config, so the update check will be performed:
Run rover command to compose a supergraph:
npx @apollo/rover supergraph compose --config ./graph/supergraph-config.yaml > supergraph.graphql
Expected result
The output file
supergraph.graphql
should contain a valid composed supergraphActual result
The beginning of file contains an update notice:
Environment
The text was updated successfully, but these errors were encountered: