Use section headers for shared types

This commit is contained in:
Josh Mock
2024-11-19 12:23:01 -06:00
parent 6151aab208
commit ab21735b57
469 changed files with 2639 additions and 2850 deletions

View File

@ -45,10 +45,10 @@ Extracts and summarizes information about the documents and terms in an Elastics
[source,ts]
----
interface GraphExploreRequest extends <<shared-type-request-base, RequestBase>> {
index: <<shared-type-indices, Indices>>
routing?: <<shared-type-routing, Routing>>
timeout?: <<shared-type-duration, Duration>>
interface GraphExploreRequest extends <<RequestBase>> {
index: <<Indices>>
routing?: <<Routing>>
timeout?: <<Duration>>
connections?: GraphHop
controls?: GraphExploreControls
query?: QueryDslQueryContainer
@ -63,9 +63,9 @@ interface GraphExploreRequest extends <<shared-type-request-base, RequestBase>>
----
interface GraphExploreResponse {
connections: GraphConnection[]
failures: <<shared-type-shard-failure, ShardFailure>>[]
failures: <<ShardFailure>>[]
timed_out: boolean
took: <<shared-type-long, long>>
took: <<long>>
vertices: GraphVertex[]
}
----