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 ea80f1c commit 3926913Copy full SHA for 3926913
marklogic-client-api/src/test/java/com/marklogic/client/test/rows/GraphQLTest.java
@@ -67,6 +67,7 @@ void invalidQuery() {
67
}
68
69
private void verifyResponse(JsonNode response) {
70
+ assertTrue(response.has("data"), "Unexpected response: " + response.toPrettyString());
71
JsonNode data = response.get("data");
72
JsonNode musicians = data.get("opticUnitTest_musician");
73
assertEquals(4, musicians.size());
0 commit comments