aws-appsync-community icon indicating copy to clipboard operation
aws-appsync-community copied to clipboard

The AWS AppSync community

Results 175 aws-appsync-community issues
Sort by recently updated
recently updated
newest added

I created a GraphQL schema: ```graphql type Query { messages: [Message!]! @aws_iam @aws_oidc } type Message @aws_iam @aws_oidc { topic: ID text: String! } input SendMessageInput { topic: ID! text:...

bug

The DynamoDB APIs accept the parameter "ReturnConsumedCapacity". When passed the result includes the consumed capacity units of the executed operation. With that it is possible to associate "a cost" with...

enhancement

Hi, Currently, the `selectionSetGraphQL` field doe not give enough information about the selectionSet when Fragments are involved. Example: Schema: ```graphql type Bar { someField(someArg: String): String } type Foo {...

feature-request

Hi, I was looking to check if AppSync supports cross-account data sources, such as AppSync in one account using a DynamoDB table in another account. As per, [@dabit3's Tweet reply...

feature-request

AWS AppSync allows to define [default values](https://graphql.github.io/graphql-spec/June2018/#sec-Input-Objects) in schema like that ```graphql type Foo { bar( arg: Int = 20 ): Bar! } ``` or that ```graphql type Foo {...

bug

I have an update mutation resolver with the following as its request template: ``` #set ($updates = "") #if ($ctx.args.name) #set ($updates = "$updates, name = '$ctx.args.name'") #end #if ($ctx.args.duration)...

feature-request

Please also add the ability to add metadata to the AppSync response. This is currently available as GraphQL extensions: 1) https://github.com/graphql-dotnet/graphql-dotnet/issues/912 2) https://github.com/graphql/express-graphql#providing-extensions

feature-request

Hi, How to allow only two users of a chat application to share images ?

question

How can we use CustomResources.json to add new resolvers with RDS? Following what exists in YourAPI-rds.json (The auto generated API stack), it requires a RelationalDatabaseAccessRole Resource, adding that resource to...

question

In the AWS console when you authenticate using Cognito User Pools it asks you to enter the ClientId. Would it be possible to change this from a text field to...

enhancement