We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fbc922 commit 96dc2faCopy full SHA for 96dc2fa
packages/altair-app/src/app/modules/altair/effects/query.effect.ts
@@ -531,7 +531,7 @@ export class QueryEffects {
531
return this.actions$.pipe(
532
ofType(gqlSchemaActions.LOAD_SDL_SCHEMA),
533
mergeMap((data: gqlSchemaActions.LoadSDLSchemaAction) => {
534
- openFile({ accept: '.gql' }).then((sdlData: string) => {
+ openFile({ accept: ['.gql', '.graphql'] }).then((sdlData: string) => {
535
try {
536
const schema = this.gqlService.sdlToSchema(sdlData);
537
if (schema) {
0 commit comments