player

package
v0.0.0-...-4b256dd Latest Latest
Warning

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

Go to latest
Published: Sep 13, 2022 License: GPL-3.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the player type in the database.
	Label = "player"
	// 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"
	// FieldAvatar holds the string denoting the avatar field in the database.
	FieldAvatar = "avatar"
	// FieldVanityURL holds the string denoting the vanity_url field in the database.
	FieldVanityURL = "vanity_url"
	// FieldVanityURLReal holds the string denoting the vanity_url_real field in the database.
	FieldVanityURLReal = "vanity_url_real"
	// FieldVacDate holds the string denoting the vac_date field in the database.
	FieldVacDate = "vac_date"
	// FieldVacCount holds the string denoting the vac_count field in the database.
	FieldVacCount = "vac_count"
	// FieldGameBanDate holds the string denoting the game_ban_date field in the database.
	FieldGameBanDate = "game_ban_date"
	// FieldGameBanCount holds the string denoting the game_ban_count field in the database.
	FieldGameBanCount = "game_ban_count"
	// FieldSteamUpdated holds the string denoting the steam_updated field in the database.
	FieldSteamUpdated = "steam_updated"
	// FieldSharecodeUpdated holds the string denoting the sharecode_updated field in the database.
	FieldSharecodeUpdated = "sharecode_updated"
	// FieldAuthCode holds the string denoting the auth_code field in the database.
	FieldAuthCode = "auth_code"
	// FieldProfileCreated holds the string denoting the profile_created field in the database.
	FieldProfileCreated = "profile_created"
	// FieldOldestSharecodeSeen holds the string denoting the oldest_sharecode_seen field in the database.
	FieldOldestSharecodeSeen = "oldest_sharecode_seen"
	// FieldWins holds the string denoting the wins field in the database.
	FieldWins = "wins"
	// FieldLooses holds the string denoting the looses field in the database.
	FieldLooses = "looses"
	// FieldTies holds the string denoting the ties field in the database.
	FieldTies = "ties"
	// EdgeStats holds the string denoting the stats edge name in mutations.
	EdgeStats = "stats"
	// EdgeMatches holds the string denoting the matches edge name in mutations.
	EdgeMatches = "matches"
	// Table holds the table name of the player in the database.
	Table = "players"
	// StatsTable is the table that holds the stats relation/edge.
	StatsTable = "match_players"
	// StatsInverseTable is the table name for the MatchPlayer entity.
	// It exists in this package in order to avoid circular dependency with the "matchplayer" package.
	StatsInverseTable = "match_players"
	// StatsColumn is the table column denoting the stats relation/edge.
	StatsColumn = "player_stats"
	// MatchesTable is the table that holds the matches relation/edge. The primary key declared below.
	MatchesTable = "player_matches"
	// MatchesInverseTable is the table name for the Match entity.
	// It exists in this package in order to avoid circular dependency with the "match" package.
	MatchesInverseTable = "matches"
)

Variables

Columns holds all SQL columns for player fields.

View Source
var (
	// DefaultSteamUpdated holds the default value on creation for the "steam_updated" field.
	DefaultSteamUpdated func() time.Time
)
View Source
var (
	// MatchesPrimaryKey and MatchesColumn2 are the table columns denoting the
	// primary key for the matches relation (M2M).
	MatchesPrimaryKey = []string{"player_id", "match_id"}
)

Functions

func And

func And(predicates ...predicate.Player) predicate.Player

And groups predicates with the AND operator between them.

func AuthCode

func AuthCode(v string) predicate.Player

AuthCode applies equality check predicate on the "auth_code" field. It's identical to AuthCodeEQ.

func AuthCodeContains

func AuthCodeContains(v string) predicate.Player

AuthCodeContains applies the Contains predicate on the "auth_code" field.

func AuthCodeContainsFold

func AuthCodeContainsFold(v string) predicate.Player

AuthCodeContainsFold applies the ContainsFold predicate on the "auth_code" field.

func AuthCodeEQ

func AuthCodeEQ(v string) predicate.Player

AuthCodeEQ applies the EQ predicate on the "auth_code" field.

func AuthCodeEqualFold

func AuthCodeEqualFold(v string) predicate.Player

AuthCodeEqualFold applies the EqualFold predicate on the "auth_code" field.

func AuthCodeGT

func AuthCodeGT(v string) predicate.Player

AuthCodeGT applies the GT predicate on the "auth_code" field.

func AuthCodeGTE

func AuthCodeGTE(v string) predicate.Player

AuthCodeGTE applies the GTE predicate on the "auth_code" field.

func AuthCodeHasPrefix

func AuthCodeHasPrefix(v string) predicate.Player

AuthCodeHasPrefix applies the HasPrefix predicate on the "auth_code" field.

func AuthCodeHasSuffix

func AuthCodeHasSuffix(v string) predicate.Player

AuthCodeHasSuffix applies the HasSuffix predicate on the "auth_code" field.

func AuthCodeIn

func AuthCodeIn(vs ...string) predicate.Player

AuthCodeIn applies the In predicate on the "auth_code" field.

func AuthCodeIsNil

func AuthCodeIsNil() predicate.Player

AuthCodeIsNil applies the IsNil predicate on the "auth_code" field.

func AuthCodeLT

func AuthCodeLT(v string) predicate.Player

AuthCodeLT applies the LT predicate on the "auth_code" field.

func AuthCodeLTE

func AuthCodeLTE(v string) predicate.Player

AuthCodeLTE applies the LTE predicate on the "auth_code" field.

func AuthCodeNEQ

func AuthCodeNEQ(v string) predicate.Player

AuthCodeNEQ applies the NEQ predicate on the "auth_code" field.

func AuthCodeNotIn

func AuthCodeNotIn(vs ...string) predicate.Player

AuthCodeNotIn applies the NotIn predicate on the "auth_code" field.

func AuthCodeNotNil

func AuthCodeNotNil() predicate.Player

AuthCodeNotNil applies the NotNil predicate on the "auth_code" field.

func Avatar

func Avatar(v string) predicate.Player

Avatar applies equality check predicate on the "avatar" field. It's identical to AvatarEQ.

func AvatarContains

func AvatarContains(v string) predicate.Player

AvatarContains applies the Contains predicate on the "avatar" field.

func AvatarContainsFold

func AvatarContainsFold(v string) predicate.Player

AvatarContainsFold applies the ContainsFold predicate on the "avatar" field.

func AvatarEQ

func AvatarEQ(v string) predicate.Player

AvatarEQ applies the EQ predicate on the "avatar" field.

func AvatarEqualFold

func AvatarEqualFold(v string) predicate.Player

AvatarEqualFold applies the EqualFold predicate on the "avatar" field.

func AvatarGT

func AvatarGT(v string) predicate.Player

AvatarGT applies the GT predicate on the "avatar" field.

func AvatarGTE

func AvatarGTE(v string) predicate.Player

AvatarGTE applies the GTE predicate on the "avatar" field.

func AvatarHasPrefix

func AvatarHasPrefix(v string) predicate.Player

AvatarHasPrefix applies the HasPrefix predicate on the "avatar" field.

func AvatarHasSuffix

func AvatarHasSuffix(v string) predicate.Player

AvatarHasSuffix applies the HasSuffix predicate on the "avatar" field.

func AvatarIn

func AvatarIn(vs ...string) predicate.Player

AvatarIn applies the In predicate on the "avatar" field.

func AvatarIsNil

func AvatarIsNil() predicate.Player

AvatarIsNil applies the IsNil predicate on the "avatar" field.

func AvatarLT

func AvatarLT(v string) predicate.Player

AvatarLT applies the LT predicate on the "avatar" field.

func AvatarLTE

func AvatarLTE(v string) predicate.Player

AvatarLTE applies the LTE predicate on the "avatar" field.

func AvatarNEQ

func AvatarNEQ(v string) predicate.Player

AvatarNEQ applies the NEQ predicate on the "avatar" field.

func AvatarNotIn

func AvatarNotIn(vs ...string) predicate.Player

AvatarNotIn applies the NotIn predicate on the "avatar" field.

func AvatarNotNil

func AvatarNotNil() predicate.Player

AvatarNotNil applies the NotNil predicate on the "avatar" field.

func GameBanCount

func GameBanCount(v int) predicate.Player

GameBanCount applies equality check predicate on the "game_ban_count" field. It's identical to GameBanCountEQ.

func GameBanCountEQ

func GameBanCountEQ(v int) predicate.Player

GameBanCountEQ applies the EQ predicate on the "game_ban_count" field.

func GameBanCountGT

func GameBanCountGT(v int) predicate.Player

GameBanCountGT applies the GT predicate on the "game_ban_count" field.

func GameBanCountGTE

func GameBanCountGTE(v int) predicate.Player

GameBanCountGTE applies the GTE predicate on the "game_ban_count" field.

func GameBanCountIn

func GameBanCountIn(vs ...int) predicate.Player

GameBanCountIn applies the In predicate on the "game_ban_count" field.

func GameBanCountIsNil

func GameBanCountIsNil() predicate.Player

GameBanCountIsNil applies the IsNil predicate on the "game_ban_count" field.

func GameBanCountLT

func GameBanCountLT(v int) predicate.Player

GameBanCountLT applies the LT predicate on the "game_ban_count" field.

func GameBanCountLTE

func GameBanCountLTE(v int) predicate.Player

GameBanCountLTE applies the LTE predicate on the "game_ban_count" field.

func GameBanCountNEQ

func GameBanCountNEQ(v int) predicate.Player

GameBanCountNEQ applies the NEQ predicate on the "game_ban_count" field.

func GameBanCountNotIn

func GameBanCountNotIn(vs ...int) predicate.Player

GameBanCountNotIn applies the NotIn predicate on the "game_ban_count" field.

func GameBanCountNotNil

func GameBanCountNotNil() predicate.Player

GameBanCountNotNil applies the NotNil predicate on the "game_ban_count" field.

func GameBanDate

func GameBanDate(v time.Time) predicate.Player

GameBanDate applies equality check predicate on the "game_ban_date" field. It's identical to GameBanDateEQ.

func GameBanDateEQ

func GameBanDateEQ(v time.Time) predicate.Player

GameBanDateEQ applies the EQ predicate on the "game_ban_date" field.

func GameBanDateGT

func GameBanDateGT(v time.Time) predicate.Player

GameBanDateGT applies the GT predicate on the "game_ban_date" field.

func GameBanDateGTE

func GameBanDateGTE(v time.Time) predicate.Player

GameBanDateGTE applies the GTE predicate on the "game_ban_date" field.

func GameBanDateIn

func GameBanDateIn(vs ...time.Time) predicate.Player

GameBanDateIn applies the In predicate on the "game_ban_date" field.

func GameBanDateIsNil

func GameBanDateIsNil() predicate.Player

GameBanDateIsNil applies the IsNil predicate on the "game_ban_date" field.

func GameBanDateLT

func GameBanDateLT(v time.Time) predicate.Player

GameBanDateLT applies the LT predicate on the "game_ban_date" field.

func GameBanDateLTE

func GameBanDateLTE(v time.Time) predicate.Player

GameBanDateLTE applies the LTE predicate on the "game_ban_date" field.

func GameBanDateNEQ

func GameBanDateNEQ(v time.Time) predicate.Player

GameBanDateNEQ applies the NEQ predicate on the "game_ban_date" field.

func GameBanDateNotIn

func GameBanDateNotIn(vs ...time.Time) predicate.Player

GameBanDateNotIn applies the NotIn predicate on the "game_ban_date" field.

func GameBanDateNotNil

func GameBanDateNotNil() predicate.Player

GameBanDateNotNil applies the NotNil predicate on the "game_ban_date" field.

func HasMatches

func HasMatches() predicate.Player

HasMatches applies the HasEdge predicate on the "matches" edge.

func HasMatchesWith

func HasMatchesWith(preds ...predicate.Match) predicate.Player

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

func HasStats

func HasStats() predicate.Player

HasStats applies the HasEdge predicate on the "stats" edge.

func HasStatsWith

func HasStatsWith(preds ...predicate.MatchPlayer) predicate.Player

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

func ID

func ID(id uint64) predicate.Player

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uint64) predicate.Player

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uint64) predicate.Player

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uint64) predicate.Player

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uint64) predicate.Player

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uint64) predicate.Player

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uint64) predicate.Player

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uint64) predicate.Player

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uint64) predicate.Player

IDNotIn applies the NotIn predicate on the ID field.

func Looses

func Looses(v int) predicate.Player

Looses applies equality check predicate on the "looses" field. It's identical to LoosesEQ.

func LoosesEQ

func LoosesEQ(v int) predicate.Player

LoosesEQ applies the EQ predicate on the "looses" field.

func LoosesGT

func LoosesGT(v int) predicate.Player

LoosesGT applies the GT predicate on the "looses" field.

func LoosesGTE

func LoosesGTE(v int) predicate.Player

LoosesGTE applies the GTE predicate on the "looses" field.

func LoosesIn

func LoosesIn(vs ...int) predicate.Player

LoosesIn applies the In predicate on the "looses" field.

func LoosesIsNil

func LoosesIsNil() predicate.Player

LoosesIsNil applies the IsNil predicate on the "looses" field.

func LoosesLT

func LoosesLT(v int) predicate.Player

LoosesLT applies the LT predicate on the "looses" field.

func LoosesLTE

func LoosesLTE(v int) predicate.Player

LoosesLTE applies the LTE predicate on the "looses" field.

func LoosesNEQ

func LoosesNEQ(v int) predicate.Player

LoosesNEQ applies the NEQ predicate on the "looses" field.

func LoosesNotIn

func LoosesNotIn(vs ...int) predicate.Player

LoosesNotIn applies the NotIn predicate on the "looses" field.

func LoosesNotNil

func LoosesNotNil() predicate.Player

LoosesNotNil applies the NotNil predicate on the "looses" field.

func Name

func Name(v string) predicate.Player

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

func NameContains

func NameContains(v string) predicate.Player

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

func NameContainsFold

func NameContainsFold(v string) predicate.Player

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

func NameEQ

func NameEQ(v string) predicate.Player

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

func NameEqualFold

func NameEqualFold(v string) predicate.Player

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

func NameGT

func NameGT(v string) predicate.Player

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

func NameGTE

func NameGTE(v string) predicate.Player

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.Player

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.Player

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

func NameIn

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

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

func NameIsNil

func NameIsNil() predicate.Player

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

func NameLT

func NameLT(v string) predicate.Player

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

func NameLTE

func NameLTE(v string) predicate.Player

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

func NameNEQ

func NameNEQ(v string) predicate.Player

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

func NameNotIn

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

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

func NameNotNil

func NameNotNil() predicate.Player

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

func Not

Not applies the not operator on the given predicate.

func OldestSharecodeSeen

func OldestSharecodeSeen(v string) predicate.Player

OldestSharecodeSeen applies equality check predicate on the "oldest_sharecode_seen" field. It's identical to OldestSharecodeSeenEQ.

func OldestSharecodeSeenContains

func OldestSharecodeSeenContains(v string) predicate.Player

OldestSharecodeSeenContains applies the Contains predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenContainsFold

func OldestSharecodeSeenContainsFold(v string) predicate.Player

OldestSharecodeSeenContainsFold applies the ContainsFold predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenEQ

func OldestSharecodeSeenEQ(v string) predicate.Player

OldestSharecodeSeenEQ applies the EQ predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenEqualFold

func OldestSharecodeSeenEqualFold(v string) predicate.Player

OldestSharecodeSeenEqualFold applies the EqualFold predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenGT

func OldestSharecodeSeenGT(v string) predicate.Player

OldestSharecodeSeenGT applies the GT predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenGTE

func OldestSharecodeSeenGTE(v string) predicate.Player

OldestSharecodeSeenGTE applies the GTE predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenHasPrefix

func OldestSharecodeSeenHasPrefix(v string) predicate.Player

OldestSharecodeSeenHasPrefix applies the HasPrefix predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenHasSuffix

func OldestSharecodeSeenHasSuffix(v string) predicate.Player

OldestSharecodeSeenHasSuffix applies the HasSuffix predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenIn

func OldestSharecodeSeenIn(vs ...string) predicate.Player

OldestSharecodeSeenIn applies the In predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenIsNil

func OldestSharecodeSeenIsNil() predicate.Player

OldestSharecodeSeenIsNil applies the IsNil predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenLT

func OldestSharecodeSeenLT(v string) predicate.Player

OldestSharecodeSeenLT applies the LT predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenLTE

func OldestSharecodeSeenLTE(v string) predicate.Player

OldestSharecodeSeenLTE applies the LTE predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenNEQ

func OldestSharecodeSeenNEQ(v string) predicate.Player

OldestSharecodeSeenNEQ applies the NEQ predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenNotIn

func OldestSharecodeSeenNotIn(vs ...string) predicate.Player

OldestSharecodeSeenNotIn applies the NotIn predicate on the "oldest_sharecode_seen" field.

func OldestSharecodeSeenNotNil

func OldestSharecodeSeenNotNil() predicate.Player

OldestSharecodeSeenNotNil applies the NotNil predicate on the "oldest_sharecode_seen" field.

func Or

func Or(predicates ...predicate.Player) predicate.Player

Or groups predicates with the OR operator between them.

func ProfileCreated

func ProfileCreated(v time.Time) predicate.Player

ProfileCreated applies equality check predicate on the "profile_created" field. It's identical to ProfileCreatedEQ.

func ProfileCreatedEQ

func ProfileCreatedEQ(v time.Time) predicate.Player

ProfileCreatedEQ applies the EQ predicate on the "profile_created" field.

func ProfileCreatedGT

func ProfileCreatedGT(v time.Time) predicate.Player

ProfileCreatedGT applies the GT predicate on the "profile_created" field.

func ProfileCreatedGTE

func ProfileCreatedGTE(v time.Time) predicate.Player

ProfileCreatedGTE applies the GTE predicate on the "profile_created" field.

func ProfileCreatedIn

func ProfileCreatedIn(vs ...time.Time) predicate.Player

ProfileCreatedIn applies the In predicate on the "profile_created" field.

func ProfileCreatedIsNil

func ProfileCreatedIsNil() predicate.Player

ProfileCreatedIsNil applies the IsNil predicate on the "profile_created" field.

func ProfileCreatedLT

func ProfileCreatedLT(v time.Time) predicate.Player

ProfileCreatedLT applies the LT predicate on the "profile_created" field.

func ProfileCreatedLTE

func ProfileCreatedLTE(v time.Time) predicate.Player

ProfileCreatedLTE applies the LTE predicate on the "profile_created" field.

func ProfileCreatedNEQ

func ProfileCreatedNEQ(v time.Time) predicate.Player

ProfileCreatedNEQ applies the NEQ predicate on the "profile_created" field.

func ProfileCreatedNotIn

func ProfileCreatedNotIn(vs ...time.Time) predicate.Player

ProfileCreatedNotIn applies the NotIn predicate on the "profile_created" field.

func ProfileCreatedNotNil

func ProfileCreatedNotNil() predicate.Player

ProfileCreatedNotNil applies the NotNil predicate on the "profile_created" field.

func SharecodeUpdated

func SharecodeUpdated(v time.Time) predicate.Player

SharecodeUpdated applies equality check predicate on the "sharecode_updated" field. It's identical to SharecodeUpdatedEQ.

func SharecodeUpdatedEQ

func SharecodeUpdatedEQ(v time.Time) predicate.Player

SharecodeUpdatedEQ applies the EQ predicate on the "sharecode_updated" field.

func SharecodeUpdatedGT

func SharecodeUpdatedGT(v time.Time) predicate.Player

SharecodeUpdatedGT applies the GT predicate on the "sharecode_updated" field.

func SharecodeUpdatedGTE

func SharecodeUpdatedGTE(v time.Time) predicate.Player

SharecodeUpdatedGTE applies the GTE predicate on the "sharecode_updated" field.

func SharecodeUpdatedIn

func SharecodeUpdatedIn(vs ...time.Time) predicate.Player

SharecodeUpdatedIn applies the In predicate on the "sharecode_updated" field.

func SharecodeUpdatedIsNil

func SharecodeUpdatedIsNil() predicate.Player

SharecodeUpdatedIsNil applies the IsNil predicate on the "sharecode_updated" field.

func SharecodeUpdatedLT

func SharecodeUpdatedLT(v time.Time) predicate.Player

SharecodeUpdatedLT applies the LT predicate on the "sharecode_updated" field.

func SharecodeUpdatedLTE

func SharecodeUpdatedLTE(v time.Time) predicate.Player

SharecodeUpdatedLTE applies the LTE predicate on the "sharecode_updated" field.

func SharecodeUpdatedNEQ

func SharecodeUpdatedNEQ(v time.Time) predicate.Player

SharecodeUpdatedNEQ applies the NEQ predicate on the "sharecode_updated" field.

func SharecodeUpdatedNotIn

func SharecodeUpdatedNotIn(vs ...time.Time) predicate.Player

SharecodeUpdatedNotIn applies the NotIn predicate on the "sharecode_updated" field.

func SharecodeUpdatedNotNil

func SharecodeUpdatedNotNil() predicate.Player

SharecodeUpdatedNotNil applies the NotNil predicate on the "sharecode_updated" field.

func SteamUpdated

func SteamUpdated(v time.Time) predicate.Player

SteamUpdated applies equality check predicate on the "steam_updated" field. It's identical to SteamUpdatedEQ.

func SteamUpdatedEQ

func SteamUpdatedEQ(v time.Time) predicate.Player

SteamUpdatedEQ applies the EQ predicate on the "steam_updated" field.

func SteamUpdatedGT

func SteamUpdatedGT(v time.Time) predicate.Player

SteamUpdatedGT applies the GT predicate on the "steam_updated" field.

func SteamUpdatedGTE

func SteamUpdatedGTE(v time.Time) predicate.Player

SteamUpdatedGTE applies the GTE predicate on the "steam_updated" field.

func SteamUpdatedIn

func SteamUpdatedIn(vs ...time.Time) predicate.Player

SteamUpdatedIn applies the In predicate on the "steam_updated" field.

func SteamUpdatedLT

func SteamUpdatedLT(v time.Time) predicate.Player

SteamUpdatedLT applies the LT predicate on the "steam_updated" field.

func SteamUpdatedLTE

func SteamUpdatedLTE(v time.Time) predicate.Player

SteamUpdatedLTE applies the LTE predicate on the "steam_updated" field.

func SteamUpdatedNEQ

func SteamUpdatedNEQ(v time.Time) predicate.Player

SteamUpdatedNEQ applies the NEQ predicate on the "steam_updated" field.

func SteamUpdatedNotIn

func SteamUpdatedNotIn(vs ...time.Time) predicate.Player

SteamUpdatedNotIn applies the NotIn predicate on the "steam_updated" field.

func Ties

func Ties(v int) predicate.Player

Ties applies equality check predicate on the "ties" field. It's identical to TiesEQ.

func TiesEQ

func TiesEQ(v int) predicate.Player

TiesEQ applies the EQ predicate on the "ties" field.

func TiesGT

func TiesGT(v int) predicate.Player

TiesGT applies the GT predicate on the "ties" field.

func TiesGTE

func TiesGTE(v int) predicate.Player

TiesGTE applies the GTE predicate on the "ties" field.

func TiesIn

func TiesIn(vs ...int) predicate.Player

TiesIn applies the In predicate on the "ties" field.

func TiesIsNil

func TiesIsNil() predicate.Player

TiesIsNil applies the IsNil predicate on the "ties" field.

func TiesLT

func TiesLT(v int) predicate.Player

TiesLT applies the LT predicate on the "ties" field.

func TiesLTE

func TiesLTE(v int) predicate.Player

TiesLTE applies the LTE predicate on the "ties" field.

func TiesNEQ

func TiesNEQ(v int) predicate.Player

TiesNEQ applies the NEQ predicate on the "ties" field.

func TiesNotIn

func TiesNotIn(vs ...int) predicate.Player

TiesNotIn applies the NotIn predicate on the "ties" field.

func TiesNotNil

func TiesNotNil() predicate.Player

TiesNotNil applies the NotNil predicate on the "ties" field.

func VacCount

func VacCount(v int) predicate.Player

VacCount applies equality check predicate on the "vac_count" field. It's identical to VacCountEQ.

func VacCountEQ

func VacCountEQ(v int) predicate.Player

VacCountEQ applies the EQ predicate on the "vac_count" field.

func VacCountGT

func VacCountGT(v int) predicate.Player

VacCountGT applies the GT predicate on the "vac_count" field.

func VacCountGTE

func VacCountGTE(v int) predicate.Player

VacCountGTE applies the GTE predicate on the "vac_count" field.

func VacCountIn

func VacCountIn(vs ...int) predicate.Player

VacCountIn applies the In predicate on the "vac_count" field.

func VacCountIsNil

func VacCountIsNil() predicate.Player

VacCountIsNil applies the IsNil predicate on the "vac_count" field.

func VacCountLT

func VacCountLT(v int) predicate.Player

VacCountLT applies the LT predicate on the "vac_count" field.

func VacCountLTE

func VacCountLTE(v int) predicate.Player

VacCountLTE applies the LTE predicate on the "vac_count" field.

func VacCountNEQ

func VacCountNEQ(v int) predicate.Player

VacCountNEQ applies the NEQ predicate on the "vac_count" field.

func VacCountNotIn

func VacCountNotIn(vs ...int) predicate.Player

VacCountNotIn applies the NotIn predicate on the "vac_count" field.

func VacCountNotNil

func VacCountNotNil() predicate.Player

VacCountNotNil applies the NotNil predicate on the "vac_count" field.

func VacDate

func VacDate(v time.Time) predicate.Player

VacDate applies equality check predicate on the "vac_date" field. It's identical to VacDateEQ.

func VacDateEQ

func VacDateEQ(v time.Time) predicate.Player

VacDateEQ applies the EQ predicate on the "vac_date" field.

func VacDateGT

func VacDateGT(v time.Time) predicate.Player

VacDateGT applies the GT predicate on the "vac_date" field.

func VacDateGTE

func VacDateGTE(v time.Time) predicate.Player

VacDateGTE applies the GTE predicate on the "vac_date" field.

func VacDateIn

func VacDateIn(vs ...time.Time) predicate.Player

VacDateIn applies the In predicate on the "vac_date" field.

func VacDateIsNil

func VacDateIsNil() predicate.Player

VacDateIsNil applies the IsNil predicate on the "vac_date" field.

func VacDateLT

func VacDateLT(v time.Time) predicate.Player

VacDateLT applies the LT predicate on the "vac_date" field.

func VacDateLTE

func VacDateLTE(v time.Time) predicate.Player

VacDateLTE applies the LTE predicate on the "vac_date" field.

func VacDateNEQ

func VacDateNEQ(v time.Time) predicate.Player

VacDateNEQ applies the NEQ predicate on the "vac_date" field.

func VacDateNotIn

func VacDateNotIn(vs ...time.Time) predicate.Player

VacDateNotIn applies the NotIn predicate on the "vac_date" field.

func VacDateNotNil

func VacDateNotNil() predicate.Player

VacDateNotNil applies the NotNil predicate on the "vac_date" field.

func ValidColumn

func ValidColumn(column string) bool

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

func VanityURL

func VanityURL(v string) predicate.Player

VanityURL applies equality check predicate on the "vanity_url" field. It's identical to VanityURLEQ.

func VanityURLContains

func VanityURLContains(v string) predicate.Player

VanityURLContains applies the Contains predicate on the "vanity_url" field.

func VanityURLContainsFold

func VanityURLContainsFold(v string) predicate.Player

VanityURLContainsFold applies the ContainsFold predicate on the "vanity_url" field.

func VanityURLEQ

func VanityURLEQ(v string) predicate.Player

VanityURLEQ applies the EQ predicate on the "vanity_url" field.

func VanityURLEqualFold

func VanityURLEqualFold(v string) predicate.Player

VanityURLEqualFold applies the EqualFold predicate on the "vanity_url" field.

func VanityURLGT

func VanityURLGT(v string) predicate.Player

VanityURLGT applies the GT predicate on the "vanity_url" field.

func VanityURLGTE

func VanityURLGTE(v string) predicate.Player

VanityURLGTE applies the GTE predicate on the "vanity_url" field.

func VanityURLHasPrefix

func VanityURLHasPrefix(v string) predicate.Player

VanityURLHasPrefix applies the HasPrefix predicate on the "vanity_url" field.

func VanityURLHasSuffix

func VanityURLHasSuffix(v string) predicate.Player

VanityURLHasSuffix applies the HasSuffix predicate on the "vanity_url" field.

func VanityURLIn

func VanityURLIn(vs ...string) predicate.Player

VanityURLIn applies the In predicate on the "vanity_url" field.

func VanityURLIsNil

func VanityURLIsNil() predicate.Player

VanityURLIsNil applies the IsNil predicate on the "vanity_url" field.

func VanityURLLT

func VanityURLLT(v string) predicate.Player

VanityURLLT applies the LT predicate on the "vanity_url" field.

func VanityURLLTE

func VanityURLLTE(v string) predicate.Player

VanityURLLTE applies the LTE predicate on the "vanity_url" field.

func VanityURLNEQ

func VanityURLNEQ(v string) predicate.Player

VanityURLNEQ applies the NEQ predicate on the "vanity_url" field.

func VanityURLNotIn

func VanityURLNotIn(vs ...string) predicate.Player

VanityURLNotIn applies the NotIn predicate on the "vanity_url" field.

func VanityURLNotNil

func VanityURLNotNil() predicate.Player

VanityURLNotNil applies the NotNil predicate on the "vanity_url" field.

func VanityURLReal

func VanityURLReal(v string) predicate.Player

VanityURLReal applies equality check predicate on the "vanity_url_real" field. It's identical to VanityURLRealEQ.

func VanityURLRealContains

func VanityURLRealContains(v string) predicate.Player

VanityURLRealContains applies the Contains predicate on the "vanity_url_real" field.

func VanityURLRealContainsFold

func VanityURLRealContainsFold(v string) predicate.Player

VanityURLRealContainsFold applies the ContainsFold predicate on the "vanity_url_real" field.

func VanityURLRealEQ

func VanityURLRealEQ(v string) predicate.Player

VanityURLRealEQ applies the EQ predicate on the "vanity_url_real" field.

func VanityURLRealEqualFold

func VanityURLRealEqualFold(v string) predicate.Player

VanityURLRealEqualFold applies the EqualFold predicate on the "vanity_url_real" field.

func VanityURLRealGT

func VanityURLRealGT(v string) predicate.Player

VanityURLRealGT applies the GT predicate on the "vanity_url_real" field.

func VanityURLRealGTE

func VanityURLRealGTE(v string) predicate.Player

VanityURLRealGTE applies the GTE predicate on the "vanity_url_real" field.

func VanityURLRealHasPrefix

func VanityURLRealHasPrefix(v string) predicate.Player

VanityURLRealHasPrefix applies the HasPrefix predicate on the "vanity_url_real" field.

func VanityURLRealHasSuffix

func VanityURLRealHasSuffix(v string) predicate.Player

VanityURLRealHasSuffix applies the HasSuffix predicate on the "vanity_url_real" field.

func VanityURLRealIn

func VanityURLRealIn(vs ...string) predicate.Player

VanityURLRealIn applies the In predicate on the "vanity_url_real" field.

func VanityURLRealIsNil

func VanityURLRealIsNil() predicate.Player

VanityURLRealIsNil applies the IsNil predicate on the "vanity_url_real" field.

func VanityURLRealLT

func VanityURLRealLT(v string) predicate.Player

VanityURLRealLT applies the LT predicate on the "vanity_url_real" field.

func VanityURLRealLTE

func VanityURLRealLTE(v string) predicate.Player

VanityURLRealLTE applies the LTE predicate on the "vanity_url_real" field.

func VanityURLRealNEQ

func VanityURLRealNEQ(v string) predicate.Player

VanityURLRealNEQ applies the NEQ predicate on the "vanity_url_real" field.

func VanityURLRealNotIn

func VanityURLRealNotIn(vs ...string) predicate.Player

VanityURLRealNotIn applies the NotIn predicate on the "vanity_url_real" field.

func VanityURLRealNotNil

func VanityURLRealNotNil() predicate.Player

VanityURLRealNotNil applies the NotNil predicate on the "vanity_url_real" field.

func Wins

func Wins(v int) predicate.Player

Wins applies equality check predicate on the "wins" field. It's identical to WinsEQ.

func WinsEQ

func WinsEQ(v int) predicate.Player

WinsEQ applies the EQ predicate on the "wins" field.

func WinsGT

func WinsGT(v int) predicate.Player

WinsGT applies the GT predicate on the "wins" field.

func WinsGTE

func WinsGTE(v int) predicate.Player

WinsGTE applies the GTE predicate on the "wins" field.

func WinsIn

func WinsIn(vs ...int) predicate.Player

WinsIn applies the In predicate on the "wins" field.

func WinsIsNil

func WinsIsNil() predicate.Player

WinsIsNil applies the IsNil predicate on the "wins" field.

func WinsLT

func WinsLT(v int) predicate.Player

WinsLT applies the LT predicate on the "wins" field.

func WinsLTE

func WinsLTE(v int) predicate.Player

WinsLTE applies the LTE predicate on the "wins" field.

func WinsNEQ

func WinsNEQ(v int) predicate.Player

WinsNEQ applies the NEQ predicate on the "wins" field.

func WinsNotIn

func WinsNotIn(vs ...int) predicate.Player

WinsNotIn applies the NotIn predicate on the "wins" field.

func WinsNotNil

func WinsNotNil() predicate.Player

WinsNotNil applies the NotNil predicate on the "wins" field.

Types

This section is empty.

Jump to

Keyboard shortcuts

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