gpt4 book ai didi

java - apollo-android 不提供请求中的变量

转载 作者:行者123 更新时间:2023-12-02 11:34:03 28 4
gpt4 key购买 nike

我用过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 type 代表我的 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 fragment 。

该查询位于我的 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类是 Singleton提供对 ApolloClient 的访问实例和资源字符串 urlGraphQLEndpoint指向我本地 GraphQL 服务器的 IP 地址和端口:http://10.0.2.2:3000/graphql 。当我尝试执行 Android 应用程序时,我收到以下错误消息:

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-android 没有太大不同。示例 Generate Code using ApolloConsuming Code我真的不知道我的错误在哪里。

提前致谢,感谢每一个帮助!

最佳答案

我发现了错误...正如您在我的查询中看到的那样,我在一些变量的开头使用了大写字母。 apollo-android 是区分大小写的,就像它应该的那样,但它会忽略变量开头的大写字母并将其转换为小写字母。在 Postman 代理的帮助下,我能够检查应用程序的网络请求,并发现变量仍然是小写字母。

关于java - apollo-android 不提供请求中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49085441/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com