mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-03 07:09:21 +00:00
9 lines
412 B
Bash
9 lines
412 B
Bash
![]() |
#!/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/entity.graphql >> combined.graphql
|
||
|
cat ../../datahub-graphql-core/src/main/resources/search.graphql >> combined.graphql
|
||
|
cat ../../datahub-graphql-core/src/main/resources/app.graphql >> combined.graphql
|