bug 描述
我使用了 AWS 的 AppSync 做后台开发。使用 amplify codegen
指令会自动生成 API.swift
文件,里面的属性能正常被 iOS 端使用,但是嵌套的属性无法访问。
重现步骤
type Comment {
id: ID!
content: String
}
type Query {
getTodos(limit: Int, nextToken: String): TodoConnection
getTodo(id: ID, title: String): Todo
}
type Todo {
id: ID!
title: String
comments: [Comment]
}
type TodoConnection {
todos: [Todo]
nextToken: String
}
schema {
query: Query
}
期望 我希望 iOS 端能使用嵌套的属性。 This is swift code:
1. let todoComment = GetTodoQuery.Data.GetTodo.Comment(id: "id", content: "content")
2. print(todoComment.content)
3. let todosComment = GetTodosQuery.Data.GetTodo.Todo.Comment
4. print(todosComment.content)
第 3 行和第 4 行就是错误的。没办法访问到嵌套的数组里面的内容。因为自动生成的API.swift
里面没有。但是非嵌套就能访问到。真是服了
环境
补充内容 我来试一下名声在外的全球工单系统,我 2 天前给 AWS iOS SDK 的 github 仓库提交了 BUG,根本没有人理我 😭。现在不能访问数组里面的属性,我自己写的项目搞的很难受。求助懂 AWS amplify 和 iOS 端的大神出来救援一下
1
lipyoung OP 这是 [github bug link]( https://github.com/awslabs/aws-mobile-appsync-sdk-ios/issues/318)
|