nice-airport-15607
09/15/2020, 10:57 PMpulumi refresh
and pulumi stack export > stack.json
and then pulumi stack import < stack.json
but nothing seems to be helping 😞
error: error creating AppSync Resolver: NotFoundException: No field named showScheduledReport found on type Query
AppSync Resolver:
export const showScheduledReportResolver = new aws.appsync.Resolver(
resourceName(pulumi, 'showScheduledReport-R'),
{
apiId: publicApi.id,
dataSource: readLambdaDataSource.name,
field: 'showScheduledReport',
requestTemplate: mainLambdaRequest(),
responseTemplate: mainLambdaResponse,
type: 'Query'
}
)
GraphQL:
type Query {
showScheduledReport(
Id: Int!
): ScheduledReport
}