Documentation ¶
Index ¶
- Constants
- func And(predicates ...predicate.Person) predicate.Person
- func Email(v string) predicate.Person
- func EmailContains(v string) predicate.Person
- func EmailEQ(v string) predicate.Person
- func EmailGT(v string) predicate.Person
- func EmailGTE(v string) predicate.Person
- func EmailHasPrefix(v string) predicate.Person
- func EmailHasSuffix(v string) predicate.Person
- func EmailIn(vs ...string) predicate.Person
- func EmailLT(v string) predicate.Person
- func EmailLTE(v string) predicate.Person
- func EmailNEQ(v string) predicate.Person
- func EmailNotIn(vs ...string) predicate.Person
- func HasGithubAccount() predicate.Person
- func HasGithubAccountWith(preds ...predicate.GitHubUser) predicate.Person
- func ID(id string) predicate.Person
- func IDEQ(id string) predicate.Person
- func IDGT(id string) predicate.Person
- func IDGTE(id string) predicate.Person
- func IDIn(ids ...string) predicate.Person
- func IDLT(id string) predicate.Person
- func IDLTE(id string) predicate.Person
- func IDNEQ(id string) predicate.Person
- func IDNotIn(ids ...string) predicate.Person
- func IsGiantSwarmEmployee(v bool) predicate.Person
- func IsGiantSwarmEmployeeEQ(v bool) predicate.Person
- func IsGiantSwarmEmployeeNEQ(v bool) predicate.Person
- func Name(v string) predicate.Person
- func NameContains(v string) predicate.Person
- func NameEQ(v string) predicate.Person
- func NameGT(v string) predicate.Person
- func NameGTE(v string) predicate.Person
- func NameHasPrefix(v string) predicate.Person
- func NameHasSuffix(v string) predicate.Person
- func NameIn(vs ...string) predicate.Person
- func NameLT(v string) predicate.Person
- func NameLTE(v string) predicate.Person
- func NameNEQ(v string) predicate.Person
- func NameNotIn(vs ...string) predicate.Person
- func Not(p predicate.Person) predicate.Person
- func Or(predicates ...predicate.Person) predicate.Person
Constants ¶
const ( // Label holds the string label denoting the person type in the database. Label = "person" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldEmail holds the string denoting the email field in the database. FieldEmail = "email" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldIsGiantSwarmEmployee holds the string denoting the isgiantswarmemployee field in the database. FieldIsGiantSwarmEmployee = "is_giant_swarm_employee" // EdgeGithubAccount holds the string denoting the github_account edge name in mutations. EdgeGithubAccount = "github_account" // GithubAccountLabel holds the string label denoting the github_account edge type in the database. GithubAccountLabel = "person_github_account" )
Variables ¶
This section is empty.
Functions ¶
func Email ¶
Email applies equality check predicate on the "email" field. It's identical to EmailEQ.
func EmailContains ¶
EmailContains applies the Contains predicate on the "email" field.
func EmailHasPrefix ¶
EmailHasPrefix applies the HasPrefix predicate on the "email" field.
func EmailHasSuffix ¶
EmailHasSuffix applies the HasSuffix predicate on the "email" field.
func EmailNotIn ¶
EmailNotIn applies the NotIn predicate on the "email" field.
func HasGithubAccount ¶
HasGithubAccount applies the HasEdge predicate on the "github_account" edge.
func HasGithubAccountWith ¶
func HasGithubAccountWith(preds ...predicate.GitHubUser) predicate.Person
HasGithubAccountWith applies the HasEdge predicate on the "github_account" edge with a given conditions (other predicates).
func IsGiantSwarmEmployee ¶
IsGiantSwarmEmployee applies equality check predicate on the "isGiantSwarmEmployee" field. It's identical to IsGiantSwarmEmployeeEQ.
func IsGiantSwarmEmployeeEQ ¶
IsGiantSwarmEmployeeEQ applies the EQ predicate on the "isGiantSwarmEmployee" field.
func IsGiantSwarmEmployeeNEQ ¶
IsGiantSwarmEmployeeNEQ applies the NEQ predicate on the "isGiantSwarmEmployee" field.
func NameContains ¶
NameContains applies the Contains 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.
Types ¶
This section is empty.