Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Argument) predicate.Argument
- func Description(v string) predicate.Argument
- func DescriptionContains(v string) predicate.Argument
- func DescriptionContainsFold(v string) predicate.Argument
- func DescriptionEQ(v string) predicate.Argument
- func DescriptionEqualFold(v string) predicate.Argument
- func DescriptionGT(v string) predicate.Argument
- func DescriptionGTE(v string) predicate.Argument
- func DescriptionHasPrefix(v string) predicate.Argument
- func DescriptionHasSuffix(v string) predicate.Argument
- func DescriptionIn(vs ...string) predicate.Argument
- func DescriptionLT(v string) predicate.Argument
- func DescriptionLTE(v string) predicate.Argument
- func DescriptionNEQ(v string) predicate.Argument
- func DescriptionNotIn(vs ...string) predicate.Argument
- func ID(id int) predicate.Argument
- func IDEQ(id int) predicate.Argument
- func IDGT(id int) predicate.Argument
- func IDGTE(id int) predicate.Argument
- func IDIn(ids ...int) predicate.Argument
- func IDLT(id int) predicate.Argument
- func IDLTE(id int) predicate.Argument
- func IDNEQ(id int) predicate.Argument
- func IDNotIn(ids ...int) predicate.Argument
- func Name(v string) predicate.Argument
- func NameContains(v string) predicate.Argument
- func NameContainsFold(v string) predicate.Argument
- func NameEQ(v string) predicate.Argument
- func NameEqualFold(v string) predicate.Argument
- func NameGT(v string) predicate.Argument
- func NameGTE(v string) predicate.Argument
- func NameHasPrefix(v string) predicate.Argument
- func NameHasSuffix(v string) predicate.Argument
- func NameIn(vs ...string) predicate.Argument
- func NameLT(v string) predicate.Argument
- func NameLTE(v string) predicate.Argument
- func NameNEQ(v string) predicate.Argument
- func NameNotIn(vs ...string) predicate.Argument
- func Not(p predicate.Argument) predicate.Argument
- func Or(predicates ...predicate.Argument) predicate.Argument
- func TypeKind(v string) predicate.Argument
- func TypeKindContains(v string) predicate.Argument
- func TypeKindContainsFold(v string) predicate.Argument
- func TypeKindEQ(v string) predicate.Argument
- func TypeKindEqualFold(v string) predicate.Argument
- func TypeKindGT(v string) predicate.Argument
- func TypeKindGTE(v string) predicate.Argument
- func TypeKindHasPrefix(v string) predicate.Argument
- func TypeKindHasSuffix(v string) predicate.Argument
- func TypeKindIn(vs ...string) predicate.Argument
- func TypeKindLT(v string) predicate.Argument
- func TypeKindLTE(v string) predicate.Argument
- func TypeKindNEQ(v string) predicate.Argument
- func TypeKindNotIn(vs ...string) predicate.Argument
- func TypeName(v string) predicate.Argument
- func TypeNameContains(v string) predicate.Argument
- func TypeNameContainsFold(v string) predicate.Argument
- func TypeNameEQ(v string) predicate.Argument
- func TypeNameEqualFold(v string) predicate.Argument
- func TypeNameGT(v string) predicate.Argument
- func TypeNameGTE(v string) predicate.Argument
- func TypeNameHasPrefix(v string) predicate.Argument
- func TypeNameHasSuffix(v string) predicate.Argument
- func TypeNameIn(vs ...string) predicate.Argument
- func TypeNameLT(v string) predicate.Argument
- func TypeNameLTE(v string) predicate.Argument
- func TypeNameNEQ(v string) predicate.Argument
- func TypeNameNotIn(vs ...string) predicate.Argument
Constants ¶
const ( // Label holds the string label denoting the argument type in the database. Label = "argument" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldName holds the string denoting the name vertex property in the database. FieldName = "name" // FieldDescription holds the string denoting the description vertex property in the database. FieldDescription = "description" // FieldTypeKind holds the string denoting the type_kind vertex property in the database. FieldTypeKind = "type_kind" // FieldTypeName holds the string denoting the type_name vertex property in the database. FieldTypeName = "type_name" // Table holds the table name of the argument in the database. Table = "arguments" )
Variables ¶
var Columns = []string{ FieldID, FieldName, FieldDescription, FieldTypeKind, FieldTypeName, }
Columns holds all SQL columns for argument fields.
var ForeignKeys = []string{
"field_type_arguments",
}
ForeignKeys holds the SQL foreign-keys that are owned by the Argument type.
Functions ¶
func Description ¶
Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.
func DescriptionContains ¶
DescriptionContains applies the Contains predicate on the "description" field.
func DescriptionContainsFold ¶
DescriptionContainsFold applies the ContainsFold predicate on the "description" field.
func DescriptionEQ ¶
DescriptionEQ applies the EQ predicate on the "description" field.
func DescriptionEqualFold ¶
DescriptionEqualFold applies the EqualFold predicate on the "description" field.
func DescriptionGT ¶
DescriptionGT applies the GT predicate on the "description" field.
func DescriptionGTE ¶
DescriptionGTE applies the GTE predicate on the "description" field.
func DescriptionHasPrefix ¶
DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.
func DescriptionHasSuffix ¶
DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.
func DescriptionIn ¶
DescriptionIn applies the In predicate on the "description" field.
func DescriptionLT ¶
DescriptionLT applies the LT predicate on the "description" field.
func DescriptionLTE ¶
DescriptionLTE applies the LTE predicate on the "description" field.
func DescriptionNEQ ¶
DescriptionNEQ applies the NEQ predicate on the "description" field.
func DescriptionNotIn ¶
DescriptionNotIn applies the NotIn predicate on the "description" field.
func NameContains ¶
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEqualFold ¶
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameHasPrefix ¶
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func TypeKind ¶
TypeKind applies equality check predicate on the "type_kind" field. It's identical to TypeKindEQ.
func TypeKindContains ¶
TypeKindContains applies the Contains predicate on the "type_kind" field.
func TypeKindContainsFold ¶
TypeKindContainsFold applies the ContainsFold predicate on the "type_kind" field.
func TypeKindEQ ¶
TypeKindEQ applies the EQ predicate on the "type_kind" field.
func TypeKindEqualFold ¶
TypeKindEqualFold applies the EqualFold predicate on the "type_kind" field.
func TypeKindGT ¶
TypeKindGT applies the GT predicate on the "type_kind" field.
func TypeKindGTE ¶
TypeKindGTE applies the GTE predicate on the "type_kind" field.
func TypeKindHasPrefix ¶
TypeKindHasPrefix applies the HasPrefix predicate on the "type_kind" field.
func TypeKindHasSuffix ¶
TypeKindHasSuffix applies the HasSuffix predicate on the "type_kind" field.
func TypeKindIn ¶
TypeKindIn applies the In predicate on the "type_kind" field.
func TypeKindLT ¶
TypeKindLT applies the LT predicate on the "type_kind" field.
func TypeKindLTE ¶
TypeKindLTE applies the LTE predicate on the "type_kind" field.
func TypeKindNEQ ¶
TypeKindNEQ applies the NEQ predicate on the "type_kind" field.
func TypeKindNotIn ¶
TypeKindNotIn applies the NotIn predicate on the "type_kind" field.
func TypeName ¶
TypeName applies equality check predicate on the "type_name" field. It's identical to TypeNameEQ.
func TypeNameContains ¶
TypeNameContains applies the Contains predicate on the "type_name" field.
func TypeNameContainsFold ¶
TypeNameContainsFold applies the ContainsFold predicate on the "type_name" field.
func TypeNameEQ ¶
TypeNameEQ applies the EQ predicate on the "type_name" field.
func TypeNameEqualFold ¶
TypeNameEqualFold applies the EqualFold predicate on the "type_name" field.
func TypeNameGT ¶
TypeNameGT applies the GT predicate on the "type_name" field.
func TypeNameGTE ¶
TypeNameGTE applies the GTE predicate on the "type_name" field.
func TypeNameHasPrefix ¶
TypeNameHasPrefix applies the HasPrefix predicate on the "type_name" field.
func TypeNameHasSuffix ¶
TypeNameHasSuffix applies the HasSuffix predicate on the "type_name" field.
func TypeNameIn ¶
TypeNameIn applies the In predicate on the "type_name" field.
func TypeNameLT ¶
TypeNameLT applies the LT predicate on the "type_name" field.
func TypeNameLTE ¶
TypeNameLTE applies the LTE predicate on the "type_name" field.
func TypeNameNEQ ¶
TypeNameNEQ applies the NEQ predicate on the "type_name" field.
func TypeNameNotIn ¶
TypeNameNotIn applies the NotIn predicate on the "type_name" field.
Types ¶
This section is empty.