2021-09-22 17:30:15 -07:00
|
|
|
#!/bin/sh
|
|
|
|
rm combined.graphql
|
|
|
|
touch combined.graphql
|
|
|
|
echo "Generating combined GraphQL schema..."
|
|
|
|
echo "# Auto Generated During Docs Build" >> combined.graphql
|
2022-08-26 16:29:01 -05:00
|
|
|
cat ../../datahub-graphql-core/src/main/resources/actions.graphql >> combined.graphql
|
2022-09-09 14:17:47 -07:00
|
|
|
cat ../../datahub-graphql-core/src/main/resources/analytics.graphql >> combined.graphql
|
|
|
|
cat ../../datahub-graphql-core/src/main/resources/app.graphql >> combined.graphql
|
2021-12-01 11:17:31 -08:00
|
|
|
cat ../../datahub-graphql-core/src/main/resources/auth.graphql >> combined.graphql
|
2022-09-09 14:17:47 -07:00
|
|
|
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
|
2022-12-07 16:21:55 -08:00
|
|
|
cat ../../datahub-graphql-core/src/main/resources/step.graphql >> combined.graphql
|