File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed
amplify-graphql-model-transformer/src/resolvers
amplify-graphql-transformer-core/src/transformation Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ export const generateSubscriptionRequestTemplate = (): string => {
77
88export const generateSubscriptionResponseTemplate = ( ) : string => {
99 const statements : Expression [ ] = [ toJson ( nul ( ) ) ] ;
10- return printBlock ( 'Subscription Request template' ) ( compoundExpression ( statements ) ) ;
10+ return printBlock ( 'Subscription Resonse template' ) ( compoundExpression ( statements ) ) ;
1111} ;
Original file line number Diff line number Diff line change @@ -189,13 +189,6 @@ export class GraphQLTransform {
189189 }
190190 }
191191
192- // transform schema
193- for ( const transformer of this . transformers ) {
194- if ( isFunction ( transformer . prepare ) ) {
195- transformer . prepare ( context ) ;
196- }
197- }
198-
199192 // Prepare
200193 for ( const transformer of this . transformers ) {
201194 if ( isFunction ( transformer . prepare ) ) {
You can’t perform that action at this time.
0 commit comments