mirror of
https://github.com/datahub-project/datahub.git
synced 2025-06-27 05:03:31 +00:00
9 lines
285 B
Bash
Executable File
9 lines
285 B
Bash
Executable File
#!/bin/sh
|
|
if [ -f "combined.graphql" ] ; then
|
|
rm "combined.graphql"
|
|
fi
|
|
touch combined.graphql
|
|
echo "Generating combined GraphQL schema..."
|
|
echo "# Auto Generated During Docs Build" >> combined.graphql
|
|
cat ../../datahub-graphql-core/src/main/resources/*.graphql >> combined.graphql
|