-
Notifications
You must be signed in to change notification settings - Fork 79
/
graph.go
85 lines (64 loc) · 2.52 KB
/
graph.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
//
// DISCLAIMER
//
// Copyright 2017-2024 ArangoDB GmbH, Cologne, Germany
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
package driver
import "context"
// Graph provides access to all edge & vertex collections of a single graph in a database.
type Graph interface {
// Name returns the name of the graph.
Name() string
// Remove removes the entire graph.
// If the graph does not exist, a NotFoundError is returned.
Remove(ctx context.Context) error
// RemoveWithOpts removes the entire graph with options.
RemoveWithOpts(ctx context.Context, opts *RemoveGraphOptions) error
// IsSmart returns true of smart is smart. In case of Community Edition it is always false
IsSmart() bool
// IsSatellite returns true of smart is satellite. In case of Community Edition it is always false
IsSatellite() bool
// IsDisjoint return information if graph have isDisjoint flag set to true
IsDisjoint() bool
// GraphEdgeCollections Edge collection functions
GraphEdgeCollections
// GraphVertexCollections Vertex collection functions
GraphVertexCollections
// ID returns the id of the graph.
ID() string
// Key returns the key of the graph.
Key() DocumentID
// Rev returns the revision of the graph.
Rev() string
// EdgeDefinitions returns the edge definitions of the graph.
EdgeDefinitions() []EdgeDefinition
// SmartGraphAttribute returns the attributes of a smart graph if there are any.
SmartGraphAttribute() string
// MinReplicationFactor returns the minimum replication factor for the graph.
MinReplicationFactor() int
// NumberOfShards returns the number of shards for the graph.
NumberOfShards() int
// OrphanCollections returns the orphan collections of the graph.
OrphanCollections() []string
// ReplicationFactor returns the current replication factor.
ReplicationFactor() int
// WriteConcern returns the write concern setting of the graph.
WriteConcern() int
}
type RemoveGraphOptions struct {
DropCollections bool `json:"dropCollections,omitempty"`
}