Skip to content

Commit 2740672

Browse files
Add docs on 'satellites' field version support (gharial API) (#447)
Co-authored-by: jwierzbo <[email protected]>
1 parent 2b9b287 commit 2740672

4 files changed

+4
-0
lines changed

database_graphs.go

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ type CreateGraphOptions struct {
7676
// IsDisjoint set isDisjoint flag for Graph. Required ArangoDB 3.7+
7777
IsDisjoint bool
7878
// Satellites contains an array of collection names that will be used to create SatelliteCollections for a Hybrid (Disjoint) SmartGraph (Enterprise Edition only)
79+
// Requires ArangoDB 3.9+
7980
Satellites []string `json:"satellites,omitempty"`
8081
}
8182

database_graphs_impl.go

+1
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ type createGraphAdditionalOptions struct {
168168
// IsDisjoint set isDisjoint flag for Graph. Required ArangoDB 3.7+
169169
IsDisjoint bool `json:"isDisjoint,omitempty"`
170170
// Satellites contains an array of collection names that will be used to create SatelliteCollections for a Hybrid (Disjoint) SmartGraph (Enterprise Edition only)
171+
// Requires ArangoDB 3.9+
171172
Satellites []string `json:"satellites,omitempty"`
172173
}
173174

graph_edge_collections.go

+1
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,6 @@ type VertexConstraints struct {
6262
// CreateEdgeCollectionOptions contains optional parameters for creating a new edge collection
6363
type CreateEdgeCollectionOptions struct {
6464
// Satellites contains an array of collection names that will be used to create SatelliteCollections for a Hybrid (Disjoint) SmartGraph (Enterprise Edition only)
65+
// Requires ArangoDB 3.9+
6566
Satellites []string `json:"satellites,omitempty"`
6667
}

graph_vertex_collections.go

+1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,6 @@ type GraphVertexCollections interface {
4949
// CreateVertexCollectionOptions contains optional parameters for creating a new vertex collection
5050
type CreateVertexCollectionOptions struct {
5151
// Satellites contains an array of collection names that will be used to create SatelliteCollections for a Hybrid (Disjoint) SmartGraph (Enterprise Edition only)
52+
// Requires ArangoDB 3.9+
5253
Satellites []string `json:"satellites,omitempty"`
5354
}

0 commit comments

Comments
 (0)