我曾经使用apollo-server-express
以下架构设置 GraphQL 服务器:
input IGetUser {
email: String
ID: String
UserID: Int!
}
interface Entity {
createdAt: String
updatedAt: String
}
schema {
query: Query
}
type Query {
getUser(params:IGetUser): User!
}
type User implements Entity {
UserID: Int!
firstName: String!
lastName: String
email: String!
ID: String
...
confirmed: Boolean!
createdAt: String!
updatedAt: String!
}
基本上,该User
类型代表我的 MySQL 数据库中的一个表。服务器完全可以运行。这是我的查询:
query GetUserQuery($UserID: Int!, $email: String, $ID: String) {
getUser(params:{ email: $email, ID: $ID, UserID: $UserID }) {
...UserDetails
...EntityDetails
}
}
fragment EntityDetails on Entity {
createdAt
updatedAt
}
fragment UserDetails on User {
UserID
firstName
lastName
email
ID
...
confirmed
}
请注意,我已经缩短了User
类型和UserDetails
片段。
查询位于我的 Android Studio 项目中,apollo-android
插件正确生成 Java 对象。我正在尝试获取 ID 为 1 的用户。我的 Java 代码如下所示:
RestClient.getInstance(getApplicationContext())
.getApolloClient(getString(R.string.urlGraphQLEndpoint))
.query(
GetUserQuery.builder()
.userID(userID) // userID = 1 is a local variable
.build()
)
.httpCachePolicy(HttpCachePolicy.NETWORK_ONLY)
.enqueue(new ApolloCall.Callback<GetUserQuery.Data>() {
@Override
public void onFailure(@Nonnull ApolloException e) {
Log.e(TAG, e.getMessage(), e);
}
@Override
public void onResponse(@Nonnull Response<GetUserQuery.Data> response) {
// Doesn't matter
}
})
该类提供对实例的访问,RestClient
资源字符串指向我的本地 GraphQL 服务器的 IP 地址和端口:. 当我尝试执行我的 Android 应用程序时,我收到以下错误消息:Singleton
ApolloClient
urlGraphQLEndpoint
http://10.0.2.2:3000/graphql
HTTP 400 Bad Request
com.apollographql.apollo.exception.ApolloHttpException: HTTP 400 Bad Request
at com.apollographql.apollo.internal.interceptor.ApolloParseInterceptor.parse(ApolloParseInterceptor.java:105)
at com.apollographql.apollo.internal.interceptor.ApolloParseInterceptor.access$100(ApolloParseInterceptor.java:28)
at com.apollographql.apollo.internal.interceptor.ApolloParseInterceptor$1.onResponse(ApolloParseInterceptor.java:53)
at com.apollographql.apollo.internal.interceptor.ApolloServerInterceptor$1$1.onResponse(ApolloServerInterceptor.java:93)
at okhttp3.RealCall$AsyncCall.execute(RealCall.java:153)
at okhttp3.internal.NamedRunnable.run(NamedRunnable.java:32)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
在服务器端,我收到以下控制台日志:
GraphQLError: Variable "$UserID" of requiredtype "Int!" was not provided!
at getVariableValues ...
当我尝试完全相同的查询时,客户端应该使用apollo-android
GraphiQL 一切都按我的预期工作,并且我收到 ID 为 1 的用户。这对我来说似乎是apollo-android
lib 的内部错误,但因为我的 Java代码和我的 GraphQL 查询看起来与使用 Apollo和消费代码apollo-android
生成代码的示例没有太大区别我真的不知道我的错误在哪里。
在此先感谢,我感谢每一个帮助!