Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
stwiname committed Jul 24, 2024
1 parent 550d3d1 commit 9ae1410
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- Subgraph graphql schema migration to the migrate command (#2499)

## [5.1.0] - 2024-07-11
### Changed
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/src/graphql/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {buildASTSchema, DocumentNode, extendSchema, GraphQLSchema, parse, Source
import {directives} from './schema/directives';
import {scalas} from './schema/scalas';

export function loadBaseSchema(): GraphQLSchema {
function loadBaseSchema(): GraphQLSchema {
const schema = buildASTSchema(scalas);
return extendSchema(schema, directives);
}
Expand Down

0 comments on commit 9ae1410

Please sign in to comment.