選取您的 Cookie 偏好設定

我們使用提供自身網站和服務所需的基本 Cookie 和類似工具。我們使用效能 Cookie 收集匿名統計資料,以便了解客戶如何使用我們的網站並進行改進。基本 Cookie 無法停用,但可以按一下「自訂」或「拒絕」以拒絕效能 Cookie。

如果您同意,AWS 與經核准的第三方也會使用 Cookie 提供實用的網站功能、記住您的偏好設定,並顯示相關內容,包括相關廣告。若要接受或拒絕所有非必要 Cookie,請按一下「接受」或「拒絕」。若要進行更詳細的選擇,請按一下「自訂」。

使用 Amazon DynamoDB 的管道解析程式範例

焦點模式
使用 Amazon DynamoDB 的管道解析程式範例 - AWS AppSync GraphQL

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

假設您想要在名為 的欄位上連接管道解析程式getPost(id:ID!),該欄位會從具有下列 GraphQL 查詢的 Amazon DynamoDB 資料來源傳回Post類型:

getPost(id:1){ id title content }

首先,Query.getPost使用下面的程式碼將簡單的解析程式連接到 。這是簡單解析程式程式碼的範例。請求處理常式中未定義邏輯,回應處理常式只會傳回最後一個函數的結果。

/** * Invoked **before** the request handler of the first AppSync function in the pipeline. * The resolver `request` handler allows to perform some preparation logic * before executing the defined functions in your pipeline. * @param ctx the context object holds contextual information about the function invocation. */ export function request(ctx) { return {} } /** * Invoked **after** the response handler of the last AppSync function in the pipeline. * The resolver `response` handler allows to perform some final evaluation logic * from the output of the last function to the expected GraphQL field type. * @param ctx the context object holds contextual information about the function invocation. */ export function response(ctx) { return ctx.prev.result }

接著,定義從資料來源擷取後置項目GET_ITEM的函數:

import { util } from '@aws-appsync/utils' import * as ddb from '@aws-appsync/utils/dynamodb' /** * Request a single item from the attached DynamoDB table datasource * @param ctx the context object holds contextual information about the function invocation. */ export function request(ctx) { const { id } = ctx.args return ddb.get({ key: { id } }) } /** * Returns the result * @param ctx the context object holds contextual information about the function invocation. */ export function response(ctx) { const { error, result } = ctx if (error) { return util.appendError(error.message, error.type, result) } return ctx.result }

如果在請求期間發生錯誤,函數的回應處理常式會附加錯誤,該錯誤會在 GraphQL 回應中傳回給呼叫用戶端。將 GET_ITEM函數新增至解析程式函數清單。當您執行查詢時,GET_ITEM函數的請求處理常式會使用 AWS AppSync DynamoDB 模組提供的 utils,以使用 id作為金鑰來建立DynamoDBGetItem請求。 ddb.get({ key: { id } })會產生適當的GetItem操作:

{ "operation" : "GetItem", "key" : { "id" : { "S" : "1" } } }

AWS AppSync 使用 請求從 Amazon DynamoDB 擷取資料。傳回資料後,由GET_ITEM函數的回應處理常式處理,它會檢查錯誤,然後傳回結果。

{ "result" : { "id": 1, "title": "hello world", "content": "<long story>" } }

最後,解析程式的回應處理常式會直接傳回結果。

使用錯誤

如果在請求期間您的函數發生錯誤,則會在 中的函數回應處理常式中提供該錯誤ctx.error。您可以使用 util.appendError公用程式將錯誤附加至 GraphQL 回應。您可以使用 stash 讓管道中其他函數可以使用錯誤。請參閱以下範例:

/** * Returns the result * @param ctx the context object holds contextual information about the function invocation. */ export function response(ctx) { const { error, result } = ctx; if (error) { if (!ctx.stash.errors) ctx.stash.errors = [] ctx.stash.errors.push(ctx.error) return util.appendError(error.message, error.type, result); } return ctx.result; }

在本頁面

隱私權網站條款Cookie 偏好設定
© 2025, Amazon Web Services, Inc.或其附屬公司。保留所有權利。