familyinfo

package
v0.0.0-...-1cc1a95 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 26, 2023 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the familyinfo type in the database.
	Label = "family_info"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldRelationship holds the string denoting the relationship field in the database.
	FieldRelationship = "relationship"
	// FieldIDCard holds the string denoting the id_card field in the database.
	FieldIDCard = "id_card"
	// FieldAge holds the string denoting the age field in the database.
	FieldAge = "age"
	// FieldOccupation holds the string denoting the occupation field in the database.
	FieldOccupation = "occupation"
	// FieldPost holds the string denoting the post field in the database.
	FieldPost = "post"
	// FieldWorkUnit holds the string denoting the work_unit field in the database.
	FieldWorkUnit = "work_unit"
	// FieldContactNumber holds the string denoting the contact_number field in the database.
	FieldContactNumber = "contact_number"
	// FieldHealth holds the string denoting the health field in the database.
	FieldHealth = "health"
	// EdgeStudent holds the string denoting the student edge name in mutations.
	EdgeStudent = "student"
	// Table holds the table name of the familyinfo in the database.
	Table = "family_infos"
	// StudentTable is the table that holds the student relation/edge.
	StudentTable = "family_infos"
	// StudentInverseTable is the table name for the Student entity.
	// It exists in this package in order to avoid circular dependency with the "student" package.
	StudentInverseTable = "students"
	// StudentColumn is the table column denoting the student relation/edge.
	StudentColumn = "family_info_student"
)

Variables

Columns holds all SQL columns for familyinfo fields.

View Source
var ForeignKeys = []string{
	"family_info_student",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "family_infos" table and are not defined as standalone fields in the schema.

Functions

func Age

Age applies equality check predicate on the "age" field. It's identical to AgeEQ.

func AgeContains

func AgeContains(v string) predicate.FamilyInfo

AgeContains applies the Contains predicate on the "age" field.

func AgeContainsFold

func AgeContainsFold(v string) predicate.FamilyInfo

AgeContainsFold applies the ContainsFold predicate on the "age" field.

func AgeEQ

func AgeEQ(v string) predicate.FamilyInfo

AgeEQ applies the EQ predicate on the "age" field.

func AgeEqualFold

func AgeEqualFold(v string) predicate.FamilyInfo

AgeEqualFold applies the EqualFold predicate on the "age" field.

func AgeGT

func AgeGT(v string) predicate.FamilyInfo

AgeGT applies the GT predicate on the "age" field.

func AgeGTE

func AgeGTE(v string) predicate.FamilyInfo

AgeGTE applies the GTE predicate on the "age" field.

func AgeHasPrefix

func AgeHasPrefix(v string) predicate.FamilyInfo

AgeHasPrefix applies the HasPrefix predicate on the "age" field.

func AgeHasSuffix

func AgeHasSuffix(v string) predicate.FamilyInfo

AgeHasSuffix applies the HasSuffix predicate on the "age" field.

func AgeIn

func AgeIn(vs ...string) predicate.FamilyInfo

AgeIn applies the In predicate on the "age" field.

func AgeLT

func AgeLT(v string) predicate.FamilyInfo

AgeLT applies the LT predicate on the "age" field.

func AgeLTE

func AgeLTE(v string) predicate.FamilyInfo

AgeLTE applies the LTE predicate on the "age" field.

func AgeNEQ

func AgeNEQ(v string) predicate.FamilyInfo

AgeNEQ applies the NEQ predicate on the "age" field.

func AgeNotIn

func AgeNotIn(vs ...string) predicate.FamilyInfo

AgeNotIn applies the NotIn predicate on the "age" field.

func And

func And(predicates ...predicate.FamilyInfo) predicate.FamilyInfo

And groups predicates with the AND operator between them.

func ContactNumber

func ContactNumber(v string) predicate.FamilyInfo

ContactNumber applies equality check predicate on the "contact_number" field. It's identical to ContactNumberEQ.

func ContactNumberContains

func ContactNumberContains(v string) predicate.FamilyInfo

ContactNumberContains applies the Contains predicate on the "contact_number" field.

func ContactNumberContainsFold

func ContactNumberContainsFold(v string) predicate.FamilyInfo

ContactNumberContainsFold applies the ContainsFold predicate on the "contact_number" field.

func ContactNumberEQ

func ContactNumberEQ(v string) predicate.FamilyInfo

ContactNumberEQ applies the EQ predicate on the "contact_number" field.

func ContactNumberEqualFold

func ContactNumberEqualFold(v string) predicate.FamilyInfo

ContactNumberEqualFold applies the EqualFold predicate on the "contact_number" field.

func ContactNumberGT

func ContactNumberGT(v string) predicate.FamilyInfo

ContactNumberGT applies the GT predicate on the "contact_number" field.

func ContactNumberGTE

func ContactNumberGTE(v string) predicate.FamilyInfo

ContactNumberGTE applies the GTE predicate on the "contact_number" field.

func ContactNumberHasPrefix

func ContactNumberHasPrefix(v string) predicate.FamilyInfo

ContactNumberHasPrefix applies the HasPrefix predicate on the "contact_number" field.

func ContactNumberHasSuffix

func ContactNumberHasSuffix(v string) predicate.FamilyInfo

ContactNumberHasSuffix applies the HasSuffix predicate on the "contact_number" field.

func ContactNumberIn

func ContactNumberIn(vs ...string) predicate.FamilyInfo

ContactNumberIn applies the In predicate on the "contact_number" field.

func ContactNumberLT

func ContactNumberLT(v string) predicate.FamilyInfo

ContactNumberLT applies the LT predicate on the "contact_number" field.

func ContactNumberLTE

func ContactNumberLTE(v string) predicate.FamilyInfo

ContactNumberLTE applies the LTE predicate on the "contact_number" field.

func ContactNumberNEQ

func ContactNumberNEQ(v string) predicate.FamilyInfo

ContactNumberNEQ applies the NEQ predicate on the "contact_number" field.

func ContactNumberNotIn

func ContactNumberNotIn(vs ...string) predicate.FamilyInfo

ContactNumberNotIn applies the NotIn predicate on the "contact_number" field.

func HasStudent

func HasStudent() predicate.FamilyInfo

HasStudent applies the HasEdge predicate on the "student" edge.

func HasStudentWith

func HasStudentWith(preds ...predicate.Student) predicate.FamilyInfo

HasStudentWith applies the HasEdge predicate on the "student" edge with a given conditions (other predicates).

func Health

func Health(v string) predicate.FamilyInfo

Health applies equality check predicate on the "health" field. It's identical to HealthEQ.

func HealthContains

func HealthContains(v string) predicate.FamilyInfo

HealthContains applies the Contains predicate on the "health" field.

func HealthContainsFold

func HealthContainsFold(v string) predicate.FamilyInfo

HealthContainsFold applies the ContainsFold predicate on the "health" field.

func HealthEQ

func HealthEQ(v string) predicate.FamilyInfo

HealthEQ applies the EQ predicate on the "health" field.

func HealthEqualFold

func HealthEqualFold(v string) predicate.FamilyInfo

HealthEqualFold applies the EqualFold predicate on the "health" field.

func HealthGT

func HealthGT(v string) predicate.FamilyInfo

HealthGT applies the GT predicate on the "health" field.

func HealthGTE

func HealthGTE(v string) predicate.FamilyInfo

HealthGTE applies the GTE predicate on the "health" field.

func HealthHasPrefix

func HealthHasPrefix(v string) predicate.FamilyInfo

HealthHasPrefix applies the HasPrefix predicate on the "health" field.

func HealthHasSuffix

func HealthHasSuffix(v string) predicate.FamilyInfo

HealthHasSuffix applies the HasSuffix predicate on the "health" field.

func HealthIn

func HealthIn(vs ...string) predicate.FamilyInfo

HealthIn applies the In predicate on the "health" field.

func HealthLT

func HealthLT(v string) predicate.FamilyInfo

HealthLT applies the LT predicate on the "health" field.

func HealthLTE

func HealthLTE(v string) predicate.FamilyInfo

HealthLTE applies the LTE predicate on the "health" field.

func HealthNEQ

func HealthNEQ(v string) predicate.FamilyInfo

HealthNEQ applies the NEQ predicate on the "health" field.

func HealthNotIn

func HealthNotIn(vs ...string) predicate.FamilyInfo

HealthNotIn applies the NotIn predicate on the "health" field.

func ID

func ID(id int) predicate.FamilyInfo

ID filters vertices based on their ID field.

func IDCard

func IDCard(v string) predicate.FamilyInfo

IDCard applies equality check predicate on the "id_card" field. It's identical to IDCardEQ.

func IDCardContains

func IDCardContains(v string) predicate.FamilyInfo

IDCardContains applies the Contains predicate on the "id_card" field.

func IDCardContainsFold

func IDCardContainsFold(v string) predicate.FamilyInfo

IDCardContainsFold applies the ContainsFold predicate on the "id_card" field.

func IDCardEQ

func IDCardEQ(v string) predicate.FamilyInfo

IDCardEQ applies the EQ predicate on the "id_card" field.

func IDCardEqualFold

func IDCardEqualFold(v string) predicate.FamilyInfo

IDCardEqualFold applies the EqualFold predicate on the "id_card" field.

func IDCardGT

func IDCardGT(v string) predicate.FamilyInfo

IDCardGT applies the GT predicate on the "id_card" field.

func IDCardGTE

func IDCardGTE(v string) predicate.FamilyInfo

IDCardGTE applies the GTE predicate on the "id_card" field.

func IDCardHasPrefix

func IDCardHasPrefix(v string) predicate.FamilyInfo

IDCardHasPrefix applies the HasPrefix predicate on the "id_card" field.

func IDCardHasSuffix

func IDCardHasSuffix(v string) predicate.FamilyInfo

IDCardHasSuffix applies the HasSuffix predicate on the "id_card" field.

func IDCardIn

func IDCardIn(vs ...string) predicate.FamilyInfo

IDCardIn applies the In predicate on the "id_card" field.

func IDCardLT

func IDCardLT(v string) predicate.FamilyInfo

IDCardLT applies the LT predicate on the "id_card" field.

func IDCardLTE

func IDCardLTE(v string) predicate.FamilyInfo

IDCardLTE applies the LTE predicate on the "id_card" field.

func IDCardNEQ

func IDCardNEQ(v string) predicate.FamilyInfo

IDCardNEQ applies the NEQ predicate on the "id_card" field.

func IDCardNotIn

func IDCardNotIn(vs ...string) predicate.FamilyInfo

IDCardNotIn applies the NotIn predicate on the "id_card" field.

func IDEQ

func IDEQ(id int) predicate.FamilyInfo

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.FamilyInfo

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.FamilyInfo

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.FamilyInfo

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.FamilyInfo

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.FamilyInfo

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.FamilyInfo

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.FamilyInfo

IDNotIn applies the NotIn predicate on the ID field.

func Name

func Name(v string) predicate.FamilyInfo

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.FamilyInfo

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.FamilyInfo

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.FamilyInfo

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.FamilyInfo

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.FamilyInfo

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.FamilyInfo

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.FamilyInfo

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.FamilyInfo

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.FamilyInfo

NameIn applies the In predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.FamilyInfo

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.FamilyInfo

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.FamilyInfo

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.FamilyInfo

NameNotIn applies the NotIn predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Occupation

func Occupation(v string) predicate.FamilyInfo

Occupation applies equality check predicate on the "occupation" field. It's identical to OccupationEQ.

func OccupationContains

func OccupationContains(v string) predicate.FamilyInfo

OccupationContains applies the Contains predicate on the "occupation" field.

func OccupationContainsFold

func OccupationContainsFold(v string) predicate.FamilyInfo

OccupationContainsFold applies the ContainsFold predicate on the "occupation" field.

func OccupationEQ

func OccupationEQ(v string) predicate.FamilyInfo

OccupationEQ applies the EQ predicate on the "occupation" field.

func OccupationEqualFold

func OccupationEqualFold(v string) predicate.FamilyInfo

OccupationEqualFold applies the EqualFold predicate on the "occupation" field.

func OccupationGT

func OccupationGT(v string) predicate.FamilyInfo

OccupationGT applies the GT predicate on the "occupation" field.

func OccupationGTE

func OccupationGTE(v string) predicate.FamilyInfo

OccupationGTE applies the GTE predicate on the "occupation" field.

func OccupationHasPrefix

func OccupationHasPrefix(v string) predicate.FamilyInfo

OccupationHasPrefix applies the HasPrefix predicate on the "occupation" field.

func OccupationHasSuffix

func OccupationHasSuffix(v string) predicate.FamilyInfo

OccupationHasSuffix applies the HasSuffix predicate on the "occupation" field.

func OccupationIn

func OccupationIn(vs ...string) predicate.FamilyInfo

OccupationIn applies the In predicate on the "occupation" field.

func OccupationLT

func OccupationLT(v string) predicate.FamilyInfo

OccupationLT applies the LT predicate on the "occupation" field.

func OccupationLTE

func OccupationLTE(v string) predicate.FamilyInfo

OccupationLTE applies the LTE predicate on the "occupation" field.

func OccupationNEQ

func OccupationNEQ(v string) predicate.FamilyInfo

OccupationNEQ applies the NEQ predicate on the "occupation" field.

func OccupationNotIn

func OccupationNotIn(vs ...string) predicate.FamilyInfo

OccupationNotIn applies the NotIn predicate on the "occupation" field.

func Or

func Or(predicates ...predicate.FamilyInfo) predicate.FamilyInfo

Or groups predicates with the OR operator between them.

func Post

func Post(v string) predicate.FamilyInfo

Post applies equality check predicate on the "post" field. It's identical to PostEQ.

func PostContains

func PostContains(v string) predicate.FamilyInfo

PostContains applies the Contains predicate on the "post" field.

func PostContainsFold

func PostContainsFold(v string) predicate.FamilyInfo

PostContainsFold applies the ContainsFold predicate on the "post" field.

func PostEQ

func PostEQ(v string) predicate.FamilyInfo

PostEQ applies the EQ predicate on the "post" field.

func PostEqualFold

func PostEqualFold(v string) predicate.FamilyInfo

PostEqualFold applies the EqualFold predicate on the "post" field.

func PostGT

func PostGT(v string) predicate.FamilyInfo

PostGT applies the GT predicate on the "post" field.

func PostGTE

func PostGTE(v string) predicate.FamilyInfo

PostGTE applies the GTE predicate on the "post" field.

func PostHasPrefix

func PostHasPrefix(v string) predicate.FamilyInfo

PostHasPrefix applies the HasPrefix predicate on the "post" field.

func PostHasSuffix

func PostHasSuffix(v string) predicate.FamilyInfo

PostHasSuffix applies the HasSuffix predicate on the "post" field.

func PostIn

func PostIn(vs ...string) predicate.FamilyInfo

PostIn applies the In predicate on the "post" field.

func PostLT

func PostLT(v string) predicate.FamilyInfo

PostLT applies the LT predicate on the "post" field.

func PostLTE

func PostLTE(v string) predicate.FamilyInfo

PostLTE applies the LTE predicate on the "post" field.

func PostNEQ

func PostNEQ(v string) predicate.FamilyInfo

PostNEQ applies the NEQ predicate on the "post" field.

func PostNotIn

func PostNotIn(vs ...string) predicate.FamilyInfo

PostNotIn applies the NotIn predicate on the "post" field.

func Relationship

func Relationship(v string) predicate.FamilyInfo

Relationship applies equality check predicate on the "relationship" field. It's identical to RelationshipEQ.

func RelationshipContains

func RelationshipContains(v string) predicate.FamilyInfo

RelationshipContains applies the Contains predicate on the "relationship" field.

func RelationshipContainsFold

func RelationshipContainsFold(v string) predicate.FamilyInfo

RelationshipContainsFold applies the ContainsFold predicate on the "relationship" field.

func RelationshipEQ

func RelationshipEQ(v string) predicate.FamilyInfo

RelationshipEQ applies the EQ predicate on the "relationship" field.

func RelationshipEqualFold

func RelationshipEqualFold(v string) predicate.FamilyInfo

RelationshipEqualFold applies the EqualFold predicate on the "relationship" field.

func RelationshipGT

func RelationshipGT(v string) predicate.FamilyInfo

RelationshipGT applies the GT predicate on the "relationship" field.

func RelationshipGTE

func RelationshipGTE(v string) predicate.FamilyInfo

RelationshipGTE applies the GTE predicate on the "relationship" field.

func RelationshipHasPrefix

func RelationshipHasPrefix(v string) predicate.FamilyInfo

RelationshipHasPrefix applies the HasPrefix predicate on the "relationship" field.

func RelationshipHasSuffix

func RelationshipHasSuffix(v string) predicate.FamilyInfo

RelationshipHasSuffix applies the HasSuffix predicate on the "relationship" field.

func RelationshipIn

func RelationshipIn(vs ...string) predicate.FamilyInfo

RelationshipIn applies the In predicate on the "relationship" field.

func RelationshipLT

func RelationshipLT(v string) predicate.FamilyInfo

RelationshipLT applies the LT predicate on the "relationship" field.

func RelationshipLTE

func RelationshipLTE(v string) predicate.FamilyInfo

RelationshipLTE applies the LTE predicate on the "relationship" field.

func RelationshipNEQ

func RelationshipNEQ(v string) predicate.FamilyInfo

RelationshipNEQ applies the NEQ predicate on the "relationship" field.

func RelationshipNotIn

func RelationshipNotIn(vs ...string) predicate.FamilyInfo

RelationshipNotIn applies the NotIn predicate on the "relationship" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

func WorkUnit

func WorkUnit(v string) predicate.FamilyInfo

WorkUnit applies equality check predicate on the "work_unit" field. It's identical to WorkUnitEQ.

func WorkUnitContains

func WorkUnitContains(v string) predicate.FamilyInfo

WorkUnitContains applies the Contains predicate on the "work_unit" field.

func WorkUnitContainsFold

func WorkUnitContainsFold(v string) predicate.FamilyInfo

WorkUnitContainsFold applies the ContainsFold predicate on the "work_unit" field.

func WorkUnitEQ

func WorkUnitEQ(v string) predicate.FamilyInfo

WorkUnitEQ applies the EQ predicate on the "work_unit" field.

func WorkUnitEqualFold

func WorkUnitEqualFold(v string) predicate.FamilyInfo

WorkUnitEqualFold applies the EqualFold predicate on the "work_unit" field.

func WorkUnitGT

func WorkUnitGT(v string) predicate.FamilyInfo

WorkUnitGT applies the GT predicate on the "work_unit" field.

func WorkUnitGTE

func WorkUnitGTE(v string) predicate.FamilyInfo

WorkUnitGTE applies the GTE predicate on the "work_unit" field.

func WorkUnitHasPrefix

func WorkUnitHasPrefix(v string) predicate.FamilyInfo

WorkUnitHasPrefix applies the HasPrefix predicate on the "work_unit" field.

func WorkUnitHasSuffix

func WorkUnitHasSuffix(v string) predicate.FamilyInfo

WorkUnitHasSuffix applies the HasSuffix predicate on the "work_unit" field.

func WorkUnitIn

func WorkUnitIn(vs ...string) predicate.FamilyInfo

WorkUnitIn applies the In predicate on the "work_unit" field.

func WorkUnitLT

func WorkUnitLT(v string) predicate.FamilyInfo

WorkUnitLT applies the LT predicate on the "work_unit" field.

func WorkUnitLTE

func WorkUnitLTE(v string) predicate.FamilyInfo

WorkUnitLTE applies the LTE predicate on the "work_unit" field.

func WorkUnitNEQ

func WorkUnitNEQ(v string) predicate.FamilyInfo

WorkUnitNEQ applies the NEQ predicate on the "work_unit" field.

func WorkUnitNotIn

func WorkUnitNotIn(vs ...string) predicate.FamilyInfo

WorkUnitNotIn applies the NotIn predicate on the "work_unit" field.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL