From cc56c5e23f4bd74e2948c81892dbbbc2e74a4188 Mon Sep 17 00:00:00 2001 From: Rob Rudin Date: Thu, 30 Mar 2023 11:09:58 -0400 Subject: [PATCH] Added "since 6.2.0" to a couple places --- .../com/marklogic/client/query/StructuredQueryDefinition.java | 1 + .../src/main/java/com/marklogic/client/row/RowManager.java | 2 ++ 2 files changed, 3 insertions(+) diff --git a/marklogic-client-api/src/main/java/com/marklogic/client/query/StructuredQueryDefinition.java b/marklogic-client-api/src/main/java/com/marklogic/client/query/StructuredQueryDefinition.java index fb402ab4f..958ada052 100644 --- a/marklogic-client-api/src/main/java/com/marklogic/client/query/StructuredQueryDefinition.java +++ b/marklogic-client-api/src/main/java/com/marklogic/client/query/StructuredQueryDefinition.java @@ -43,6 +43,7 @@ public interface StructuredQueryDefinition * * @param xmlStreamWriter The XML stream writer to which the query definition should be serialized. * @throws XMLStreamException + * @since 6.2.0 */ void serialize(XMLStreamWriter xmlStreamWriter) throws XMLStreamException; diff --git a/marklogic-client-api/src/main/java/com/marklogic/client/row/RowManager.java b/marklogic-client-api/src/main/java/com/marklogic/client/row/RowManager.java index dffc7ab20..ddcc21adc 100644 --- a/marklogic-client-api/src/main/java/com/marklogic/client/row/RowManager.java +++ b/marklogic-client-api/src/main/java/com/marklogic/client/row/RowManager.java @@ -369,6 +369,7 @@ public enum RowStructure{ARRAY, OBJECT} * @param resultsHandle the IO class for capturing the results * @param the type of the IO object for r the results * @return an object of the IO class containing the query results, which will include error messages if the query fails + * @since 6.2.0 */ T graphql(JSONWriteHandle query, T resultsHandle); @@ -379,6 +380,7 @@ public enum RowStructure{ARRAY, OBJECT} * @param as the class type of the results to return; typically JsonNode or String * @param the type of the results to return * @return an instance of the given return type that contains the query results, which will include error messages if the query fails + * @since 6.2.0 */ T graphqlAs(JSONWriteHandle query, Class as); }