forked from ent/contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
where.go
148 lines (118 loc) · 5.07 KB
/
where.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
// Code generated by ent, DO NOT EDIT.
package attachment
import (
"entgo.io/contrib/entproto/cmd/protoc-gen-ent/internal/todo/ent/predicate"
"entgo.io/ent/dialect/sql"
)
// ID filters vertices based on their ID field.
func ID(id string) predicate.Attachment {
return predicate.Attachment(sql.FieldEQ(FieldID, id))
}
// IDEQ applies the EQ predicate on the ID field.
func IDEQ(id string) predicate.Attachment {
return predicate.Attachment(sql.FieldEQ(FieldID, id))
}
// IDNEQ applies the NEQ predicate on the ID field.
func IDNEQ(id string) predicate.Attachment {
return predicate.Attachment(sql.FieldNEQ(FieldID, id))
}
// IDIn applies the In predicate on the ID field.
func IDIn(ids ...string) predicate.Attachment {
return predicate.Attachment(sql.FieldIn(FieldID, ids...))
}
// IDNotIn applies the NotIn predicate on the ID field.
func IDNotIn(ids ...string) predicate.Attachment {
return predicate.Attachment(sql.FieldNotIn(FieldID, ids...))
}
// IDGT applies the GT predicate on the ID field.
func IDGT(id string) predicate.Attachment {
return predicate.Attachment(sql.FieldGT(FieldID, id))
}
// IDGTE applies the GTE predicate on the ID field.
func IDGTE(id string) predicate.Attachment {
return predicate.Attachment(sql.FieldGTE(FieldID, id))
}
// IDLT applies the LT predicate on the ID field.
func IDLT(id string) predicate.Attachment {
return predicate.Attachment(sql.FieldLT(FieldID, id))
}
// IDLTE applies the LTE predicate on the ID field.
func IDLTE(id string) predicate.Attachment {
return predicate.Attachment(sql.FieldLTE(FieldID, id))
}
// IDEqualFold applies the EqualFold predicate on the ID field.
func IDEqualFold(id string) predicate.Attachment {
return predicate.Attachment(sql.FieldEqualFold(FieldID, id))
}
// IDContainsFold applies the ContainsFold predicate on the ID field.
func IDContainsFold(id string) predicate.Attachment {
return predicate.Attachment(sql.FieldContainsFold(FieldID, id))
}
// Contents applies equality check predicate on the "contents" field. It's identical to ContentsEQ.
func Contents(v string) predicate.Attachment {
return predicate.Attachment(sql.FieldEQ(FieldContents, v))
}
// ContentsEQ applies the EQ predicate on the "contents" field.
func ContentsEQ(v string) predicate.Attachment {
return predicate.Attachment(sql.FieldEQ(FieldContents, v))
}
// ContentsNEQ applies the NEQ predicate on the "contents" field.
func ContentsNEQ(v string) predicate.Attachment {
return predicate.Attachment(sql.FieldNEQ(FieldContents, v))
}
// ContentsIn applies the In predicate on the "contents" field.
func ContentsIn(vs ...string) predicate.Attachment {
return predicate.Attachment(sql.FieldIn(FieldContents, vs...))
}
// ContentsNotIn applies the NotIn predicate on the "contents" field.
func ContentsNotIn(vs ...string) predicate.Attachment {
return predicate.Attachment(sql.FieldNotIn(FieldContents, vs...))
}
// ContentsGT applies the GT predicate on the "contents" field.
func ContentsGT(v string) predicate.Attachment {
return predicate.Attachment(sql.FieldGT(FieldContents, v))
}
// ContentsGTE applies the GTE predicate on the "contents" field.
func ContentsGTE(v string) predicate.Attachment {
return predicate.Attachment(sql.FieldGTE(FieldContents, v))
}
// ContentsLT applies the LT predicate on the "contents" field.
func ContentsLT(v string) predicate.Attachment {
return predicate.Attachment(sql.FieldLT(FieldContents, v))
}
// ContentsLTE applies the LTE predicate on the "contents" field.
func ContentsLTE(v string) predicate.Attachment {
return predicate.Attachment(sql.FieldLTE(FieldContents, v))
}
// ContentsContains applies the Contains predicate on the "contents" field.
func ContentsContains(v string) predicate.Attachment {
return predicate.Attachment(sql.FieldContains(FieldContents, v))
}
// ContentsHasPrefix applies the HasPrefix predicate on the "contents" field.
func ContentsHasPrefix(v string) predicate.Attachment {
return predicate.Attachment(sql.FieldHasPrefix(FieldContents, v))
}
// ContentsHasSuffix applies the HasSuffix predicate on the "contents" field.
func ContentsHasSuffix(v string) predicate.Attachment {
return predicate.Attachment(sql.FieldHasSuffix(FieldContents, v))
}
// ContentsEqualFold applies the EqualFold predicate on the "contents" field.
func ContentsEqualFold(v string) predicate.Attachment {
return predicate.Attachment(sql.FieldEqualFold(FieldContents, v))
}
// ContentsContainsFold applies the ContainsFold predicate on the "contents" field.
func ContentsContainsFold(v string) predicate.Attachment {
return predicate.Attachment(sql.FieldContainsFold(FieldContents, v))
}
// And groups predicates with the AND operator between them.
func And(predicates ...predicate.Attachment) predicate.Attachment {
return predicate.Attachment(sql.AndPredicates(predicates...))
}
// Or groups predicates with the OR operator between them.
func Or(predicates ...predicate.Attachment) predicate.Attachment {
return predicate.Attachment(sql.OrPredicates(predicates...))
}
// Not applies the not operator on the given predicate.
func Not(p predicate.Attachment) predicate.Attachment {
return predicate.Attachment(sql.NotPredicates(p))
}