Changes between Version 19 and Version 20 of RestApi
- Timestamp:
- 23.01.2015 15:29:49 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RestApi
v19 v20 24 24 25 25 {{{ 26 GET /core/topic/<topic ID>[? fetch_composite=true/false]27 }}} 28 29 The default for ` fetch_composite` is `true`.26 GET /core/topic/<topic ID>[?include_childs=true/false] 27 }}} 28 29 The default for `include_childs` is `true`. 30 30 31 31 ==== Example 1: Getting a topic ''with'' its `composite` value ==== … … 58 58 59 59 {{{ 60 curl localhost:8080/core/topic/55? fetch_composite=false | jsonpretty60 curl localhost:8080/core/topic/55?include_childs=false | jsonpretty 61 61 }}} 62 62 … … 83 83 84 84 {{{ 85 GET /core/topic/by_type/<Type URI>[? fetch_composite=true/false]86 }}} 87 88 The default for ` fetch_composite` is `false`.85 GET /core/topic/by_type/<Type URI>[?include_childs=true/false] 86 }}} 87 88 The default for `include_childs` is `false`. 89 89 90 90 ==== Example: Getting all "Web Resource" topics ''without'' their `composites` ====