GitHub GraphQL API 的 Apollo 客户端响应不是 JSON 格式

Apollo Client response not in JSON format for GitHub GraphQL APIs

我正在使用 apollo-client 在 Android 上试验 GraphQL,并且正在使用 GitHub 的 GraphQL API。我正在点击 API 给我一个用户拥有的回购列表。一切正常,但我得到的响应不是 JSON 格式,而是字符串格式。

响应如下所示:

Data{user=User{__typename=User, 
repositories=Repositories{__typename=RepositoryConnection, nodes= 
[Node{__typename=Repository, name=testrepository}]}}

当我尝试通过 Insomnia(GraphQL 休息客户端)点击 url 时,我得到了 JSON 格式的响应,但在我的应用程序中,我得到了上述格式的响应。我尝试在 header 中传递 content-type : "application/json; charset=utf-8" 但没有成功。

这是我获取响应的方式:

public void fetchRepoList(String userName, String authHeader, final ResponseCallback responseCallback) {
    GraphQL.getInstance().getApolloClient(authHeader)
            .query(githubRepoList.repoListAPI.FindQuery.builder().repoOwner(userName).build())
            .enqueue(new ApolloCall.Callback<githubRepoList.repoListAPI.FindQuery.Data>() {
                @Override
                public void onResponse(@Nonnull Response<githubRepoList.repoListAPI.FindQuery.Data> response) {
                  Log.d(TAG, "response" + response)
                }

                @Override
                public void onFailure(@Nonnull final ApolloException exception) {

                }
            });
}

我想将响应放在模型列表 class 中,为此我需要 JSON 格式的响应。搜索了这个问题,但没有找到任何合适的解决方案。

我正在使用 apollo 客户端 0.3.2

[编辑:1]

我尝试使用 Okhttp 调用 GitHub GraphQL API,这次我得到了这样的响应:

{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"SCALAR","name":"Boolean","description":"Represents `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":"The query root of GitHub's GraphQL interface.","fields":[{"name":"codeOfConduct","description":"Look up a code of conduct by its key","args":[{"name":"key","description":"The code of conduct's key","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CodeOfConduct","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"codesOfConduct","description":"Look up a code of conduct by its key","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CodeOfConduct","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"license","description":"Look up an open source license by its key","args":[{"name":"key","description":"The license's downcased SPDX ID","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"License","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"licenses","description":"Return a list of known open source licenses","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"License","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"marketplaceCategories","description":"Get alphabetically sorted list of Marketplace categories","args":[{"name":"includeCategories","description":"Return only the specified categories.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"excludeEmpty","description":"Exclude categories with no listings.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"excludeSubcategories","description":"Returns top level categories only, excluding any subcategories.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MarketplaceCategory","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"marketplaceCategory","description":"Look up a Marketplace category by its slug.","args":[{"name":"slug","description":"The URL slug of the category.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"useTopicAliases","description":"Also check topic aliases for the category slug","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"MarketplaceCategory","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"marketplaceListing","description":"Look up a single Marketplace listing","args":[{"name":"slug","description":"Select the listing that matches this slug. It's the short name of the listing used in its URL.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"MarketplaceListing","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"marketplaceListings","description":"Look up Marketplace listings","args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type"

此回复甚至没有关于存储库的必需数据。它甚至与存储库列表无关。

因此,我又回到了老方法,使用apollo进行调用。现在,由于 apollo 从标准 GraphQL 查询创建了这些模型 classes,我该如何创建这个模型的列表 class。

我在 github 上浏览了 apollo sample-app 并遇到了这段代码:

List<FeedEntry> feedResponseToEntriesWithRepositories(Response<FeedQuery.Data> response) {
List<FeedEntry> feedEntriesWithRepos = new ArrayList<>();
final FeedQuery.Data responseData = response.data();
if (responseData == null) {
  return Collections.emptyList();
}
final List<FeedEntry> feedEntries = responseData.feedEntries();
if (feedEntries == null) {
  return Collections.emptyList();
}
for (FeedEntry entry : feedEntries) {
  if (entry.repository() != null) {
    feedEntriesWithRepos.add(entry);
  }
}
return feedEntriesWithRepos;
}

这里的 feedEntries() 方法 returns 提要列表,这个方法在 apollo 目录的 auto-generated 模型 class 文件中。我去检查了我的模型文件,没有 returns 回购列表的方法(如我的情况)。该文件太大,无法在此处 post,但如果社区希望查看它,我可以在此处 post。

顺便说一下,我用我的代码尝试过这样的事情:

List<githubRepoList.repoListAPI.FindQuery.Node> repoList = new ArrayList<>();
final githubRepoList.repoListAPI.FindQuery.Data repoListData = response.data();
final List<githubRepoList.repoListAPI.FindQuery.Node> finalRepoList = repoListData.(which method to call from the auto-generated class file?)

在这里,Node 是我的 auto-generated 模型文件中的一个 class 在 apollo 目录中,这个 class 应该有一个方法 returns 一个 repo 模型列表class.

我知道我在这里做错了什么。我认为还有一些其他方法可以创建这些模型的列表 classes.

the response is not in JSON format

响应 JSON 格式。它现在是 githubRepoList.repoListAPI.FindQuery.Data 对象的形式。 class 是根据您的 GraphQL 文档为您生成的代码。引用 the Apollo-Android documentation,并强调:

Apollo-Android is a GraphQL compliant client that generates Java models from standard GraphQL queries

特别是,Apollo-Android 在那些 Java 模型 class 上生成 toString() 实现。在你的情况下:

  • Datauser 字段中持有 User
  • Userrepositories 字段中持有 RepositoriesConnection,重命名为 Repositories
  • repositories 集合包含一个 Repository

使用 Apollo-Android 的原因是您不必自己处理 JSON。相反,如果您想自己解析 JSON,请摆脱 Apollo-Android 并仅使用 OkHttp 进行 Web 服务调用。