From 49bc763c3c026b078656caf374b134e3e7a9d75d Mon Sep 17 00:00:00 2001 From: Vesa Meskanen Date: Fri, 1 Nov 2024 09:20:38 +0200 Subject: [PATCH] fix: update schema file path in otp repo --- 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 2ccb4a3630..ae0153b6bc 100644 --- a/build/generate-schema.js +++ b/build/generate-schema.js @@ -4,7 +4,7 @@ const http = require('https'); const graphqlSchemaSource = process.env.SCHEMA_SRC || - 'https://raw.githubusercontent.com/HSLdevcom/OpenTripPlanner/dev-2.x/src/main/resources/org/opentripplanner/apis/gtfs/schema.graphqls'; + 'https://raw.githubusercontent.com/HSLdevcom/OpenTripPlanner/dev-2.x/application/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}`;