File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed
specification/graph/_types Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,28 @@ export class Hop {
24
24
/**
25
25
* Specifies one or more fields from which you want to extract terms that are associated with the specified vertices.
26
26
*/
27
- connections ?: Hop
27
+ connections ?: NextHop
28
28
/**
29
- * An optional guiding query that constrains the Graph API as it explores connected terms .
29
+ * A seed query that identifies the documents of interest .
30
30
*/
31
31
query : QueryContainer
32
32
/**
33
33
* Contains the fields you are interested in.
34
34
*/
35
35
vertices : VertexDefinition [ ]
36
36
}
37
+
38
+ export class NextHop {
39
+ /**
40
+ * Specifies one or more fields from which you want to extract terms that are associated with the specified vertices.
41
+ */
42
+ connections ?: NextHop
43
+ /**
44
+ * An optional guiding query that constrains the Graph API as it explores connected terms.
45
+ */
46
+ query ?: QueryContainer
47
+ /**
48
+ * Contains the fields you are interested in.
49
+ */
50
+ vertices : VertexDefinition [ ]
51
+ }
You can’t perform that action at this time.
0 commit comments