githubuser

package
v0.0.0-...-b385652 Latest Latest
Warning

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

Go to latest
Published: Dec 18, 2021 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the githubuser type in the database.
	Label = "git_hub_user"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldGithubID holds the string denoting the github_id field in the database.
	FieldGithubID = "github_id"
	// FieldLogin holds the string denoting the login field in the database.
	FieldLogin = "login"
	// 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"
	// EdgeCreatedIssues holds the string denoting the created_issues edge name in mutations.
	EdgeCreatedIssues = "created_issues"
	// EdgeClosedIssues holds the string denoting the closed_issues edge name in mutations.
	EdgeClosedIssues = "closed_issues"
	// EdgePerson holds the string denoting the person edge name in mutations.
	EdgePerson = "person"
	// EdgeAssignedIssues holds the string denoting the assigned_issues edge name in mutations.
	EdgeAssignedIssues = "assigned_issues"
	// CreatedIssuesLabel holds the string label denoting the created_issues edge type in the database.
	CreatedIssuesLabel = "git_hub_user_created_issues"
	// ClosedIssuesLabel holds the string label denoting the closed_issues edge type in the database.
	ClosedIssuesLabel = "git_hub_user_closed_issues"
	// PersonInverseLabel holds the string label denoting the person inverse edge type in the database.
	PersonInverseLabel = "person_github_account"
	// AssignedIssuesInverseLabel holds the string label denoting the assigned_issues inverse edge type in the database.
	AssignedIssuesInverseLabel = "git_hub_issue_assignees"
)

Variables

View Source
var (
	// GithubIDValidator is a validator for the "github_id" field. It is called by the builders before save.
	GithubIDValidator func(int) error
	// IDValidator is a validator for the "id" field. It is called by the builders before save.
	IDValidator func(string) error
)

Functions

func And

func And(predicates ...predicate.GitHubUser) predicate.GitHubUser

And groups predicates with the AND operator between them.

func Email

func Email(v string) predicate.GitHubUser

Email applies equality check predicate on the "email" field. It's identical to EmailEQ.

func EmailContains

func EmailContains(v string) predicate.GitHubUser

EmailContains applies the Contains predicate on the "email" field.

func EmailEQ

func EmailEQ(v string) predicate.GitHubUser

EmailEQ applies the EQ predicate on the "email" field.

func EmailGT

func EmailGT(v string) predicate.GitHubUser

EmailGT applies the GT predicate on the "email" field.

func EmailGTE

func EmailGTE(v string) predicate.GitHubUser

EmailGTE applies the GTE predicate on the "email" field.

func EmailHasPrefix

func EmailHasPrefix(v string) predicate.GitHubUser

EmailHasPrefix applies the HasPrefix predicate on the "email" field.

func EmailHasSuffix

func EmailHasSuffix(v string) predicate.GitHubUser

EmailHasSuffix applies the HasSuffix predicate on the "email" field.

func EmailIn

func EmailIn(vs ...string) predicate.GitHubUser

EmailIn applies the In predicate on the "email" field.

func EmailLT

func EmailLT(v string) predicate.GitHubUser

EmailLT applies the LT predicate on the "email" field.

func EmailLTE

func EmailLTE(v string) predicate.GitHubUser

EmailLTE applies the LTE predicate on the "email" field.

func EmailNEQ

func EmailNEQ(v string) predicate.GitHubUser

EmailNEQ applies the NEQ predicate on the "email" field.

func EmailNotIn

func EmailNotIn(vs ...string) predicate.GitHubUser

EmailNotIn applies the NotIn predicate on the "email" field.

func GithubID

func GithubID(v int) predicate.GitHubUser

GithubID applies equality check predicate on the "github_id" field. It's identical to GithubIDEQ.

func GithubIDEQ

func GithubIDEQ(v int) predicate.GitHubUser

GithubIDEQ applies the EQ predicate on the "github_id" field.

func GithubIDGT

func GithubIDGT(v int) predicate.GitHubUser

GithubIDGT applies the GT predicate on the "github_id" field.

func GithubIDGTE

func GithubIDGTE(v int) predicate.GitHubUser

GithubIDGTE applies the GTE predicate on the "github_id" field.

func GithubIDIn

func GithubIDIn(vs ...int) predicate.GitHubUser

GithubIDIn applies the In predicate on the "github_id" field.

func GithubIDLT

func GithubIDLT(v int) predicate.GitHubUser

GithubIDLT applies the LT predicate on the "github_id" field.

func GithubIDLTE

func GithubIDLTE(v int) predicate.GitHubUser

GithubIDLTE applies the LTE predicate on the "github_id" field.

func GithubIDNEQ

func GithubIDNEQ(v int) predicate.GitHubUser

GithubIDNEQ applies the NEQ predicate on the "github_id" field.

func GithubIDNotIn

func GithubIDNotIn(vs ...int) predicate.GitHubUser

GithubIDNotIn applies the NotIn predicate on the "github_id" field.

func HasAssignedIssues

func HasAssignedIssues() predicate.GitHubUser

HasAssignedIssues applies the HasEdge predicate on the "assigned_issues" edge.

func HasAssignedIssuesWith

func HasAssignedIssuesWith(preds ...predicate.GitHubIssue) predicate.GitHubUser

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

func HasClosedIssues

func HasClosedIssues() predicate.GitHubUser

HasClosedIssues applies the HasEdge predicate on the "closed_issues" edge.

func HasClosedIssuesWith

func HasClosedIssuesWith(preds ...predicate.GitHubIssue) predicate.GitHubUser

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

func HasCreatedIssues

func HasCreatedIssues() predicate.GitHubUser

HasCreatedIssues applies the HasEdge predicate on the "created_issues" edge.

func HasCreatedIssuesWith

func HasCreatedIssuesWith(preds ...predicate.GitHubIssue) predicate.GitHubUser

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

func HasPerson

func HasPerson() predicate.GitHubUser

HasPerson applies the HasEdge predicate on the "person" edge.

func HasPersonWith

func HasPersonWith(preds ...predicate.Person) predicate.GitHubUser

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

func ID

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id string) predicate.GitHubUser

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id string) predicate.GitHubUser

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.GitHubUser

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...string) predicate.GitHubUser

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.GitHubUser

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.GitHubUser

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.GitHubUser

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...string) predicate.GitHubUser

IDNotIn applies the NotIn predicate on the ID field.

func Login

func Login(v string) predicate.GitHubUser

Login applies equality check predicate on the "login" field. It's identical to LoginEQ.

func LoginContains

func LoginContains(v string) predicate.GitHubUser

LoginContains applies the Contains predicate on the "login" field.

func LoginEQ

func LoginEQ(v string) predicate.GitHubUser

LoginEQ applies the EQ predicate on the "login" field.

func LoginGT

func LoginGT(v string) predicate.GitHubUser

LoginGT applies the GT predicate on the "login" field.

func LoginGTE

func LoginGTE(v string) predicate.GitHubUser

LoginGTE applies the GTE predicate on the "login" field.

func LoginHasPrefix

func LoginHasPrefix(v string) predicate.GitHubUser

LoginHasPrefix applies the HasPrefix predicate on the "login" field.

func LoginHasSuffix

func LoginHasSuffix(v string) predicate.GitHubUser

LoginHasSuffix applies the HasSuffix predicate on the "login" field.

func LoginIn

func LoginIn(vs ...string) predicate.GitHubUser

LoginIn applies the In predicate on the "login" field.

func LoginLT

func LoginLT(v string) predicate.GitHubUser

LoginLT applies the LT predicate on the "login" field.

func LoginLTE

func LoginLTE(v string) predicate.GitHubUser

LoginLTE applies the LTE predicate on the "login" field.

func LoginNEQ

func LoginNEQ(v string) predicate.GitHubUser

LoginNEQ applies the NEQ predicate on the "login" field.

func LoginNotIn

func LoginNotIn(vs ...string) predicate.GitHubUser

LoginNotIn applies the NotIn predicate on the "login" field.

func Name

func Name(v string) predicate.GitHubUser

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

func NameContains

func NameContains(v string) predicate.GitHubUser

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

func NameEQ

func NameEQ(v string) predicate.GitHubUser

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

func NameGT

func NameGT(v string) predicate.GitHubUser

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

func NameGTE

func NameGTE(v string) predicate.GitHubUser

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.GitHubUser

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.GitHubUser

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.GitHubUser

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

func NameLTE

func NameLTE(v string) predicate.GitHubUser

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

func NameNEQ

func NameNEQ(v string) predicate.GitHubUser

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

func NameNotIn

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

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

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.GitHubUser) predicate.GitHubUser

Or groups predicates with the OR operator between them.

Types

This section is empty.

Jump to

Keyboard shortcuts

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