Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
azarboon authored Dec 22, 2024
1 parent 0546ec2 commit 393ffec
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/aws-cdk-lib/aws-appsync/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,10 @@ input DemoInput {
type Mutation {
callStepFunction(input: DemoInput!): job
}

type Query {
_placeholder: String
}
```

GraphQL request mapping template `request.vtl`:
Expand Down Expand Up @@ -924,4 +928,4 @@ const api = new appsync.GraphqlApi(this, 'OwnerContact', {
definition: appsync.Definition.fromSchema(appsync.SchemaFile.fromAsset(path.join(__dirname, 'appsync.test.graphql'))),
ownerContact: 'test-owner-contact',
});
```
```

0 comments on commit 393ffec

Please sign in to comment.