我是 Android Studio 的新手,想用 GraphQL 和Apollo Client编写一个小型示例应用程序。
我已经成功地设置了我的构建环境和自动代码生成。这是文件结构的屏幕截图,build/generated/apollo/AllPostsQuery
是基于以下自动生成的类src/main/graphql/AllPosts.graphql
:
我现在唯一的问题是我不知道如何将AllPostsQuery
课程导入我的MainActivy
.
我只是尝试过:
import AllPostsQuery;
但这不起作用:
无法解析符号
AllPostsQuery
。
我需要在导入路径中添加任何前缀吗?