apollo-android 没有在请求中提供变量

apollo-android does not provide variables in request

我使用 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 数据库中的 table。服务器已完全运行。这是我的查询:

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
        }
    })

RestClientclass是一个Singleton,提供对ApolloClient实例的访问,资源字符串urlGraphQLEndpoint指向IP地址和端口我的本地 GraphQL 服务器: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.access0(ApolloParseInterceptor.java:28)
    at com.apollographql.apollo.internal.interceptor.ApolloParseInterceptor.onResponse(ApolloParseInterceptor.java:53)
    at com.apollographql.apollo.internal.interceptor.ApolloServerInterceptor.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 ...

当我尝试完全相同的 query 时,apollo-android 客户端和 GraphiQL 应该使用它,一切都按我预期的那样工作,我收到用户ID 1。对我来说,这似乎是 apollo-android 库的内部错误,但因为我的 Java 代码和我的 GraphQL 查询看起来与 apollo-android 示例没有太大区别 Generate Code using Apollo and Consuming Code我真的不知道我的错误在哪里。

提前致谢,非常感谢您的帮助!

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