Harshit Gupta
Harshit Gupta
> Hi, can you share a snippet of autocomplete component where multi-select works? I was trying to achieve this functionality and it looks like we need to modify both CustomAutoComplete...
```javascript const graphApi = new AmplifyGraphqlApi(stack, "GraphqlApi", { functionSlots: [...getCreateSlots], definition: graphQLDefinition, apiName: "GraphqlApi", translationBehavior: {}, transformerPlugins: [], authorizationModes: { apiKeyConfig: { expires: Duration.days(365), description: "API Key for GraphQL API...
Sure! I am trying to implement atomic counters for certain fields. ```graphql type Question @model { id: ID! content: String! upvoteCount: Int! @default("0") downvoteCount: Int! @default("0") viewCount: Int! @default("0") }...
Here is a quick video. https://github.com/aws-amplify/amplify-category-api/assets/55243567/5b41a335-9eb7-463f-a55a-771ea36af50b
> ```js > const graphApi = new AmplifyGraphqlApi(stack, "GraphqlApi", { > functionSlots: [...getCreateSlots], > definition: graphQLDefinition, > apiName: "GraphqlApi", > translationBehavior: {}, > transformerPlugins: [], > authorizationModes: { > apiKeyConfig:...