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
|
// Copyright 2019-present Facebook Inc. All rights reserved.
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.
package schema
import (
"entgo.io/ent"
"entgo.io/ent/schema"
"entgo.io/ent/schema/edge"
"entgo.io/ent/schema/field"
"entgo.io/ent/schema/index"
)
// Relationship holds the schema definition for the Relationship entity.
type Relationship struct {
ent.Schema
}
func (Relationship) Annotations() []schema.Annotation {
return []schema.Annotation{
field.ID("user_id", "relative_id"),
}
}
// Fields of the Relationship.
func (Relationship) Fields() []ent.Field {
return []ent.Field{
field.Int("weight").
Default(1),
// Edge fields for the fields that compose this edge.
// They also function as the primary key of the table.
field.Int("user_id"),
field.Int("relative_id"),
// An edge field to external node that holds
// additional information about this edge.
field.Int("info_id").
Optional(),
}
}
// Edges of the Relationship.
func (Relationship) Edges() []ent.Edge {
return []ent.Edge{
edge.To("user", User.Type).
Required().
Unique().
Field("user_id"),
edge.To("relative", User.Type).
Required().
Unique().
Field("relative_id"),
// An optional edge to an entity that holds
// information about this relationship.
edge.To("info", RelationshipInfo.Type).
Field("info_id").
Unique(),
}
}
// Indexes of the Relationship.
func (Relationship) Indexes() []ent.Index {
return []ent.Index{
index.Fields("weight"),
// A relationship-info can be connected to no more
// than one relationship object (and edge schema).
index.Edges("info").
Unique(),
}
}
|