Un nou parteneriat cu facilități și beneficii exclusive pentru membrii IPA IPA Secția Română anunță cu bucurie încheierea unui nou parteneriat strategic cu Samsung, menit să ofere membrilor organizației acces la […]
Find out more »serverless deploy --stage dev
type Query getPost(id: ID!): Post listPosts(limit: Int, nextToken: String): PostConnection!
type Subscription onPostCreated: Post @aws_subscribe(mutations: ["createPost"])
| Mode | Use Case | |------|----------| | | Authenticated user operations | | API Key | Public, read-only access (expires) | | IAM | Service-to-service calls (EC2, Lambda) |
type Query publicFeed: [Post] @aws_api_key
GraphQL API built with AWS AppSync, providing real-time and offline-capable data synchronization. This repository contains the GraphQL schema, resolvers, data sources, and infrastructure-as-code for the [Project Name] GraphQL API. The API leverages AWS AppSync for managed GraphQL, DynamoDB for primary data storage, and Lambda for custom business logic.
type Mutation createPost(input: CreatePostInput!): Post updatePost(id: ID!, input: UpdatePostInput!): Post deletePost(id: ID!): Boolean