Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Node) predicate.Node
- func HasNext() predicate.Node
- func HasNextWith(preds ...predicate.Node) predicate.Node
- func HasPrev() predicate.Node
- func HasPrevWith(preds ...predicate.Node) predicate.Node
- func ID(id int) predicate.Node
- func IDEQ(id int) predicate.Node
- func IDGT(id int) predicate.Node
- func IDGTE(id int) predicate.Node
- func IDIn(ids ...int) predicate.Node
- func IDLT(id int) predicate.Node
- func IDLTE(id int) predicate.Node
- func IDNEQ(id int) predicate.Node
- func IDNotIn(ids ...int) predicate.Node
- func Not(p predicate.Node) predicate.Node
- func Or(predicates ...predicate.Node) predicate.Node
- func ValidColumn(column string) bool
- func Value(v int) predicate.Node
- func ValueEQ(v int) predicate.Node
- func ValueGT(v int) predicate.Node
- func ValueGTE(v int) predicate.Node
- func ValueIn(vs ...int) predicate.Node
- func ValueIsNil() predicate.Node
- func ValueLT(v int) predicate.Node
- func ValueLTE(v int) predicate.Node
- func ValueNEQ(v int) predicate.Node
- func ValueNotIn(vs ...int) predicate.Node
- func ValueNotNil() predicate.Node
Constants ¶
const ( // Label holds the string label denoting the node type in the database. Label = "node" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldValue holds the string denoting the value field in the database. FieldValue = "value" // EdgePrev holds the string denoting the prev edge name in mutations. EdgePrev = "prev" // EdgeNext holds the string denoting the next edge name in mutations. EdgeNext = "next" // Table holds the table name of the node in the database. Table = "nodes" // PrevTable is the table that holds the prev relation/edge. PrevTable = "nodes" // PrevColumn is the table column denoting the prev relation/edge. PrevColumn = "node_next" // NextTable is the table that holds the next relation/edge. NextTable = "nodes" // NextColumn is the table column denoting the next relation/edge. NextColumn = "node_next" )
Variables ¶
var Columns = []string{ FieldID, FieldValue, }
Columns holds all SQL columns for node fields.
var ForeignKeys = []string{
"node_next",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "nodes" table and are not defined as standalone fields in the schema.
Functions ¶
func HasNextWith ¶
HasNextWith applies the HasEdge predicate on the "next" edge with a given conditions (other predicates).
func HasPrevWith ¶
HasPrevWith applies the HasEdge predicate on the "prev" edge with a given conditions (other predicates).
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
func Value ¶
Value applies equality check predicate on the "value" field. It's identical to ValueEQ.
func ValueIsNil ¶
ValueIsNil applies the IsNil predicate on the "value" field.
func ValueNotIn ¶
ValueNotIn applies the NotIn predicate on the "value" field.
func ValueNotNil ¶
ValueNotNil applies the NotNil predicate on the "value" field.
Types ¶
This section is empty.