1

以下はすべてAWSコンソールです。私のラムダ関数は定義しますdeletePost

case "deletePost":
   var id = event.arguments.id;
   callback(null, {id:-1,author:"me",title:"title"}); //note, regardless of what your args are right now it is returning id:-1
   break;

私のスキーマは

type Mutation {
   ...
   deletePost(id: ID!): Post!
}
type Post {
   id: ID!
   author: String!
   title: String
}

私のgraphiQLクエリは

mutation DeletePost{
 deletePost(id: 3){
  id
 }  
} 

何らかの理由で、id=3ID を -1 としてハードコーディングしたときにオウムが返ってきます。クエリで著者またはタイトルを返すように要求しても、まったく返されません。


完全な子羊の fxn を更新します。aws appSync ドキュメントで提供されているテンプレートのわずかに変更されたバージョンです。

exports.handler = (event, context, callback) => {
console.log("Received event {}", JSON.stringify(event, 3));
var posts = { //in memory array store (simulates DB)
    "1": {"id": "1", "title": "First book", "author": "Author1"},
    "2": {"id": "2", "title": "Second book", "author": "Author2"},
    "3": {"id": "3", "title": "Third book", "author": "Author3"},
    "4": {"id": "4", "title": "Fourth book", "author": "Author4"},
    "5": {"id": "5", "title": "Fifth book", "author": "Author5"} };

console.log("Got an Invoke Request: "+event.field);
switch(event.field) {
    case "getPost":
        var id = event.arguments.id;
        callback(null, posts[id]);
        break;
    case "updatePost":
        posts[event.arguments.id]=event.arguments;
        console.log(posts);
        callback(null, event.arguments);
        break;
    case "deletePost":
        var id = event.arguments.id;
        //delete posts[event.arguments.id];
        callback(null, {id:-1,author:"me",title:"tits"});
        break;
    case "allPosts":
        var values = [];
        for(var d in posts){
            values.push(posts[d]);
        }
        callback(null, values);
        break;
    case "addPost":
        var id = event.arguments.id;
        posts[id]=event.arguments;
        console.log(posts);
        callback(null, event.arguments);
        break;
    case "addPostErrorWithData":
        var id = event.arguments.id;
        var result = posts[id];
        // attached additional error information to the post
        result.errorMessage = 'Error with the mutation, data has changed';
        result.errorType = 'MUTATION_ERROR';
        callback(null, result);
        break;
    default:
        callback("Unknown field, unable to resolve" + event.field, null);
        break;
  }
};

リゾルバー。ほとんどの場合、データをそのまま渡します。

#request mapping
{
    "version" : "2017-02-28",
    "operation": "Invoke",
    "payload": {
        "field": "addPost",
        "arguments":  $util.toJson($context.arguments)
    }
}
#responce mapping
$util.toJson($context.result)
4

1 に答える 1