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
Problem statement: ‘Spring for GraphQL’ is supporting multiple schema files (*.graphqls) under the location classpath:graphql/** , which is typically src/main/resources/graphql
How to merge multiple schema files into one schema file for CI pipeline ? Is there any build plugin available ?
Hello 👋
There is no built-in functionality to do it. You would need to write some short script/app to merge the schema + transform it to get the final federated schema.
Since you need the schema artifact, it doesn't matter in which language you implement it. In order to do it using GraphQL Java see
Problem statement: ‘Spring for GraphQL’ is supporting multiple schema files (*.graphqls) under the location classpath:graphql/** , which is typically src/main/resources/graphql
How to merge multiple schema files into one schema file for CI pipeline ? Is there any build plugin available ?
CI workflow: https://www.apollographql.com/tutorials/voyage-part3/06-schema-checks-in-ci
The text was updated successfully, but these errors were encountered: