AppSync:嵌套类型解析器

时间:2018-07-14 18:59:44

标签: amazon-dynamodb graphql velocity aws-appsync

我尝试包括在以下graphql模式中定义的嵌套类型:

type User {
  id: String!
  posts: [Post]
}

type Post {
  id: String!
}

type Query {
  getUser(id: String!): User
  getPost(id: String!): Post
}

您可以看到一个用户有多个帖子。我正在将AppSync与Adjacent List Dynamodb Table(同时包含User和Post相关行)一起用作数据源。在AppSync中,我必须使用请求映射模板,但是在阅读了文档之后,我还不了解如何解析嵌套类型?

我想象在查询getUser时应该使用User_id调用Post解析器。如果是这样,我如何在后解析器中访问父ID?这是${context.source}出现的地方吗?

由于getPost查询解析器与getUser Post子级调用的Post解析器相同,我是否必须将一些逻辑与解析器的请求模板集成在一起才能处理这两种情况?

一个例子真的很有帮助!

2 个答案:

答案 0 :(得分:6)

您还必须为User.posts编写一个解析程序。当您调用Query.getUser时,将调用它的解析器,然后,如果您有User.posts的解析器,则将使用${context.source}中设置的第一个解析器的上下文来调用它。

不幸的是,我没有一个清晰的示例,但是如果您使用的是CloudFormation,则最终会有两个解析器,如下所示:

  UserResolver:
    Type: "AWS::AppSync::Resolver"
    DependsOn: Schema
    Properties:
      ApiId: !Ref YourApiId
      TypeName: Query
      FieldName: getUser
      DataSourceName: !Ref YourDataSource
      RequestMappingTemplate: # you already have this
      ResponseMappingTemplate: ...

  UserPostsResolver:
    Type: "AWS::AppSync::Resolver"
    DependsOn: Schema
    Properties:
      ApiId: !Ref YourApiId
      TypeName: User
      FieldName: posts
      DataSourceName: !Ref YourDataSource
      RequestMappingTemplate: |
        # use context.source.id here to reference the user id
      ResponseMappingTemplate: "$util.toJson($ctx.result.items)"

就足够了。您处在正确的轨道上,但是从字段到解析器的映射需要比您想像的更加明确。

答案 1 :(得分:1)

这是另一个stackoverflow帖子,在此我将详细介绍如何执行此操作。标题说的是突变,但同时涵盖了突变和查询。 mutation to create relations on AWS AppSync