Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Todo) predicate.Todo
- func Blob(v []byte) predicate.Todo
- func BlobEQ(v []byte) predicate.Todo
- func BlobGT(v []byte) predicate.Todo
- func BlobGTE(v []byte) predicate.Todo
- func BlobIn(vs ...[]byte) predicate.Todo
- func BlobIsNil() predicate.Todo
- func BlobLT(v []byte) predicate.Todo
- func BlobLTE(v []byte) predicate.Todo
- func BlobNEQ(v []byte) predicate.Todo
- func BlobNotIn(vs ...[]byte) predicate.Todo
- func BlobNotNil() predicate.Todo
- func CreatedAt(v time.Time) predicate.Todo
- func CreatedAtEQ(v time.Time) predicate.Todo
- func CreatedAtGT(v time.Time) predicate.Todo
- func CreatedAtGTE(v time.Time) predicate.Todo
- func CreatedAtIn(vs ...time.Time) predicate.Todo
- func CreatedAtLT(v time.Time) predicate.Todo
- func CreatedAtLTE(v time.Time) predicate.Todo
- func CreatedAtNEQ(v time.Time) predicate.Todo
- func CreatedAtNotIn(vs ...time.Time) predicate.Todo
- func HasCategory() predicate.Todo
- func HasCategoryWith(preds ...predicate.Category) predicate.Todo
- func HasChildren() predicate.Todo
- func HasChildrenWith(preds ...predicate.Todo) predicate.Todo
- func HasParent() predicate.Todo
- func HasParentWith(preds ...predicate.Todo) predicate.Todo
- func HasSecret() predicate.Todo
- func HasSecretWith(preds ...predicate.VerySecret) predicate.Todo
- func ID(id int) predicate.Todo
- func IDEQ(id int) predicate.Todo
- func IDGT(id int) predicate.Todo
- func IDGTE(id int) predicate.Todo
- func IDIn(ids ...int) predicate.Todo
- func IDLT(id int) predicate.Todo
- func IDLTE(id int) predicate.Todo
- func IDNEQ(id int) predicate.Todo
- func IDNotIn(ids ...int) predicate.Todo
- func Not(p predicate.Todo) predicate.Todo
- func Or(predicates ...predicate.Todo) predicate.Todo
- func Priority(v int) predicate.Todo
- func PriorityEQ(v int) predicate.Todo
- func PriorityGT(v int) predicate.Todo
- func PriorityGTE(v int) predicate.Todo
- func PriorityIn(vs ...int) predicate.Todo
- func PriorityLT(v int) predicate.Todo
- func PriorityLTE(v int) predicate.Todo
- func PriorityNEQ(v int) predicate.Todo
- func PriorityNotIn(vs ...int) predicate.Todo
- func StatusEQ(v Status) predicate.Todo
- func StatusIn(vs ...Status) predicate.Todo
- func StatusNEQ(v Status) predicate.Todo
- func StatusNotIn(vs ...Status) predicate.Todo
- func StatusValidator(s Status) error
- func Text(v string) predicate.Todo
- func TextContains(v string) predicate.Todo
- func TextContainsFold(v string) predicate.Todo
- func TextEQ(v string) predicate.Todo
- func TextEqualFold(v string) predicate.Todo
- func TextGT(v string) predicate.Todo
- func TextGTE(v string) predicate.Todo
- func TextHasPrefix(v string) predicate.Todo
- func TextHasSuffix(v string) predicate.Todo
- func TextIn(vs ...string) predicate.Todo
- func TextLT(v string) predicate.Todo
- func TextLTE(v string) predicate.Todo
- func TextNEQ(v string) predicate.Todo
- func TextNotIn(vs ...string) predicate.Todo
- func ValidColumn(column string) bool
- type Status
Constants ¶
const ( // Label holds the string label denoting the todo type in the database. Label = "todo" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // FieldStatus holds the string denoting the status field in the database. FieldStatus = "status" // FieldPriority holds the string denoting the priority field in the database. FieldPriority = "priority" // FieldText holds the string denoting the text field in the database. FieldText = "text" // FieldBlob holds the string denoting the blob field in the database. FieldBlob = "blob" // EdgeParent holds the string denoting the parent edge name in mutations. EdgeParent = "parent" // EdgeChildren holds the string denoting the children edge name in mutations. EdgeChildren = "children" // EdgeCategory holds the string denoting the category edge name in mutations. EdgeCategory = "category" // EdgeSecret holds the string denoting the secret edge name in mutations. EdgeSecret = "secret" // Table holds the table name of the todo in the database. Table = "todos" // ParentTable is the table that holds the parent relation/edge. ParentTable = "todos" // ParentColumn is the table column denoting the parent relation/edge. ParentColumn = "todo_children" // ChildrenTable is the table that holds the children relation/edge. ChildrenTable = "todos" // ChildrenColumn is the table column denoting the children relation/edge. ChildrenColumn = "todo_children" // CategoryTable is the table that holds the category relation/edge. CategoryTable = "todos" // CategoryInverseTable is the table name for the Category entity. // It exists in this package in order to avoid circular dependency with the "category" package. CategoryInverseTable = "categories" // CategoryColumn is the table column denoting the category relation/edge. CategoryColumn = "category_todos" // SecretTable is the table that holds the secret relation/edge. SecretTable = "todos" // SecretInverseTable is the table name for the VerySecret entity. // It exists in this package in order to avoid circular dependency with the "verysecret" package. SecretInverseTable = "very_secrets" // SecretColumn is the table column denoting the secret relation/edge. SecretColumn = "todo_secret" )
Variables ¶
var ( // DefaultCreatedAt holds the default value on creation for the "created_at" field. DefaultCreatedAt func() time.Time // DefaultPriority holds the default value on creation for the "priority" field. DefaultPriority int // TextValidator is a validator for the "text" field. It is called by the builders before save. TextValidator func(string) error )
var Columns = []string{ FieldID, FieldCreatedAt, FieldStatus, FieldPriority, FieldText, FieldBlob, }
Columns holds all SQL columns for todo fields.
var ForeignKeys = []string{
"category_todos",
"todo_children",
"todo_secret",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "todos" table and are not defined as standalone fields in the schema.
Functions ¶
func BlobNotNil ¶
BlobNotNil applies the NotNil predicate on the "blob" field.
func CreatedAt ¶
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func HasCategory ¶
HasCategory applies the HasEdge predicate on the "category" edge.
func HasCategoryWith ¶
HasCategoryWith applies the HasEdge predicate on the "category" edge with a given conditions (other predicates).
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 HasSecretWith ¶
func HasSecretWith(preds ...predicate.VerySecret) predicate.Todo
HasSecretWith applies the HasEdge predicate on the "secret" edge with a given conditions (other predicates).
func Priority ¶
Priority applies equality check predicate on the "priority" field. It's identical to PriorityEQ.
func PriorityEQ ¶
PriorityEQ applies the EQ predicate on the "priority" field.
func PriorityGT ¶
PriorityGT applies the GT predicate on the "priority" field.
func PriorityGTE ¶
PriorityGTE applies the GTE predicate on the "priority" field.
func PriorityIn ¶
PriorityIn applies the In predicate on the "priority" field.
func PriorityLT ¶
PriorityLT applies the LT predicate on the "priority" field.
func PriorityLTE ¶
PriorityLTE applies the LTE predicate on the "priority" field.
func PriorityNEQ ¶
PriorityNEQ applies the NEQ predicate on the "priority" field.
func PriorityNotIn ¶
PriorityNotIn applies the NotIn predicate on the "priority" field.
func StatusNotIn ¶
StatusNotIn applies the NotIn predicate on the "status" field.
func StatusValidator ¶
StatusValidator is a validator for the "status" field enum values. It is called by the builders before save.
func TextContains ¶
TextContains applies the Contains predicate on the "text" field.
func TextContainsFold ¶
TextContainsFold applies the ContainsFold predicate on the "text" field.
func TextEqualFold ¶
TextEqualFold applies the EqualFold predicate on the "text" field.
func TextHasPrefix ¶
TextHasPrefix applies the HasPrefix predicate on the "text" field.
func TextHasSuffix ¶
TextHasSuffix applies the HasSuffix predicate on the "text" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type Status ¶
type Status string
Status defines the type for the "status" enum field.
Status values.
func (Status) MarshalGQL ¶
MarshalGQL implements graphql.Marshaler interface.
func (*Status) UnmarshalGQL ¶
UnmarshalGQL implements graphql.Unmarshaler interface.