You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @return instance of Call <p></p> <b>Example</b> <pre> {@code
119
+
* @return instance of Call <br> <b>Example</b> <pre> {@code
120
120
* Stack stack = new Contentstack.Builder().build().stack(headers);
121
121
* JSONObject body = new JSONObject();
122
122
* Term term = stack.taxonomy("taxonomyId").terms().create(body);
@@ -161,7 +161,7 @@ public Call<ResponseBody> create(@NotNull JSONObject body) {
161
161
* <b>limit</b> - Limit the result to number of documents/nodes
162
162
* </li>
163
163
* </ul>
164
-
* <p></p>
164
+
* <br>
165
165
* <b>Example</b>
166
166
* <pre>
167
167
* {@code
@@ -181,7 +181,7 @@ public Call<ResponseBody> find() {
181
181
* Fetch single term based on term uid.
182
182
*
183
183
* @param termUid The term for which we need the details
184
-
* @return instance of call <p> Supported Query Parameters: to use query parameters use #addParams("key", "value"); <ul> <li><b>include_children_count</b> - Include count of number of children under each term <li> <b>include_referenced_entries_count</b> - Include count of the entries where this term is referred </li> </ul> <p></p> <b>Example</b> <pre> {@code
184
+
* @return instance of call <br> Supported Query Parameters: to use query parameters use #addParams("key", "value"); <ul> <li><b>include_children_count</b> - Include count of number of children under each term <li> <b>include_referenced_entries_count</b> - Include count of the entries where this term is referred </li> </ul> <br> <b>Example</b> <pre> {@code
185
185
* Stack stack = new Contentstack.Builder().build().stack(headers);
186
186
* Term term = stack.taxonomy("taxonomyId").terms().find();
187
187
* } </pre>
@@ -198,7 +198,7 @@ public Call<ResponseBody> fetch(@NotNull String termUid) {
198
198
* @return The details of the term descendants <p> URL/Query parameters <ul> <li> <b>depth</b> - Include the terms upto the depth specified if set to a number greater than 0, include all the terms if set to 0, default depth will be set to 1 </li><li> <b>include_children_count</b> - Include count of number of children under each term </li><li> <b>include_referenced_entries_count</b> - Include count of the entries where atleast 1 term of this taxonomy is referred </li><li> <b>include_count</b> - Include count of the documents/nodes that matched the query </li><li> <b>skip</b> - Skip the number of documents/nodes </li><li> <b>limit</b> - Limit the result to number of documents/nodes </li> </ul> <p> <b>Example</b> <pre> {@code
199
199
* Stack stack = new Contentstack.Builder().build().stack(headers);
200
200
* Term term = stack.taxonomy("taxonomyId").terms().descendants("termId").;
0 commit comments