datahub/docs-website/graphql/generateGraphQLSchema.sh
Aditya Radhakrishnan f0f0355a83
feat(onboarding): adds framework and some steps for onboarding steps UI (#6462)
* feat(onboarding): adds models and API for onboarding steps feature

* feat(onboarding): adds backend for onboarding steps feature

* feat(onboarding): adds framework and some steps for onboarding steps UI
2022-12-07 16:21:55 -08:00

18 lines
1.2 KiB
Bash
Executable File

#!/bin/sh
rm combined.graphql
touch combined.graphql
echo "Generating combined GraphQL schema..."
echo "# Auto Generated During Docs Build" >> combined.graphql
cat ../../datahub-graphql-core/src/main/resources/actions.graphql >> combined.graphql
cat ../../datahub-graphql-core/src/main/resources/analytics.graphql >> combined.graphql
cat ../../datahub-graphql-core/src/main/resources/app.graphql >> combined.graphql
cat ../../datahub-graphql-core/src/main/resources/auth.graphql >> combined.graphql
cat ../../datahub-graphql-core/src/main/resources/constraints.graphql >> combined.graphql
cat ../../datahub-graphql-core/src/main/resources/entity.graphql >> combined.graphql
cat ../../datahub-graphql-core/src/main/resources/ingestion.graphql >> combined.graphql
cat ../../datahub-graphql-core/src/main/resources/recommendation.graphql >> combined.graphql
cat ../../datahub-graphql-core/src/main/resources/search.graphql >> combined.graphql
cat ../../datahub-graphql-core/src/main/resources/tests.graphql >> combined.graphql
cat ../../datahub-graphql-core/src/main/resources/timeline.graphql >> combined.graphql
cat ../../datahub-graphql-core/src/main/resources/step.graphql >> combined.graphql