We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95b73c4 commit 973c08dCopy full SHA for 973c08d
datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/aspect/AspectType.java
@@ -35,7 +35,7 @@ public List<DataFetcherResult<Aspect>> batchLoad(@Nonnull List<VersionedAspectKe
35
if (e instanceof RestLiResponseException) {
36
// if no aspect is found, restli will return a 404 rather than null
37
// https://linkedin.github.io/rest.li/user_guide/restli_server#returning-nulls
38
- if(((RestLiResponseException) e).getStatus() == 404) {
+ if (((RestLiResponseException) e).getStatus() == 404) {
39
return DataFetcherResult.<Aspect>newResult().data(null).build();
40
}
41
0 commit comments