我在 GraphQL 服务器中以 json 格式存储数据并进行如下查询:
query {
symptoms{
id
name
picUrl
}
}
现在我必须使用它的客户端从服务器获取它。我的应用程序 gradle.build 文件如下:
dependencies{
compile 'com.apollographql.android:api:0.1.0'
compile 'com.squareup.retrofit2:retrofit:2.1.0' // retrofit2
compile 'com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0'
compile 'com.apollographql.android:converter-pojo:0.1.0'
compile 'junit:junit:4.12'
}
在模块 gradle.build 我有:
dependencies {
classpath 'com.apollographql.apollo:gradle-plugin:0.3.3'
classpath 'com.apollographql.android:gradle-plugin:0.1.0'
}
现在在 Adapter 类中,我需要编写代码来获取数据。我正在关注此链接https://github.com/apollographql/apollo-android 但是在编写此代码本身时出现错误:
ApolloClient apolloClient;
apolloClient.newCall(FeedQuery.builder()
如何解决这个问题?