mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-03 15:17:58 +00:00

Co-authored-by: Chris Collins <chriscollins3456@gmail.com> Co-authored-by: RyanHolstien <RyanHolstien@users.noreply.github.com>
20 lines
1.4 KiB
Bash
Executable File
20 lines
1.4 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
|
|
cat ../../datahub-graphql-core/src/main/resources/lineage.graphql >> combined.graphql
|
|
cat ../../datahub-graphql-core/src/main/resources/properties.graphql >> combined.graphql
|
|
cat ../../datahub-graphql-core/src/main/resources/forms.graphql >> combined.graphql |