user

package
v0.0.0-...-914df79 Latest Latest
Warning

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

Go to latest
Published: Mar 15, 2024 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the user type in the database.
	Label = "user"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldLogin holds the string denoting the login field in the database.
	FieldLogin = "login"
	// FieldNodeID holds the string denoting the node_id field in the database.
	FieldNodeID = "node_id"
	// FieldAvatarURL holds the string denoting the avatar_url field in the database.
	FieldAvatarURL = "avatar_url"
	// FieldGravatarID holds the string denoting the gravatar_id field in the database.
	FieldGravatarID = "gravatar_id"
	// FieldURL holds the string denoting the url field in the database.
	FieldURL = "url"
	// FieldHTMLURL holds the string denoting the html_url field in the database.
	FieldHTMLURL = "html_url"
	// FieldFollowersURL holds the string denoting the followers_url field in the database.
	FieldFollowersURL = "followers_url"
	// FieldFollowingURL holds the string denoting the following_url field in the database.
	FieldFollowingURL = "following_url"
	// FieldGistsURL holds the string denoting the gists_url field in the database.
	FieldGistsURL = "gists_url"
	// FieldStarredURL holds the string denoting the starred_url field in the database.
	FieldStarredURL = "starred_url"
	// FieldSubscriptionsURL holds the string denoting the subscriptions_url field in the database.
	FieldSubscriptionsURL = "subscriptions_url"
	// FieldOrganizationsURL holds the string denoting the organizations_url field in the database.
	FieldOrganizationsURL = "organizations_url"
	// FieldReposURL holds the string denoting the repos_url field in the database.
	FieldReposURL = "repos_url"
	// FieldEventsURL holds the string denoting the events_url field in the database.
	FieldEventsURL = "events_url"
	// FieldReceivedEventsURL holds the string denoting the received_events_url field in the database.
	FieldReceivedEventsURL = "received_events_url"
	// FieldType holds the string denoting the type field in the database.
	FieldType = "type"
	// FieldSiteAdmin holds the string denoting the site_admin field in the database.
	FieldSiteAdmin = "site_admin"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldCompany holds the string denoting the company field in the database.
	FieldCompany = "company"
	// FieldBlog holds the string denoting the blog field in the database.
	FieldBlog = "blog"
	// FieldLocation holds the string denoting the location field in the database.
	FieldLocation = "location"
	// FieldEmail holds the string denoting the email field in the database.
	FieldEmail = "email"
	// FieldHireable holds the string denoting the hireable field in the database.
	FieldHireable = "hireable"
	// FieldBio holds the string denoting the bio field in the database.
	FieldBio = "bio"
	// FieldPublicRepos holds the string denoting the public_repos field in the database.
	FieldPublicRepos = "public_repos"
	// FieldPublicGists holds the string denoting the public_gists field in the database.
	FieldPublicGists = "public_gists"
	// FieldFollowers holds the string denoting the followers field in the database.
	FieldFollowers = "followers"
	// FieldFollowing holds the string denoting the following field in the database.
	FieldFollowing = "following"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// EdgeRepositories holds the string denoting the repositories edge name in mutations.
	EdgeRepositories = "repositories"
	// EdgeIssuesCreated holds the string denoting the issues_created edge name in mutations.
	EdgeIssuesCreated = "issues_created"
	// EdgeCommentsCreated holds the string denoting the comments_created edge name in mutations.
	EdgeCommentsCreated = "comments_created"
	// EdgeIssuesAssigned holds the string denoting the issues_assigned edge name in mutations.
	EdgeIssuesAssigned = "issues_assigned"
	// EdgeIssuesClosed holds the string denoting the issues_closed edge name in mutations.
	EdgeIssuesClosed = "issues_closed"
	// Table holds the table name of the user in the database.
	Table = "users"
	// RepositoriesTable is the table that holds the repositories relation/edge.
	RepositoriesTable = "repositories"
	// RepositoriesInverseTable is the table name for the Repository entity.
	// It exists in this package in order to avoid circular dependency with the "repository" package.
	RepositoriesInverseTable = "repositories"
	// RepositoriesColumn is the table column denoting the repositories relation/edge.
	RepositoriesColumn = "user_repositories"
	// IssuesCreatedTable is the table that holds the issues_created relation/edge.
	IssuesCreatedTable = "issues"
	// IssuesCreatedInverseTable is the table name for the Issue entity.
	// It exists in this package in order to avoid circular dependency with the "issue" package.
	IssuesCreatedInverseTable = "issues"
	// IssuesCreatedColumn is the table column denoting the issues_created relation/edge.
	IssuesCreatedColumn = "user_issues_created"
	// CommentsCreatedTable is the table that holds the comments_created relation/edge.
	CommentsCreatedTable = "issue_comments"
	// CommentsCreatedInverseTable is the table name for the IssueComment entity.
	// It exists in this package in order to avoid circular dependency with the "issuecomment" package.
	CommentsCreatedInverseTable = "issue_comments"
	// CommentsCreatedColumn is the table column denoting the comments_created relation/edge.
	CommentsCreatedColumn = "user_comments_created"
	// IssuesAssignedTable is the table that holds the issues_assigned relation/edge. The primary key declared below.
	IssuesAssignedTable = "issue_assignees"
	// IssuesAssignedInverseTable is the table name for the Issue entity.
	// It exists in this package in order to avoid circular dependency with the "issue" package.
	IssuesAssignedInverseTable = "issues"
	// IssuesClosedTable is the table that holds the issues_closed relation/edge.
	IssuesClosedTable = "issues"
	// IssuesClosedInverseTable is the table name for the Issue entity.
	// It exists in this package in order to avoid circular dependency with the "issue" package.
	IssuesClosedInverseTable = "issues"
	// IssuesClosedColumn is the table column denoting the issues_closed relation/edge.
	IssuesClosedColumn = "issue_closed_by"
)

Variables

Columns holds all SQL columns for user fields.

View Source
var (
	// IssuesAssignedPrimaryKey and IssuesAssignedColumn2 are the table columns denoting the
	// primary key for the issues_assigned relation (M2M).
	IssuesAssignedPrimaryKey = []string{"issue_id", "user_id"}
)

Functions

func And

func And(predicates ...predicate.User) predicate.User

And groups predicates with the AND operator between them.

func AvatarURL

func AvatarURL(v string) predicate.User

AvatarURL applies equality check predicate on the "avatar_url" field. It's identical to AvatarURLEQ.

func AvatarURLContains

func AvatarURLContains(v string) predicate.User

AvatarURLContains applies the Contains predicate on the "avatar_url" field.

func AvatarURLContainsFold

func AvatarURLContainsFold(v string) predicate.User

AvatarURLContainsFold applies the ContainsFold predicate on the "avatar_url" field.

func AvatarURLEQ

func AvatarURLEQ(v string) predicate.User

AvatarURLEQ applies the EQ predicate on the "avatar_url" field.

func AvatarURLEqualFold

func AvatarURLEqualFold(v string) predicate.User

AvatarURLEqualFold applies the EqualFold predicate on the "avatar_url" field.

func AvatarURLGT

func AvatarURLGT(v string) predicate.User

AvatarURLGT applies the GT predicate on the "avatar_url" field.

func AvatarURLGTE

func AvatarURLGTE(v string) predicate.User

AvatarURLGTE applies the GTE predicate on the "avatar_url" field.

func AvatarURLHasPrefix

func AvatarURLHasPrefix(v string) predicate.User

AvatarURLHasPrefix applies the HasPrefix predicate on the "avatar_url" field.

func AvatarURLHasSuffix

func AvatarURLHasSuffix(v string) predicate.User

AvatarURLHasSuffix applies the HasSuffix predicate on the "avatar_url" field.

func AvatarURLIn

func AvatarURLIn(vs ...string) predicate.User

AvatarURLIn applies the In predicate on the "avatar_url" field.

func AvatarURLLT

func AvatarURLLT(v string) predicate.User

AvatarURLLT applies the LT predicate on the "avatar_url" field.

func AvatarURLLTE

func AvatarURLLTE(v string) predicate.User

AvatarURLLTE applies the LTE predicate on the "avatar_url" field.

func AvatarURLNEQ

func AvatarURLNEQ(v string) predicate.User

AvatarURLNEQ applies the NEQ predicate on the "avatar_url" field.

func AvatarURLNotIn

func AvatarURLNotIn(vs ...string) predicate.User

AvatarURLNotIn applies the NotIn predicate on the "avatar_url" field.

func Bio

func Bio(v string) predicate.User

Bio applies equality check predicate on the "bio" field. It's identical to BioEQ.

func BioContains

func BioContains(v string) predicate.User

BioContains applies the Contains predicate on the "bio" field.

func BioContainsFold

func BioContainsFold(v string) predicate.User

BioContainsFold applies the ContainsFold predicate on the "bio" field.

func BioEQ

func BioEQ(v string) predicate.User

BioEQ applies the EQ predicate on the "bio" field.

func BioEqualFold

func BioEqualFold(v string) predicate.User

BioEqualFold applies the EqualFold predicate on the "bio" field.

func BioGT

func BioGT(v string) predicate.User

BioGT applies the GT predicate on the "bio" field.

func BioGTE

func BioGTE(v string) predicate.User

BioGTE applies the GTE predicate on the "bio" field.

func BioHasPrefix

func BioHasPrefix(v string) predicate.User

BioHasPrefix applies the HasPrefix predicate on the "bio" field.

func BioHasSuffix

func BioHasSuffix(v string) predicate.User

BioHasSuffix applies the HasSuffix predicate on the "bio" field.

func BioIn

func BioIn(vs ...string) predicate.User

BioIn applies the In predicate on the "bio" field.

func BioIsNil

func BioIsNil() predicate.User

BioIsNil applies the IsNil predicate on the "bio" field.

func BioLT

func BioLT(v string) predicate.User

BioLT applies the LT predicate on the "bio" field.

func BioLTE

func BioLTE(v string) predicate.User

BioLTE applies the LTE predicate on the "bio" field.

func BioNEQ

func BioNEQ(v string) predicate.User

BioNEQ applies the NEQ predicate on the "bio" field.

func BioNotIn

func BioNotIn(vs ...string) predicate.User

BioNotIn applies the NotIn predicate on the "bio" field.

func BioNotNil

func BioNotNil() predicate.User

BioNotNil applies the NotNil predicate on the "bio" field.

func Blog

func Blog(v string) predicate.User

Blog applies equality check predicate on the "blog" field. It's identical to BlogEQ.

func BlogContains

func BlogContains(v string) predicate.User

BlogContains applies the Contains predicate on the "blog" field.

func BlogContainsFold

func BlogContainsFold(v string) predicate.User

BlogContainsFold applies the ContainsFold predicate on the "blog" field.

func BlogEQ

func BlogEQ(v string) predicate.User

BlogEQ applies the EQ predicate on the "blog" field.

func BlogEqualFold

func BlogEqualFold(v string) predicate.User

BlogEqualFold applies the EqualFold predicate on the "blog" field.

func BlogGT

func BlogGT(v string) predicate.User

BlogGT applies the GT predicate on the "blog" field.

func BlogGTE

func BlogGTE(v string) predicate.User

BlogGTE applies the GTE predicate on the "blog" field.

func BlogHasPrefix

func BlogHasPrefix(v string) predicate.User

BlogHasPrefix applies the HasPrefix predicate on the "blog" field.

func BlogHasSuffix

func BlogHasSuffix(v string) predicate.User

BlogHasSuffix applies the HasSuffix predicate on the "blog" field.

func BlogIn

func BlogIn(vs ...string) predicate.User

BlogIn applies the In predicate on the "blog" field.

func BlogIsNil

func BlogIsNil() predicate.User

BlogIsNil applies the IsNil predicate on the "blog" field.

func BlogLT

func BlogLT(v string) predicate.User

BlogLT applies the LT predicate on the "blog" field.

func BlogLTE

func BlogLTE(v string) predicate.User

BlogLTE applies the LTE predicate on the "blog" field.

func BlogNEQ

func BlogNEQ(v string) predicate.User

BlogNEQ applies the NEQ predicate on the "blog" field.

func BlogNotIn

func BlogNotIn(vs ...string) predicate.User

BlogNotIn applies the NotIn predicate on the "blog" field.

func BlogNotNil

func BlogNotNil() predicate.User

BlogNotNil applies the NotNil predicate on the "blog" field.

func Company

func Company(v string) predicate.User

Company applies equality check predicate on the "company" field. It's identical to CompanyEQ.

func CompanyContains

func CompanyContains(v string) predicate.User

CompanyContains applies the Contains predicate on the "company" field.

func CompanyContainsFold

func CompanyContainsFold(v string) predicate.User

CompanyContainsFold applies the ContainsFold predicate on the "company" field.

func CompanyEQ

func CompanyEQ(v string) predicate.User

CompanyEQ applies the EQ predicate on the "company" field.

func CompanyEqualFold

func CompanyEqualFold(v string) predicate.User

CompanyEqualFold applies the EqualFold predicate on the "company" field.

func CompanyGT

func CompanyGT(v string) predicate.User

CompanyGT applies the GT predicate on the "company" field.

func CompanyGTE

func CompanyGTE(v string) predicate.User

CompanyGTE applies the GTE predicate on the "company" field.

func CompanyHasPrefix

func CompanyHasPrefix(v string) predicate.User

CompanyHasPrefix applies the HasPrefix predicate on the "company" field.

func CompanyHasSuffix

func CompanyHasSuffix(v string) predicate.User

CompanyHasSuffix applies the HasSuffix predicate on the "company" field.

func CompanyIn

func CompanyIn(vs ...string) predicate.User

CompanyIn applies the In predicate on the "company" field.

func CompanyIsNil

func CompanyIsNil() predicate.User

CompanyIsNil applies the IsNil predicate on the "company" field.

func CompanyLT

func CompanyLT(v string) predicate.User

CompanyLT applies the LT predicate on the "company" field.

func CompanyLTE

func CompanyLTE(v string) predicate.User

CompanyLTE applies the LTE predicate on the "company" field.

func CompanyNEQ

func CompanyNEQ(v string) predicate.User

CompanyNEQ applies the NEQ predicate on the "company" field.

func CompanyNotIn

func CompanyNotIn(vs ...string) predicate.User

CompanyNotIn applies the NotIn predicate on the "company" field.

func CompanyNotNil

func CompanyNotNil() predicate.User

CompanyNotNil applies the NotNil predicate on the "company" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.User

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.User

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.User

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.User

CreatedAtGTE applies the GTE predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.User

CreatedAtIn applies the In predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.User

CreatedAtLT applies the LT predicate on the "created_at" field.

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.User

CreatedAtLTE applies the LTE predicate on the "created_at" field.

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.User

CreatedAtNEQ applies the NEQ predicate on the "created_at" field.

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.User

CreatedAtNotIn applies the NotIn predicate on the "created_at" field.

func Email

func Email(v string) predicate.User

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

func EmailContains

func EmailContains(v string) predicate.User

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

func EmailContainsFold

func EmailContainsFold(v string) predicate.User

EmailContainsFold applies the ContainsFold predicate on the "email" field.

func EmailEQ

func EmailEQ(v string) predicate.User

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

func EmailEqualFold

func EmailEqualFold(v string) predicate.User

EmailEqualFold applies the EqualFold predicate on the "email" field.

func EmailGT

func EmailGT(v string) predicate.User

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

func EmailGTE

func EmailGTE(v string) predicate.User

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

func EmailHasPrefix

func EmailHasPrefix(v string) predicate.User

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

func EmailHasSuffix

func EmailHasSuffix(v string) predicate.User

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

func EmailIn

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

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

func EmailIsNil

func EmailIsNil() predicate.User

EmailIsNil applies the IsNil predicate on the "email" field.

func EmailLT

func EmailLT(v string) predicate.User

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

func EmailLTE

func EmailLTE(v string) predicate.User

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

func EmailNEQ

func EmailNEQ(v string) predicate.User

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

func EmailNotIn

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

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

func EmailNotNil

func EmailNotNil() predicate.User

EmailNotNil applies the NotNil predicate on the "email" field.

func EventsURL

func EventsURL(v string) predicate.User

EventsURL applies equality check predicate on the "events_url" field. It's identical to EventsURLEQ.

func EventsURLContains

func EventsURLContains(v string) predicate.User

EventsURLContains applies the Contains predicate on the "events_url" field.

func EventsURLContainsFold

func EventsURLContainsFold(v string) predicate.User

EventsURLContainsFold applies the ContainsFold predicate on the "events_url" field.

func EventsURLEQ

func EventsURLEQ(v string) predicate.User

EventsURLEQ applies the EQ predicate on the "events_url" field.

func EventsURLEqualFold

func EventsURLEqualFold(v string) predicate.User

EventsURLEqualFold applies the EqualFold predicate on the "events_url" field.

func EventsURLGT

func EventsURLGT(v string) predicate.User

EventsURLGT applies the GT predicate on the "events_url" field.

func EventsURLGTE

func EventsURLGTE(v string) predicate.User

EventsURLGTE applies the GTE predicate on the "events_url" field.

func EventsURLHasPrefix

func EventsURLHasPrefix(v string) predicate.User

EventsURLHasPrefix applies the HasPrefix predicate on the "events_url" field.

func EventsURLHasSuffix

func EventsURLHasSuffix(v string) predicate.User

EventsURLHasSuffix applies the HasSuffix predicate on the "events_url" field.

func EventsURLIn

func EventsURLIn(vs ...string) predicate.User

EventsURLIn applies the In predicate on the "events_url" field.

func EventsURLLT

func EventsURLLT(v string) predicate.User

EventsURLLT applies the LT predicate on the "events_url" field.

func EventsURLLTE

func EventsURLLTE(v string) predicate.User

EventsURLLTE applies the LTE predicate on the "events_url" field.

func EventsURLNEQ

func EventsURLNEQ(v string) predicate.User

EventsURLNEQ applies the NEQ predicate on the "events_url" field.

func EventsURLNotIn

func EventsURLNotIn(vs ...string) predicate.User

EventsURLNotIn applies the NotIn predicate on the "events_url" field.

func Followers

func Followers(v int64) predicate.User

Followers applies equality check predicate on the "followers" field. It's identical to FollowersEQ.

func FollowersEQ

func FollowersEQ(v int64) predicate.User

FollowersEQ applies the EQ predicate on the "followers" field.

func FollowersGT

func FollowersGT(v int64) predicate.User

FollowersGT applies the GT predicate on the "followers" field.

func FollowersGTE

func FollowersGTE(v int64) predicate.User

FollowersGTE applies the GTE predicate on the "followers" field.

func FollowersIn

func FollowersIn(vs ...int64) predicate.User

FollowersIn applies the In predicate on the "followers" field.

func FollowersLT

func FollowersLT(v int64) predicate.User

FollowersLT applies the LT predicate on the "followers" field.

func FollowersLTE

func FollowersLTE(v int64) predicate.User

FollowersLTE applies the LTE predicate on the "followers" field.

func FollowersNEQ

func FollowersNEQ(v int64) predicate.User

FollowersNEQ applies the NEQ predicate on the "followers" field.

func FollowersNotIn

func FollowersNotIn(vs ...int64) predicate.User

FollowersNotIn applies the NotIn predicate on the "followers" field.

func FollowersURL

func FollowersURL(v string) predicate.User

FollowersURL applies equality check predicate on the "followers_url" field. It's identical to FollowersURLEQ.

func FollowersURLContains

func FollowersURLContains(v string) predicate.User

FollowersURLContains applies the Contains predicate on the "followers_url" field.

func FollowersURLContainsFold

func FollowersURLContainsFold(v string) predicate.User

FollowersURLContainsFold applies the ContainsFold predicate on the "followers_url" field.

func FollowersURLEQ

func FollowersURLEQ(v string) predicate.User

FollowersURLEQ applies the EQ predicate on the "followers_url" field.

func FollowersURLEqualFold

func FollowersURLEqualFold(v string) predicate.User

FollowersURLEqualFold applies the EqualFold predicate on the "followers_url" field.

func FollowersURLGT

func FollowersURLGT(v string) predicate.User

FollowersURLGT applies the GT predicate on the "followers_url" field.

func FollowersURLGTE

func FollowersURLGTE(v string) predicate.User

FollowersURLGTE applies the GTE predicate on the "followers_url" field.

func FollowersURLHasPrefix

func FollowersURLHasPrefix(v string) predicate.User

FollowersURLHasPrefix applies the HasPrefix predicate on the "followers_url" field.

func FollowersURLHasSuffix

func FollowersURLHasSuffix(v string) predicate.User

FollowersURLHasSuffix applies the HasSuffix predicate on the "followers_url" field.

func FollowersURLIn

func FollowersURLIn(vs ...string) predicate.User

FollowersURLIn applies the In predicate on the "followers_url" field.

func FollowersURLLT

func FollowersURLLT(v string) predicate.User

FollowersURLLT applies the LT predicate on the "followers_url" field.

func FollowersURLLTE

func FollowersURLLTE(v string) predicate.User

FollowersURLLTE applies the LTE predicate on the "followers_url" field.

func FollowersURLNEQ

func FollowersURLNEQ(v string) predicate.User

FollowersURLNEQ applies the NEQ predicate on the "followers_url" field.

func FollowersURLNotIn

func FollowersURLNotIn(vs ...string) predicate.User

FollowersURLNotIn applies the NotIn predicate on the "followers_url" field.

func Following

func Following(v int64) predicate.User

Following applies equality check predicate on the "following" field. It's identical to FollowingEQ.

func FollowingEQ

func FollowingEQ(v int64) predicate.User

FollowingEQ applies the EQ predicate on the "following" field.

func FollowingGT

func FollowingGT(v int64) predicate.User

FollowingGT applies the GT predicate on the "following" field.

func FollowingGTE

func FollowingGTE(v int64) predicate.User

FollowingGTE applies the GTE predicate on the "following" field.

func FollowingIn

func FollowingIn(vs ...int64) predicate.User

FollowingIn applies the In predicate on the "following" field.

func FollowingLT

func FollowingLT(v int64) predicate.User

FollowingLT applies the LT predicate on the "following" field.

func FollowingLTE

func FollowingLTE(v int64) predicate.User

FollowingLTE applies the LTE predicate on the "following" field.

func FollowingNEQ

func FollowingNEQ(v int64) predicate.User

FollowingNEQ applies the NEQ predicate on the "following" field.

func FollowingNotIn

func FollowingNotIn(vs ...int64) predicate.User

FollowingNotIn applies the NotIn predicate on the "following" field.

func FollowingURL

func FollowingURL(v string) predicate.User

FollowingURL applies equality check predicate on the "following_url" field. It's identical to FollowingURLEQ.

func FollowingURLContains

func FollowingURLContains(v string) predicate.User

FollowingURLContains applies the Contains predicate on the "following_url" field.

func FollowingURLContainsFold

func FollowingURLContainsFold(v string) predicate.User

FollowingURLContainsFold applies the ContainsFold predicate on the "following_url" field.

func FollowingURLEQ

func FollowingURLEQ(v string) predicate.User

FollowingURLEQ applies the EQ predicate on the "following_url" field.

func FollowingURLEqualFold

func FollowingURLEqualFold(v string) predicate.User

FollowingURLEqualFold applies the EqualFold predicate on the "following_url" field.

func FollowingURLGT

func FollowingURLGT(v string) predicate.User

FollowingURLGT applies the GT predicate on the "following_url" field.

func FollowingURLGTE

func FollowingURLGTE(v string) predicate.User

FollowingURLGTE applies the GTE predicate on the "following_url" field.

func FollowingURLHasPrefix

func FollowingURLHasPrefix(v string) predicate.User

FollowingURLHasPrefix applies the HasPrefix predicate on the "following_url" field.

func FollowingURLHasSuffix

func FollowingURLHasSuffix(v string) predicate.User

FollowingURLHasSuffix applies the HasSuffix predicate on the "following_url" field.

func FollowingURLIn

func FollowingURLIn(vs ...string) predicate.User

FollowingURLIn applies the In predicate on the "following_url" field.

func FollowingURLLT

func FollowingURLLT(v string) predicate.User

FollowingURLLT applies the LT predicate on the "following_url" field.

func FollowingURLLTE

func FollowingURLLTE(v string) predicate.User

FollowingURLLTE applies the LTE predicate on the "following_url" field.

func FollowingURLNEQ

func FollowingURLNEQ(v string) predicate.User

FollowingURLNEQ applies the NEQ predicate on the "following_url" field.

func FollowingURLNotIn

func FollowingURLNotIn(vs ...string) predicate.User

FollowingURLNotIn applies the NotIn predicate on the "following_url" field.

func GistsURL

func GistsURL(v string) predicate.User

GistsURL applies equality check predicate on the "gists_url" field. It's identical to GistsURLEQ.

func GistsURLContains

func GistsURLContains(v string) predicate.User

GistsURLContains applies the Contains predicate on the "gists_url" field.

func GistsURLContainsFold

func GistsURLContainsFold(v string) predicate.User

GistsURLContainsFold applies the ContainsFold predicate on the "gists_url" field.

func GistsURLEQ

func GistsURLEQ(v string) predicate.User

GistsURLEQ applies the EQ predicate on the "gists_url" field.

func GistsURLEqualFold

func GistsURLEqualFold(v string) predicate.User

GistsURLEqualFold applies the EqualFold predicate on the "gists_url" field.

func GistsURLGT

func GistsURLGT(v string) predicate.User

GistsURLGT applies the GT predicate on the "gists_url" field.

func GistsURLGTE

func GistsURLGTE(v string) predicate.User

GistsURLGTE applies the GTE predicate on the "gists_url" field.

func GistsURLHasPrefix

func GistsURLHasPrefix(v string) predicate.User

GistsURLHasPrefix applies the HasPrefix predicate on the "gists_url" field.

func GistsURLHasSuffix

func GistsURLHasSuffix(v string) predicate.User

GistsURLHasSuffix applies the HasSuffix predicate on the "gists_url" field.

func GistsURLIn

func GistsURLIn(vs ...string) predicate.User

GistsURLIn applies the In predicate on the "gists_url" field.

func GistsURLLT

func GistsURLLT(v string) predicate.User

GistsURLLT applies the LT predicate on the "gists_url" field.

func GistsURLLTE

func GistsURLLTE(v string) predicate.User

GistsURLLTE applies the LTE predicate on the "gists_url" field.

func GistsURLNEQ

func GistsURLNEQ(v string) predicate.User

GistsURLNEQ applies the NEQ predicate on the "gists_url" field.

func GistsURLNotIn

func GistsURLNotIn(vs ...string) predicate.User

GistsURLNotIn applies the NotIn predicate on the "gists_url" field.

func GravatarID

func GravatarID(v string) predicate.User

GravatarID applies equality check predicate on the "gravatar_id" field. It's identical to GravatarIDEQ.

func GravatarIDContains

func GravatarIDContains(v string) predicate.User

GravatarIDContains applies the Contains predicate on the "gravatar_id" field.

func GravatarIDContainsFold

func GravatarIDContainsFold(v string) predicate.User

GravatarIDContainsFold applies the ContainsFold predicate on the "gravatar_id" field.

func GravatarIDEQ

func GravatarIDEQ(v string) predicate.User

GravatarIDEQ applies the EQ predicate on the "gravatar_id" field.

func GravatarIDEqualFold

func GravatarIDEqualFold(v string) predicate.User

GravatarIDEqualFold applies the EqualFold predicate on the "gravatar_id" field.

func GravatarIDGT

func GravatarIDGT(v string) predicate.User

GravatarIDGT applies the GT predicate on the "gravatar_id" field.

func GravatarIDGTE

func GravatarIDGTE(v string) predicate.User

GravatarIDGTE applies the GTE predicate on the "gravatar_id" field.

func GravatarIDHasPrefix

func GravatarIDHasPrefix(v string) predicate.User

GravatarIDHasPrefix applies the HasPrefix predicate on the "gravatar_id" field.

func GravatarIDHasSuffix

func GravatarIDHasSuffix(v string) predicate.User

GravatarIDHasSuffix applies the HasSuffix predicate on the "gravatar_id" field.

func GravatarIDIn

func GravatarIDIn(vs ...string) predicate.User

GravatarIDIn applies the In predicate on the "gravatar_id" field.

func GravatarIDIsNil

func GravatarIDIsNil() predicate.User

GravatarIDIsNil applies the IsNil predicate on the "gravatar_id" field.

func GravatarIDLT

func GravatarIDLT(v string) predicate.User

GravatarIDLT applies the LT predicate on the "gravatar_id" field.

func GravatarIDLTE

func GravatarIDLTE(v string) predicate.User

GravatarIDLTE applies the LTE predicate on the "gravatar_id" field.

func GravatarIDNEQ

func GravatarIDNEQ(v string) predicate.User

GravatarIDNEQ applies the NEQ predicate on the "gravatar_id" field.

func GravatarIDNotIn

func GravatarIDNotIn(vs ...string) predicate.User

GravatarIDNotIn applies the NotIn predicate on the "gravatar_id" field.

func GravatarIDNotNil

func GravatarIDNotNil() predicate.User

GravatarIDNotNil applies the NotNil predicate on the "gravatar_id" field.

func HTMLURL

func HTMLURL(v string) predicate.User

HTMLURL applies equality check predicate on the "html_url" field. It's identical to HTMLURLEQ.

func HTMLURLContains

func HTMLURLContains(v string) predicate.User

HTMLURLContains applies the Contains predicate on the "html_url" field.

func HTMLURLContainsFold

func HTMLURLContainsFold(v string) predicate.User

HTMLURLContainsFold applies the ContainsFold predicate on the "html_url" field.

func HTMLURLEQ

func HTMLURLEQ(v string) predicate.User

HTMLURLEQ applies the EQ predicate on the "html_url" field.

func HTMLURLEqualFold

func HTMLURLEqualFold(v string) predicate.User

HTMLURLEqualFold applies the EqualFold predicate on the "html_url" field.

func HTMLURLGT

func HTMLURLGT(v string) predicate.User

HTMLURLGT applies the GT predicate on the "html_url" field.

func HTMLURLGTE

func HTMLURLGTE(v string) predicate.User

HTMLURLGTE applies the GTE predicate on the "html_url" field.

func HTMLURLHasPrefix

func HTMLURLHasPrefix(v string) predicate.User

HTMLURLHasPrefix applies the HasPrefix predicate on the "html_url" field.

func HTMLURLHasSuffix

func HTMLURLHasSuffix(v string) predicate.User

HTMLURLHasSuffix applies the HasSuffix predicate on the "html_url" field.

func HTMLURLIn

func HTMLURLIn(vs ...string) predicate.User

HTMLURLIn applies the In predicate on the "html_url" field.

func HTMLURLLT

func HTMLURLLT(v string) predicate.User

HTMLURLLT applies the LT predicate on the "html_url" field.

func HTMLURLLTE

func HTMLURLLTE(v string) predicate.User

HTMLURLLTE applies the LTE predicate on the "html_url" field.

func HTMLURLNEQ

func HTMLURLNEQ(v string) predicate.User

HTMLURLNEQ applies the NEQ predicate on the "html_url" field.

func HTMLURLNotIn

func HTMLURLNotIn(vs ...string) predicate.User

HTMLURLNotIn applies the NotIn predicate on the "html_url" field.

func HasCommentsCreated

func HasCommentsCreated() predicate.User

HasCommentsCreated applies the HasEdge predicate on the "comments_created" edge.

func HasCommentsCreatedWith

func HasCommentsCreatedWith(preds ...predicate.IssueComment) predicate.User

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

func HasIssuesAssigned

func HasIssuesAssigned() predicate.User

HasIssuesAssigned applies the HasEdge predicate on the "issues_assigned" edge.

func HasIssuesAssignedWith

func HasIssuesAssignedWith(preds ...predicate.Issue) predicate.User

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

func HasIssuesClosed

func HasIssuesClosed() predicate.User

HasIssuesClosed applies the HasEdge predicate on the "issues_closed" edge.

func HasIssuesClosedWith

func HasIssuesClosedWith(preds ...predicate.Issue) predicate.User

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

func HasIssuesCreated

func HasIssuesCreated() predicate.User

HasIssuesCreated applies the HasEdge predicate on the "issues_created" edge.

func HasIssuesCreatedWith

func HasIssuesCreatedWith(preds ...predicate.Issue) predicate.User

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

func HasRepositories

func HasRepositories() predicate.User

HasRepositories applies the HasEdge predicate on the "repositories" edge.

func HasRepositoriesWith

func HasRepositoriesWith(preds ...predicate.Repository) predicate.User

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

func Hireable

func Hireable(v bool) predicate.User

Hireable applies equality check predicate on the "hireable" field. It's identical to HireableEQ.

func HireableEQ

func HireableEQ(v bool) predicate.User

HireableEQ applies the EQ predicate on the "hireable" field.

func HireableIsNil

func HireableIsNil() predicate.User

HireableIsNil applies the IsNil predicate on the "hireable" field.

func HireableNEQ

func HireableNEQ(v bool) predicate.User

HireableNEQ applies the NEQ predicate on the "hireable" field.

func HireableNotNil

func HireableNotNil() predicate.User

HireableNotNil applies the NotNil predicate on the "hireable" field.

func ID

func ID(id int64) predicate.User

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int64) predicate.User

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int64) predicate.User

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int64) predicate.User

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int64) predicate.User

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int64) predicate.User

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int64) predicate.User

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int64) predicate.User

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int64) predicate.User

IDNotIn applies the NotIn predicate on the ID field.

func Location

func Location(v string) predicate.User

Location applies equality check predicate on the "location" field. It's identical to LocationEQ.

func LocationContains

func LocationContains(v string) predicate.User

LocationContains applies the Contains predicate on the "location" field.

func LocationContainsFold

func LocationContainsFold(v string) predicate.User

LocationContainsFold applies the ContainsFold predicate on the "location" field.

func LocationEQ

func LocationEQ(v string) predicate.User

LocationEQ applies the EQ predicate on the "location" field.

func LocationEqualFold

func LocationEqualFold(v string) predicate.User

LocationEqualFold applies the EqualFold predicate on the "location" field.

func LocationGT

func LocationGT(v string) predicate.User

LocationGT applies the GT predicate on the "location" field.

func LocationGTE

func LocationGTE(v string) predicate.User

LocationGTE applies the GTE predicate on the "location" field.

func LocationHasPrefix

func LocationHasPrefix(v string) predicate.User

LocationHasPrefix applies the HasPrefix predicate on the "location" field.

func LocationHasSuffix

func LocationHasSuffix(v string) predicate.User

LocationHasSuffix applies the HasSuffix predicate on the "location" field.

func LocationIn

func LocationIn(vs ...string) predicate.User

LocationIn applies the In predicate on the "location" field.

func LocationIsNil

func LocationIsNil() predicate.User

LocationIsNil applies the IsNil predicate on the "location" field.

func LocationLT

func LocationLT(v string) predicate.User

LocationLT applies the LT predicate on the "location" field.

func LocationLTE

func LocationLTE(v string) predicate.User

LocationLTE applies the LTE predicate on the "location" field.

func LocationNEQ

func LocationNEQ(v string) predicate.User

LocationNEQ applies the NEQ predicate on the "location" field.

func LocationNotIn

func LocationNotIn(vs ...string) predicate.User

LocationNotIn applies the NotIn predicate on the "location" field.

func LocationNotNil

func LocationNotNil() predicate.User

LocationNotNil applies the NotNil predicate on the "location" field.

func Login

func Login(v string) predicate.User

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

func LoginContains

func LoginContains(v string) predicate.User

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

func LoginContainsFold

func LoginContainsFold(v string) predicate.User

LoginContainsFold applies the ContainsFold predicate on the "login" field.

func LoginEQ

func LoginEQ(v string) predicate.User

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

func LoginEqualFold

func LoginEqualFold(v string) predicate.User

LoginEqualFold applies the EqualFold predicate on the "login" field.

func LoginGT

func LoginGT(v string) predicate.User

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

func LoginGTE

func LoginGTE(v string) predicate.User

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

func LoginHasPrefix

func LoginHasPrefix(v string) predicate.User

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

func LoginHasSuffix

func LoginHasSuffix(v string) predicate.User

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

func LoginIn

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

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

func LoginLT

func LoginLT(v string) predicate.User

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

func LoginLTE

func LoginLTE(v string) predicate.User

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

func LoginNEQ

func LoginNEQ(v string) predicate.User

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

func LoginNotIn

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

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

func Name

func Name(v string) predicate.User

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

func NameContains

func NameContains(v string) predicate.User

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

func NameContainsFold

func NameContainsFold(v string) predicate.User

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

func NameEQ

func NameEQ(v string) predicate.User

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

func NameEqualFold

func NameEqualFold(v string) predicate.User

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

func NameGT

func NameGT(v string) predicate.User

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

func NameGTE

func NameGTE(v string) predicate.User

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.User

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.User

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

func NameIn

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

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

func NameIsNil

func NameIsNil() predicate.User

NameIsNil applies the IsNil predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.User

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

func NameLTE

func NameLTE(v string) predicate.User

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

func NameNEQ

func NameNEQ(v string) predicate.User

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

func NameNotIn

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

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

func NameNotNil

func NameNotNil() predicate.User

NameNotNil applies the NotNil predicate on the "name" field.

func NodeID

func NodeID(v string) predicate.User

NodeID applies equality check predicate on the "node_id" field. It's identical to NodeIDEQ.

func NodeIDContains

func NodeIDContains(v string) predicate.User

NodeIDContains applies the Contains predicate on the "node_id" field.

func NodeIDContainsFold

func NodeIDContainsFold(v string) predicate.User

NodeIDContainsFold applies the ContainsFold predicate on the "node_id" field.

func NodeIDEQ

func NodeIDEQ(v string) predicate.User

NodeIDEQ applies the EQ predicate on the "node_id" field.

func NodeIDEqualFold

func NodeIDEqualFold(v string) predicate.User

NodeIDEqualFold applies the EqualFold predicate on the "node_id" field.

func NodeIDGT

func NodeIDGT(v string) predicate.User

NodeIDGT applies the GT predicate on the "node_id" field.

func NodeIDGTE

func NodeIDGTE(v string) predicate.User

NodeIDGTE applies the GTE predicate on the "node_id" field.

func NodeIDHasPrefix

func NodeIDHasPrefix(v string) predicate.User

NodeIDHasPrefix applies the HasPrefix predicate on the "node_id" field.

func NodeIDHasSuffix

func NodeIDHasSuffix(v string) predicate.User

NodeIDHasSuffix applies the HasSuffix predicate on the "node_id" field.

func NodeIDIn

func NodeIDIn(vs ...string) predicate.User

NodeIDIn applies the In predicate on the "node_id" field.

func NodeIDLT

func NodeIDLT(v string) predicate.User

NodeIDLT applies the LT predicate on the "node_id" field.

func NodeIDLTE

func NodeIDLTE(v string) predicate.User

NodeIDLTE applies the LTE predicate on the "node_id" field.

func NodeIDNEQ

func NodeIDNEQ(v string) predicate.User

NodeIDNEQ applies the NEQ predicate on the "node_id" field.

func NodeIDNotIn

func NodeIDNotIn(vs ...string) predicate.User

NodeIDNotIn applies the NotIn predicate on the "node_id" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.User) predicate.User

Or groups predicates with the OR operator between them.

func OrganizationsURL

func OrganizationsURL(v string) predicate.User

OrganizationsURL applies equality check predicate on the "organizations_url" field. It's identical to OrganizationsURLEQ.

func OrganizationsURLContains

func OrganizationsURLContains(v string) predicate.User

OrganizationsURLContains applies the Contains predicate on the "organizations_url" field.

func OrganizationsURLContainsFold

func OrganizationsURLContainsFold(v string) predicate.User

OrganizationsURLContainsFold applies the ContainsFold predicate on the "organizations_url" field.

func OrganizationsURLEQ

func OrganizationsURLEQ(v string) predicate.User

OrganizationsURLEQ applies the EQ predicate on the "organizations_url" field.

func OrganizationsURLEqualFold

func OrganizationsURLEqualFold(v string) predicate.User

OrganizationsURLEqualFold applies the EqualFold predicate on the "organizations_url" field.

func OrganizationsURLGT

func OrganizationsURLGT(v string) predicate.User

OrganizationsURLGT applies the GT predicate on the "organizations_url" field.

func OrganizationsURLGTE

func OrganizationsURLGTE(v string) predicate.User

OrganizationsURLGTE applies the GTE predicate on the "organizations_url" field.

func OrganizationsURLHasPrefix

func OrganizationsURLHasPrefix(v string) predicate.User

OrganizationsURLHasPrefix applies the HasPrefix predicate on the "organizations_url" field.

func OrganizationsURLHasSuffix

func OrganizationsURLHasSuffix(v string) predicate.User

OrganizationsURLHasSuffix applies the HasSuffix predicate on the "organizations_url" field.

func OrganizationsURLIn

func OrganizationsURLIn(vs ...string) predicate.User

OrganizationsURLIn applies the In predicate on the "organizations_url" field.

func OrganizationsURLLT

func OrganizationsURLLT(v string) predicate.User

OrganizationsURLLT applies the LT predicate on the "organizations_url" field.

func OrganizationsURLLTE

func OrganizationsURLLTE(v string) predicate.User

OrganizationsURLLTE applies the LTE predicate on the "organizations_url" field.

func OrganizationsURLNEQ

func OrganizationsURLNEQ(v string) predicate.User

OrganizationsURLNEQ applies the NEQ predicate on the "organizations_url" field.

func OrganizationsURLNotIn

func OrganizationsURLNotIn(vs ...string) predicate.User

OrganizationsURLNotIn applies the NotIn predicate on the "organizations_url" field.

func PublicGists

func PublicGists(v int64) predicate.User

PublicGists applies equality check predicate on the "public_gists" field. It's identical to PublicGistsEQ.

func PublicGistsEQ

func PublicGistsEQ(v int64) predicate.User

PublicGistsEQ applies the EQ predicate on the "public_gists" field.

func PublicGistsGT

func PublicGistsGT(v int64) predicate.User

PublicGistsGT applies the GT predicate on the "public_gists" field.

func PublicGistsGTE

func PublicGistsGTE(v int64) predicate.User

PublicGistsGTE applies the GTE predicate on the "public_gists" field.

func PublicGistsIn

func PublicGistsIn(vs ...int64) predicate.User

PublicGistsIn applies the In predicate on the "public_gists" field.

func PublicGistsLT

func PublicGistsLT(v int64) predicate.User

PublicGistsLT applies the LT predicate on the "public_gists" field.

func PublicGistsLTE

func PublicGistsLTE(v int64) predicate.User

PublicGistsLTE applies the LTE predicate on the "public_gists" field.

func PublicGistsNEQ

func PublicGistsNEQ(v int64) predicate.User

PublicGistsNEQ applies the NEQ predicate on the "public_gists" field.

func PublicGistsNotIn

func PublicGistsNotIn(vs ...int64) predicate.User

PublicGistsNotIn applies the NotIn predicate on the "public_gists" field.

func PublicRepos

func PublicRepos(v int64) predicate.User

PublicRepos applies equality check predicate on the "public_repos" field. It's identical to PublicReposEQ.

func PublicReposEQ

func PublicReposEQ(v int64) predicate.User

PublicReposEQ applies the EQ predicate on the "public_repos" field.

func PublicReposGT

func PublicReposGT(v int64) predicate.User

PublicReposGT applies the GT predicate on the "public_repos" field.

func PublicReposGTE

func PublicReposGTE(v int64) predicate.User

PublicReposGTE applies the GTE predicate on the "public_repos" field.

func PublicReposIn

func PublicReposIn(vs ...int64) predicate.User

PublicReposIn applies the In predicate on the "public_repos" field.

func PublicReposLT

func PublicReposLT(v int64) predicate.User

PublicReposLT applies the LT predicate on the "public_repos" field.

func PublicReposLTE

func PublicReposLTE(v int64) predicate.User

PublicReposLTE applies the LTE predicate on the "public_repos" field.

func PublicReposNEQ

func PublicReposNEQ(v int64) predicate.User

PublicReposNEQ applies the NEQ predicate on the "public_repos" field.

func PublicReposNotIn

func PublicReposNotIn(vs ...int64) predicate.User

PublicReposNotIn applies the NotIn predicate on the "public_repos" field.

func ReceivedEventsURL

func ReceivedEventsURL(v string) predicate.User

ReceivedEventsURL applies equality check predicate on the "received_events_url" field. It's identical to ReceivedEventsURLEQ.

func ReceivedEventsURLContains

func ReceivedEventsURLContains(v string) predicate.User

ReceivedEventsURLContains applies the Contains predicate on the "received_events_url" field.

func ReceivedEventsURLContainsFold

func ReceivedEventsURLContainsFold(v string) predicate.User

ReceivedEventsURLContainsFold applies the ContainsFold predicate on the "received_events_url" field.

func ReceivedEventsURLEQ

func ReceivedEventsURLEQ(v string) predicate.User

ReceivedEventsURLEQ applies the EQ predicate on the "received_events_url" field.

func ReceivedEventsURLEqualFold

func ReceivedEventsURLEqualFold(v string) predicate.User

ReceivedEventsURLEqualFold applies the EqualFold predicate on the "received_events_url" field.

func ReceivedEventsURLGT

func ReceivedEventsURLGT(v string) predicate.User

ReceivedEventsURLGT applies the GT predicate on the "received_events_url" field.

func ReceivedEventsURLGTE

func ReceivedEventsURLGTE(v string) predicate.User

ReceivedEventsURLGTE applies the GTE predicate on the "received_events_url" field.

func ReceivedEventsURLHasPrefix

func ReceivedEventsURLHasPrefix(v string) predicate.User

ReceivedEventsURLHasPrefix applies the HasPrefix predicate on the "received_events_url" field.

func ReceivedEventsURLHasSuffix

func ReceivedEventsURLHasSuffix(v string) predicate.User

ReceivedEventsURLHasSuffix applies the HasSuffix predicate on the "received_events_url" field.

func ReceivedEventsURLIn

func ReceivedEventsURLIn(vs ...string) predicate.User

ReceivedEventsURLIn applies the In predicate on the "received_events_url" field.

func ReceivedEventsURLLT

func ReceivedEventsURLLT(v string) predicate.User

ReceivedEventsURLLT applies the LT predicate on the "received_events_url" field.

func ReceivedEventsURLLTE

func ReceivedEventsURLLTE(v string) predicate.User

ReceivedEventsURLLTE applies the LTE predicate on the "received_events_url" field.

func ReceivedEventsURLNEQ

func ReceivedEventsURLNEQ(v string) predicate.User

ReceivedEventsURLNEQ applies the NEQ predicate on the "received_events_url" field.

func ReceivedEventsURLNotIn

func ReceivedEventsURLNotIn(vs ...string) predicate.User

ReceivedEventsURLNotIn applies the NotIn predicate on the "received_events_url" field.

func ReposURL

func ReposURL(v string) predicate.User

ReposURL applies equality check predicate on the "repos_url" field. It's identical to ReposURLEQ.

func ReposURLContains

func ReposURLContains(v string) predicate.User

ReposURLContains applies the Contains predicate on the "repos_url" field.

func ReposURLContainsFold

func ReposURLContainsFold(v string) predicate.User

ReposURLContainsFold applies the ContainsFold predicate on the "repos_url" field.

func ReposURLEQ

func ReposURLEQ(v string) predicate.User

ReposURLEQ applies the EQ predicate on the "repos_url" field.

func ReposURLEqualFold

func ReposURLEqualFold(v string) predicate.User

ReposURLEqualFold applies the EqualFold predicate on the "repos_url" field.

func ReposURLGT

func ReposURLGT(v string) predicate.User

ReposURLGT applies the GT predicate on the "repos_url" field.

func ReposURLGTE

func ReposURLGTE(v string) predicate.User

ReposURLGTE applies the GTE predicate on the "repos_url" field.

func ReposURLHasPrefix

func ReposURLHasPrefix(v string) predicate.User

ReposURLHasPrefix applies the HasPrefix predicate on the "repos_url" field.

func ReposURLHasSuffix

func ReposURLHasSuffix(v string) predicate.User

ReposURLHasSuffix applies the HasSuffix predicate on the "repos_url" field.

func ReposURLIn

func ReposURLIn(vs ...string) predicate.User

ReposURLIn applies the In predicate on the "repos_url" field.

func ReposURLLT

func ReposURLLT(v string) predicate.User

ReposURLLT applies the LT predicate on the "repos_url" field.

func ReposURLLTE

func ReposURLLTE(v string) predicate.User

ReposURLLTE applies the LTE predicate on the "repos_url" field.

func ReposURLNEQ

func ReposURLNEQ(v string) predicate.User

ReposURLNEQ applies the NEQ predicate on the "repos_url" field.

func ReposURLNotIn

func ReposURLNotIn(vs ...string) predicate.User

ReposURLNotIn applies the NotIn predicate on the "repos_url" field.

func SiteAdmin

func SiteAdmin(v bool) predicate.User

SiteAdmin applies equality check predicate on the "site_admin" field. It's identical to SiteAdminEQ.

func SiteAdminEQ

func SiteAdminEQ(v bool) predicate.User

SiteAdminEQ applies the EQ predicate on the "site_admin" field.

func SiteAdminNEQ

func SiteAdminNEQ(v bool) predicate.User

SiteAdminNEQ applies the NEQ predicate on the "site_admin" field.

func StarredURL

func StarredURL(v string) predicate.User

StarredURL applies equality check predicate on the "starred_url" field. It's identical to StarredURLEQ.

func StarredURLContains

func StarredURLContains(v string) predicate.User

StarredURLContains applies the Contains predicate on the "starred_url" field.

func StarredURLContainsFold

func StarredURLContainsFold(v string) predicate.User

StarredURLContainsFold applies the ContainsFold predicate on the "starred_url" field.

func StarredURLEQ

func StarredURLEQ(v string) predicate.User

StarredURLEQ applies the EQ predicate on the "starred_url" field.

func StarredURLEqualFold

func StarredURLEqualFold(v string) predicate.User

StarredURLEqualFold applies the EqualFold predicate on the "starred_url" field.

func StarredURLGT

func StarredURLGT(v string) predicate.User

StarredURLGT applies the GT predicate on the "starred_url" field.

func StarredURLGTE

func StarredURLGTE(v string) predicate.User

StarredURLGTE applies the GTE predicate on the "starred_url" field.

func StarredURLHasPrefix

func StarredURLHasPrefix(v string) predicate.User

StarredURLHasPrefix applies the HasPrefix predicate on the "starred_url" field.

func StarredURLHasSuffix

func StarredURLHasSuffix(v string) predicate.User

StarredURLHasSuffix applies the HasSuffix predicate on the "starred_url" field.

func StarredURLIn

func StarredURLIn(vs ...string) predicate.User

StarredURLIn applies the In predicate on the "starred_url" field.

func StarredURLLT

func StarredURLLT(v string) predicate.User

StarredURLLT applies the LT predicate on the "starred_url" field.

func StarredURLLTE

func StarredURLLTE(v string) predicate.User

StarredURLLTE applies the LTE predicate on the "starred_url" field.

func StarredURLNEQ

func StarredURLNEQ(v string) predicate.User

StarredURLNEQ applies the NEQ predicate on the "starred_url" field.

func StarredURLNotIn

func StarredURLNotIn(vs ...string) predicate.User

StarredURLNotIn applies the NotIn predicate on the "starred_url" field.

func SubscriptionsURL

func SubscriptionsURL(v string) predicate.User

SubscriptionsURL applies equality check predicate on the "subscriptions_url" field. It's identical to SubscriptionsURLEQ.

func SubscriptionsURLContains

func SubscriptionsURLContains(v string) predicate.User

SubscriptionsURLContains applies the Contains predicate on the "subscriptions_url" field.

func SubscriptionsURLContainsFold

func SubscriptionsURLContainsFold(v string) predicate.User

SubscriptionsURLContainsFold applies the ContainsFold predicate on the "subscriptions_url" field.

func SubscriptionsURLEQ

func SubscriptionsURLEQ(v string) predicate.User

SubscriptionsURLEQ applies the EQ predicate on the "subscriptions_url" field.

func SubscriptionsURLEqualFold

func SubscriptionsURLEqualFold(v string) predicate.User

SubscriptionsURLEqualFold applies the EqualFold predicate on the "subscriptions_url" field.

func SubscriptionsURLGT

func SubscriptionsURLGT(v string) predicate.User

SubscriptionsURLGT applies the GT predicate on the "subscriptions_url" field.

func SubscriptionsURLGTE

func SubscriptionsURLGTE(v string) predicate.User

SubscriptionsURLGTE applies the GTE predicate on the "subscriptions_url" field.

func SubscriptionsURLHasPrefix

func SubscriptionsURLHasPrefix(v string) predicate.User

SubscriptionsURLHasPrefix applies the HasPrefix predicate on the "subscriptions_url" field.

func SubscriptionsURLHasSuffix

func SubscriptionsURLHasSuffix(v string) predicate.User

SubscriptionsURLHasSuffix applies the HasSuffix predicate on the "subscriptions_url" field.

func SubscriptionsURLIn

func SubscriptionsURLIn(vs ...string) predicate.User

SubscriptionsURLIn applies the In predicate on the "subscriptions_url" field.

func SubscriptionsURLLT

func SubscriptionsURLLT(v string) predicate.User

SubscriptionsURLLT applies the LT predicate on the "subscriptions_url" field.

func SubscriptionsURLLTE

func SubscriptionsURLLTE(v string) predicate.User

SubscriptionsURLLTE applies the LTE predicate on the "subscriptions_url" field.

func SubscriptionsURLNEQ

func SubscriptionsURLNEQ(v string) predicate.User

SubscriptionsURLNEQ applies the NEQ predicate on the "subscriptions_url" field.

func SubscriptionsURLNotIn

func SubscriptionsURLNotIn(vs ...string) predicate.User

SubscriptionsURLNotIn applies the NotIn predicate on the "subscriptions_url" field.

func Type

func Type(v string) predicate.User

Type applies equality check predicate on the "type" field. It's identical to TypeEQ.

func TypeContains

func TypeContains(v string) predicate.User

TypeContains applies the Contains predicate on the "type" field.

func TypeContainsFold

func TypeContainsFold(v string) predicate.User

TypeContainsFold applies the ContainsFold predicate on the "type" field.

func TypeEQ

func TypeEQ(v string) predicate.User

TypeEQ applies the EQ predicate on the "type" field.

func TypeEqualFold

func TypeEqualFold(v string) predicate.User

TypeEqualFold applies the EqualFold predicate on the "type" field.

func TypeGT

func TypeGT(v string) predicate.User

TypeGT applies the GT predicate on the "type" field.

func TypeGTE

func TypeGTE(v string) predicate.User

TypeGTE applies the GTE predicate on the "type" field.

func TypeHasPrefix

func TypeHasPrefix(v string) predicate.User

TypeHasPrefix applies the HasPrefix predicate on the "type" field.

func TypeHasSuffix

func TypeHasSuffix(v string) predicate.User

TypeHasSuffix applies the HasSuffix predicate on the "type" field.

func TypeIn

func TypeIn(vs ...string) predicate.User

TypeIn applies the In predicate on the "type" field.

func TypeLT

func TypeLT(v string) predicate.User

TypeLT applies the LT predicate on the "type" field.

func TypeLTE

func TypeLTE(v string) predicate.User

TypeLTE applies the LTE predicate on the "type" field.

func TypeNEQ

func TypeNEQ(v string) predicate.User

TypeNEQ applies the NEQ predicate on the "type" field.

func TypeNotIn

func TypeNotIn(vs ...string) predicate.User

TypeNotIn applies the NotIn predicate on the "type" field.

func URL

func URL(v string) predicate.User

URL applies equality check predicate on the "url" field. It's identical to URLEQ.

func URLContains

func URLContains(v string) predicate.User

URLContains applies the Contains predicate on the "url" field.

func URLContainsFold

func URLContainsFold(v string) predicate.User

URLContainsFold applies the ContainsFold predicate on the "url" field.

func URLEQ

func URLEQ(v string) predicate.User

URLEQ applies the EQ predicate on the "url" field.

func URLEqualFold

func URLEqualFold(v string) predicate.User

URLEqualFold applies the EqualFold predicate on the "url" field.

func URLGT

func URLGT(v string) predicate.User

URLGT applies the GT predicate on the "url" field.

func URLGTE

func URLGTE(v string) predicate.User

URLGTE applies the GTE predicate on the "url" field.

func URLHasPrefix

func URLHasPrefix(v string) predicate.User

URLHasPrefix applies the HasPrefix predicate on the "url" field.

func URLHasSuffix

func URLHasSuffix(v string) predicate.User

URLHasSuffix applies the HasSuffix predicate on the "url" field.

func URLIn

func URLIn(vs ...string) predicate.User

URLIn applies the In predicate on the "url" field.

func URLLT

func URLLT(v string) predicate.User

URLLT applies the LT predicate on the "url" field.

func URLLTE

func URLLTE(v string) predicate.User

URLLTE applies the LTE predicate on the "url" field.

func URLNEQ

func URLNEQ(v string) predicate.User

URLNEQ applies the NEQ predicate on the "url" field.

func URLNotIn

func URLNotIn(vs ...string) predicate.User

URLNotIn applies the NotIn predicate on the "url" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.User

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.User

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.User

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.User

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.User

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.User

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.User

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.User

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.User

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func ValidColumn

func ValidColumn(column string) bool

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

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the User queries.

func ByAvatarURL

func ByAvatarURL(opts ...sql.OrderTermOption) OrderOption

ByAvatarURL orders the results by the avatar_url field.

func ByBio

func ByBio(opts ...sql.OrderTermOption) OrderOption

ByBio orders the results by the bio field.

func ByBlog

func ByBlog(opts ...sql.OrderTermOption) OrderOption

ByBlog orders the results by the blog field.

func ByCommentsCreated

func ByCommentsCreated(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByCommentsCreated orders the results by comments_created terms.

func ByCommentsCreatedCount

func ByCommentsCreatedCount(opts ...sql.OrderTermOption) OrderOption

ByCommentsCreatedCount orders the results by comments_created count.

func ByCompany

func ByCompany(opts ...sql.OrderTermOption) OrderOption

ByCompany orders the results by the company field.

func ByCreatedAt

func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption

ByCreatedAt orders the results by the created_at field.

func ByEmail

func ByEmail(opts ...sql.OrderTermOption) OrderOption

ByEmail orders the results by the email field.

func ByEventsURL

func ByEventsURL(opts ...sql.OrderTermOption) OrderOption

ByEventsURL orders the results by the events_url field.

func ByFollowers

func ByFollowers(opts ...sql.OrderTermOption) OrderOption

ByFollowers orders the results by the followers field.

func ByFollowersURL

func ByFollowersURL(opts ...sql.OrderTermOption) OrderOption

ByFollowersURL orders the results by the followers_url field.

func ByFollowing

func ByFollowing(opts ...sql.OrderTermOption) OrderOption

ByFollowing orders the results by the following field.

func ByFollowingURL

func ByFollowingURL(opts ...sql.OrderTermOption) OrderOption

ByFollowingURL orders the results by the following_url field.

func ByGistsURL

func ByGistsURL(opts ...sql.OrderTermOption) OrderOption

ByGistsURL orders the results by the gists_url field.

func ByGravatarID

func ByGravatarID(opts ...sql.OrderTermOption) OrderOption

ByGravatarID orders the results by the gravatar_id field.

func ByHTMLURL

func ByHTMLURL(opts ...sql.OrderTermOption) OrderOption

ByHTMLURL orders the results by the html_url field.

func ByHireable

func ByHireable(opts ...sql.OrderTermOption) OrderOption

ByHireable orders the results by the hireable field.

func ByID

func ByID(opts ...sql.OrderTermOption) OrderOption

ByID orders the results by the id field.

func ByIssuesAssigned

func ByIssuesAssigned(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByIssuesAssigned orders the results by issues_assigned terms.

func ByIssuesAssignedCount

func ByIssuesAssignedCount(opts ...sql.OrderTermOption) OrderOption

ByIssuesAssignedCount orders the results by issues_assigned count.

func ByIssuesClosed

func ByIssuesClosed(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByIssuesClosed orders the results by issues_closed terms.

func ByIssuesClosedCount

func ByIssuesClosedCount(opts ...sql.OrderTermOption) OrderOption

ByIssuesClosedCount orders the results by issues_closed count.

func ByIssuesCreated

func ByIssuesCreated(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByIssuesCreated orders the results by issues_created terms.

func ByIssuesCreatedCount

func ByIssuesCreatedCount(opts ...sql.OrderTermOption) OrderOption

ByIssuesCreatedCount orders the results by issues_created count.

func ByLocation

func ByLocation(opts ...sql.OrderTermOption) OrderOption

ByLocation orders the results by the location field.

func ByLogin

func ByLogin(opts ...sql.OrderTermOption) OrderOption

ByLogin orders the results by the login field.

func ByName

func ByName(opts ...sql.OrderTermOption) OrderOption

ByName orders the results by the name field.

func ByNodeID

func ByNodeID(opts ...sql.OrderTermOption) OrderOption

ByNodeID orders the results by the node_id field.

func ByOrganizationsURL

func ByOrganizationsURL(opts ...sql.OrderTermOption) OrderOption

ByOrganizationsURL orders the results by the organizations_url field.

func ByPublicGists

func ByPublicGists(opts ...sql.OrderTermOption) OrderOption

ByPublicGists orders the results by the public_gists field.

func ByPublicRepos

func ByPublicRepos(opts ...sql.OrderTermOption) OrderOption

ByPublicRepos orders the results by the public_repos field.

func ByReceivedEventsURL

func ByReceivedEventsURL(opts ...sql.OrderTermOption) OrderOption

ByReceivedEventsURL orders the results by the received_events_url field.

func ByReposURL

func ByReposURL(opts ...sql.OrderTermOption) OrderOption

ByReposURL orders the results by the repos_url field.

func ByRepositories

func ByRepositories(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByRepositories orders the results by repositories terms.

func ByRepositoriesCount

func ByRepositoriesCount(opts ...sql.OrderTermOption) OrderOption

ByRepositoriesCount orders the results by repositories count.

func BySiteAdmin

func BySiteAdmin(opts ...sql.OrderTermOption) OrderOption

BySiteAdmin orders the results by the site_admin field.

func ByStarredURL

func ByStarredURL(opts ...sql.OrderTermOption) OrderOption

ByStarredURL orders the results by the starred_url field.

func BySubscriptionsURL

func BySubscriptionsURL(opts ...sql.OrderTermOption) OrderOption

BySubscriptionsURL orders the results by the subscriptions_url field.

func ByType

func ByType(opts ...sql.OrderTermOption) OrderOption

ByType orders the results by the type field.

func ByURL

func ByURL(opts ...sql.OrderTermOption) OrderOption

ByURL orders the results by the url field.

func ByUpdatedAt

func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption

ByUpdatedAt orders the results by the updated_at field.

Jump to

Keyboard shortcuts

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