From 4951fb8356c36c4da363b028f6441c009920f94b Mon Sep 17 00:00:00 2001 From: sharhio Date: Tue, 31 Oct 2023 10:59:01 +0200 Subject: [PATCH] fix: otp schema source update --- build/generate-schema.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/generate-schema.js b/build/generate-schema.js index 3c6a2f617d..a443bdc910 100644 --- a/build/generate-schema.js +++ b/build/generate-schema.js @@ -8,7 +8,7 @@ const introspectionQuery = getIntrospectionQuery(); const outputJsonFilename = 'schema.json'; const graphqlSchemaSource = process.env.SCHEMA_SRC || - 'https://raw.githubusercontent.com/HSLdevcom/OpenTripPlanner/dev-2.x/src/ext/resources/legacygraphqlapi/schema.graphqls'; + 'https://raw.githubusercontent.com/HSLdevcom/OpenTripPlanner/dev-2.x/src/main/resources/org/opentripplanner/apis/gtfs/schema.graphqls'; const outputGraphQLFilename = 'schema.graphql'; const outputGraphQLFileCopy = `../digitransit-search-util/packages/digitransit-search-util-query-utils/schema/${outputGraphQLFilename}`;