boundless-student-48844
02/21/2022, 12:10 PMMLFeatureV2 to support our ML discoverability use cases). I’ve done the changes on Pegasus, GraphQL, Java and React and it has successfully built with ./gradlew build.
I tried to ingest to gms and it worked. The aspect values are successfully stored in MySQL (as seen in screenshot).
However, when I navigate to the UI, the getSearchResults graphql request (second screenshot) for the new entity has below error.
{
"errors": [
{
"message": "The field at path '/search/searchResults[0]/entity' was declared as a non null type, but the code involved in retrieving data has wrongly returned a null value. The graphql specification requires that the parent field be set to null, or if that is non nullable that it bubble up null to its parent and so on. The non-nullable type is 'Entity' within parent type 'SearchResult'",
"path": [
"search",
"searchResults",
0,
"entity"
],
"extensions": {
"classification": "NullValueInNonNullableField"
}
}
],
"data": {
"search": null
}
}
Do you know what’s missing here?big-carpet-38439
02/22/2022, 8:04 PMgreen-football-43791
02/22/2022, 8:10 PM