Apollo GraphQL - 是否可以执行请求不同字段的相同查询?

Apollo GraphQL - Is it possible to do the same query requesting different fields?

我正在使用 apollo-android,我想知道是否可以执行以下方法:

我在服务器的 schema.json 中定义了一个名为 locations 的查询。它是这样定义的:

type locations {
  continents: [Continent!],
  countries: [Country!],
  usaStates: [UsaState!]
}

在 Playground 中尝试此查询非常有效,它 returns 大陆、国家和美国。这是我在 Playground 中定义的查询:

query getLocations {
  locations {
    continents {
      name
      code
    }
    countries {
      name
      code
    }
    usaStates {
      code
      name
    }
  }
}

当然,如果我只请求 que 大陆,它只会 returns 大陆:

query getLocations {
  locations {
    continents {
      name
      code
    }
}

我的问题是是否可以在客户端执行相同的操作。当我在 Android 项目的 api.graphql 文件中定义查询时,我是这样做的:

query getLocations {
  locations {
    continents {
      name
      code
    }
    countries {
      code
      name
    }
    usaStates {
      code
      name
    }
  }
}

然后,当我在代码中调用它时,结果包含大陆、国家和美国:

GetLocationsQuery builder = GetLocationsQuery.builder().build();

api.query(builder)
    .enqueue(new ApolloCall.Callback<GetLocationsQuery.Data>() {
            @Override
            public void onResponse(@NotNull com.apollographql.apollo.api.Response<GetLocationsQuery.Data> response) {
                apiListener.onFinish(response);
            }

            @Override
            public void onFailure(@NotNull ApolloException e) {
                Log.v("APOLLO", e.toString());
                apiListener.onError(e);
            }
        });

有一种方法可以执行相同的调用,但定义我只想要大陆而不是大陆、国家和美国?

提前致谢!

The specification 说:

The core GraphQL specification includes exactly two directives, which must be supported by any spec-compliant GraphQL server implementation:

  • @include(if: Boolean) Only include this field in the result if the argument is true.
  • @skip(if: Boolean) Skip this field if the argument is true.

api.graphql 带有跳过指令:

query getLocations($continentsOnly: Boolean) {
  locations {
    continents {
      name
      code
    }
    countries @skip(if: $continentsOnly) {
      code
      name
    }
    usaStates @skip(if: $continentsOnly) {
      code
      name
    }
  }
}

显然,您需要指定 continentsOnly

的值