Documentation ¶
Index ¶
- Constants
- Variables
- func Age(v int) predicate.Metadata
- func AgeEQ(v int) predicate.Metadata
- func AgeGT(v int) predicate.Metadata
- func AgeGTE(v int) predicate.Metadata
- func AgeIn(vs ...int) predicate.Metadata
- func AgeLT(v int) predicate.Metadata
- func AgeLTE(v int) predicate.Metadata
- func AgeNEQ(v int) predicate.Metadata
- func AgeNotIn(vs ...int) predicate.Metadata
- func And(predicates ...predicate.Metadata) predicate.Metadata
- func HasChildren() predicate.Metadata
- func HasChildrenWith(preds ...predicate.Metadata) predicate.Metadata
- func HasParent() predicate.Metadata
- func HasParentWith(preds ...predicate.Metadata) predicate.Metadata
- func HasUser() predicate.Metadata
- func HasUserWith(preds ...predicate.User) predicate.Metadata
- func ID(id int) predicate.Metadata
- func IDEQ(id int) predicate.Metadata
- func IDGT(id int) predicate.Metadata
- func IDGTE(id int) predicate.Metadata
- func IDIn(ids ...int) predicate.Metadata
- func IDLT(id int) predicate.Metadata
- func IDLTE(id int) predicate.Metadata
- func IDNEQ(id int) predicate.Metadata
- func IDNotIn(ids ...int) predicate.Metadata
- func Not(p predicate.Metadata) predicate.Metadata
- func Or(predicates ...predicate.Metadata) predicate.Metadata
- func ParentID(v int) predicate.Metadata
- func ParentIDEQ(v int) predicate.Metadata
- func ParentIDIn(vs ...int) predicate.Metadata
- func ParentIDIsNil() predicate.Metadata
- func ParentIDNEQ(v int) predicate.Metadata
- func ParentIDNotIn(vs ...int) predicate.Metadata
- func ParentIDNotNil() predicate.Metadata
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the metadata type in the database. Label = "metadata" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldAge holds the string denoting the age field in the database. FieldAge = "age" // FieldParentID holds the string denoting the parent_id field in the database. FieldParentID = "parent_id" // EdgeUser holds the string denoting the user edge name in mutations. EdgeUser = "user" // EdgeChildren holds the string denoting the children edge name in mutations. EdgeChildren = "children" // EdgeParent holds the string denoting the parent edge name in mutations. EdgeParent = "parent" // Table holds the table name of the metadata in the database. Table = "metadata" // UserTable is the table that holds the user relation/edge. UserTable = "metadata" // UserInverseTable is the table name for the User entity. // It exists in this package in order to avoid circular dependency with the "user" package. UserInverseTable = "users" // UserColumn is the table column denoting the user relation/edge. UserColumn = "id" // ChildrenTable is the table that holds the children relation/edge. ChildrenTable = "metadata" // ChildrenColumn is the table column denoting the children relation/edge. ChildrenColumn = "parent_id" // ParentTable is the table that holds the parent relation/edge. ParentTable = "metadata" // ParentColumn is the table column denoting the parent relation/edge. ParentColumn = "parent_id" )
Variables ¶
var Columns = []string{ FieldID, FieldAge, FieldParentID, }
Columns holds all SQL columns for metadata fields.
var ( // DefaultAge holds the default value on creation for the "age" field. DefaultAge int )
Functions ¶
func HasChildren ¶
HasChildren applies the HasEdge predicate on the "children" edge.
func HasChildrenWith ¶
HasChildrenWith applies the HasEdge predicate on the "children" edge with a given conditions (other predicates).
func HasParentWith ¶
HasParentWith applies the HasEdge predicate on the "parent" edge with a given conditions (other predicates).
func HasUserWith ¶
HasUserWith applies the HasEdge predicate on the "user" edge with a given conditions (other predicates).
func ParentID ¶
ParentID applies equality check predicate on the "parent_id" field. It's identical to ParentIDEQ.
func ParentIDEQ ¶
ParentIDEQ applies the EQ predicate on the "parent_id" field.
func ParentIDIn ¶
ParentIDIn applies the In predicate on the "parent_id" field.
func ParentIDIsNil ¶
ParentIDIsNil applies the IsNil predicate on the "parent_id" field.
func ParentIDNEQ ¶
ParentIDNEQ applies the NEQ predicate on the "parent_id" field.
func ParentIDNotIn ¶
ParentIDNotIn applies the NotIn predicate on the "parent_id" field.
func ParentIDNotNil ¶
ParentIDNotNil applies the NotNil predicate on the "parent_id" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.