0

我曾经使用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 应用程序时,我收到以下错误消息:SingletonApolloClienturlGraphQLEndpointhttp://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-androidGraphiQL 一切都按我的预期工作,并且我收到 ID 为 1 的用户。这对我来说似乎是apollo-androidlib 的内部错误,但因为我的 Java代码和我的 GraphQL 查询看起来与使用 Apollo消费代码apollo-android生成代码的示例没有太大区别我真的不知道我的错误在哪里。

在此先感谢,我感谢每一个帮助!

4

1 回答 1

1

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

于 2018-03-05T13:28:48.410 回答