Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.RoundStats) predicate.RoundStats
- func Bank(v uint) predicate.RoundStats
- func BankEQ(v uint) predicate.RoundStats
- func BankGT(v uint) predicate.RoundStats
- func BankGTE(v uint) predicate.RoundStats
- func BankIn(vs ...uint) predicate.RoundStats
- func BankLT(v uint) predicate.RoundStats
- func BankLTE(v uint) predicate.RoundStats
- func BankNEQ(v uint) predicate.RoundStats
- func BankNotIn(vs ...uint) predicate.RoundStats
- func Equipment(v uint) predicate.RoundStats
- func EquipmentEQ(v uint) predicate.RoundStats
- func EquipmentGT(v uint) predicate.RoundStats
- func EquipmentGTE(v uint) predicate.RoundStats
- func EquipmentIn(vs ...uint) predicate.RoundStats
- func EquipmentLT(v uint) predicate.RoundStats
- func EquipmentLTE(v uint) predicate.RoundStats
- func EquipmentNEQ(v uint) predicate.RoundStats
- func EquipmentNotIn(vs ...uint) predicate.RoundStats
- func HasMatchPlayer() predicate.RoundStats
- func HasMatchPlayerWith(preds ...predicate.MatchPlayer) predicate.RoundStats
- func ID(id int) predicate.RoundStats
- func IDEQ(id int) predicate.RoundStats
- func IDGT(id int) predicate.RoundStats
- func IDGTE(id int) predicate.RoundStats
- func IDIn(ids ...int) predicate.RoundStats
- func IDLT(id int) predicate.RoundStats
- func IDLTE(id int) predicate.RoundStats
- func IDNEQ(id int) predicate.RoundStats
- func IDNotIn(ids ...int) predicate.RoundStats
- func Not(p predicate.RoundStats) predicate.RoundStats
- func Or(predicates ...predicate.RoundStats) predicate.RoundStats
- func Round(v uint) predicate.RoundStats
- func RoundEQ(v uint) predicate.RoundStats
- func RoundGT(v uint) predicate.RoundStats
- func RoundGTE(v uint) predicate.RoundStats
- func RoundIn(vs ...uint) predicate.RoundStats
- func RoundLT(v uint) predicate.RoundStats
- func RoundLTE(v uint) predicate.RoundStats
- func RoundNEQ(v uint) predicate.RoundStats
- func RoundNotIn(vs ...uint) predicate.RoundStats
- func Spent(v uint) predicate.RoundStats
- func SpentEQ(v uint) predicate.RoundStats
- func SpentGT(v uint) predicate.RoundStats
- func SpentGTE(v uint) predicate.RoundStats
- func SpentIn(vs ...uint) predicate.RoundStats
- func SpentLT(v uint) predicate.RoundStats
- func SpentLTE(v uint) predicate.RoundStats
- func SpentNEQ(v uint) predicate.RoundStats
- func SpentNotIn(vs ...uint) predicate.RoundStats
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the roundstats type in the database. Label = "round_stats" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldRound holds the string denoting the round field in the database. FieldRound = "round" // FieldBank holds the string denoting the bank field in the database. FieldBank = "bank" // FieldEquipment holds the string denoting the equipment field in the database. FieldEquipment = "equipment" // FieldSpent holds the string denoting the spent field in the database. FieldSpent = "spent" // EdgeMatchPlayer holds the string denoting the match_player edge name in mutations. EdgeMatchPlayer = "match_player" // Table holds the table name of the roundstats in the database. Table = "round_stats" // MatchPlayerTable is the table that holds the match_player relation/edge. MatchPlayerTable = "round_stats" // MatchPlayerInverseTable is the table name for the MatchPlayer entity. // It exists in this package in order to avoid circular dependency with the "matchplayer" package. MatchPlayerInverseTable = "match_players" // MatchPlayerColumn is the table column denoting the match_player relation/edge. MatchPlayerColumn = "match_player_round_stats" )
Variables ¶
var Columns = []string{ FieldID, FieldRound, FieldBank, FieldEquipment, FieldSpent, }
Columns holds all SQL columns for roundstats fields.
var ForeignKeys = []string{
"match_player_round_stats",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "round_stats" table and are not defined as standalone fields in the schema.
Functions ¶
func And ¶
func And(predicates ...predicate.RoundStats) predicate.RoundStats
And groups predicates with the AND operator between them.
func Bank ¶
func Bank(v uint) predicate.RoundStats
Bank applies equality check predicate on the "bank" field. It's identical to BankEQ.
func BankEQ ¶
func BankEQ(v uint) predicate.RoundStats
BankEQ applies the EQ predicate on the "bank" field.
func BankGT ¶
func BankGT(v uint) predicate.RoundStats
BankGT applies the GT predicate on the "bank" field.
func BankGTE ¶
func BankGTE(v uint) predicate.RoundStats
BankGTE applies the GTE predicate on the "bank" field.
func BankIn ¶
func BankIn(vs ...uint) predicate.RoundStats
BankIn applies the In predicate on the "bank" field.
func BankLT ¶
func BankLT(v uint) predicate.RoundStats
BankLT applies the LT predicate on the "bank" field.
func BankLTE ¶
func BankLTE(v uint) predicate.RoundStats
BankLTE applies the LTE predicate on the "bank" field.
func BankNEQ ¶
func BankNEQ(v uint) predicate.RoundStats
BankNEQ applies the NEQ predicate on the "bank" field.
func BankNotIn ¶
func BankNotIn(vs ...uint) predicate.RoundStats
BankNotIn applies the NotIn predicate on the "bank" field.
func Equipment ¶
func Equipment(v uint) predicate.RoundStats
Equipment applies equality check predicate on the "equipment" field. It's identical to EquipmentEQ.
func EquipmentEQ ¶
func EquipmentEQ(v uint) predicate.RoundStats
EquipmentEQ applies the EQ predicate on the "equipment" field.
func EquipmentGT ¶
func EquipmentGT(v uint) predicate.RoundStats
EquipmentGT applies the GT predicate on the "equipment" field.
func EquipmentGTE ¶
func EquipmentGTE(v uint) predicate.RoundStats
EquipmentGTE applies the GTE predicate on the "equipment" field.
func EquipmentIn ¶
func EquipmentIn(vs ...uint) predicate.RoundStats
EquipmentIn applies the In predicate on the "equipment" field.
func EquipmentLT ¶
func EquipmentLT(v uint) predicate.RoundStats
EquipmentLT applies the LT predicate on the "equipment" field.
func EquipmentLTE ¶
func EquipmentLTE(v uint) predicate.RoundStats
EquipmentLTE applies the LTE predicate on the "equipment" field.
func EquipmentNEQ ¶
func EquipmentNEQ(v uint) predicate.RoundStats
EquipmentNEQ applies the NEQ predicate on the "equipment" field.
func EquipmentNotIn ¶
func EquipmentNotIn(vs ...uint) predicate.RoundStats
EquipmentNotIn applies the NotIn predicate on the "equipment" field.
func HasMatchPlayer ¶
func HasMatchPlayer() predicate.RoundStats
HasMatchPlayer applies the HasEdge predicate on the "match_player" edge.
func HasMatchPlayerWith ¶
func HasMatchPlayerWith(preds ...predicate.MatchPlayer) predicate.RoundStats
HasMatchPlayerWith applies the HasEdge predicate on the "match_player" edge with a given conditions (other predicates).
func IDGTE ¶
func IDGTE(id int) predicate.RoundStats
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.RoundStats
IDIn applies the In predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.RoundStats
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.RoundStats
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.RoundStats
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.RoundStats) predicate.RoundStats
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.RoundStats) predicate.RoundStats
Or groups predicates with the OR operator between them.
func Round ¶
func Round(v uint) predicate.RoundStats
Round applies equality check predicate on the "round" field. It's identical to RoundEQ.
func RoundEQ ¶
func RoundEQ(v uint) predicate.RoundStats
RoundEQ applies the EQ predicate on the "round" field.
func RoundGT ¶
func RoundGT(v uint) predicate.RoundStats
RoundGT applies the GT predicate on the "round" field.
func RoundGTE ¶
func RoundGTE(v uint) predicate.RoundStats
RoundGTE applies the GTE predicate on the "round" field.
func RoundIn ¶
func RoundIn(vs ...uint) predicate.RoundStats
RoundIn applies the In predicate on the "round" field.
func RoundLT ¶
func RoundLT(v uint) predicate.RoundStats
RoundLT applies the LT predicate on the "round" field.
func RoundLTE ¶
func RoundLTE(v uint) predicate.RoundStats
RoundLTE applies the LTE predicate on the "round" field.
func RoundNEQ ¶
func RoundNEQ(v uint) predicate.RoundStats
RoundNEQ applies the NEQ predicate on the "round" field.
func RoundNotIn ¶
func RoundNotIn(vs ...uint) predicate.RoundStats
RoundNotIn applies the NotIn predicate on the "round" field.
func Spent ¶
func Spent(v uint) predicate.RoundStats
Spent applies equality check predicate on the "spent" field. It's identical to SpentEQ.
func SpentEQ ¶
func SpentEQ(v uint) predicate.RoundStats
SpentEQ applies the EQ predicate on the "spent" field.
func SpentGT ¶
func SpentGT(v uint) predicate.RoundStats
SpentGT applies the GT predicate on the "spent" field.
func SpentGTE ¶
func SpentGTE(v uint) predicate.RoundStats
SpentGTE applies the GTE predicate on the "spent" field.
func SpentIn ¶
func SpentIn(vs ...uint) predicate.RoundStats
SpentIn applies the In predicate on the "spent" field.
func SpentLT ¶
func SpentLT(v uint) predicate.RoundStats
SpentLT applies the LT predicate on the "spent" field.
func SpentLTE ¶
func SpentLTE(v uint) predicate.RoundStats
SpentLTE applies the LTE predicate on the "spent" field.
func SpentNEQ ¶
func SpentNEQ(v uint) predicate.RoundStats
SpentNEQ applies the NEQ predicate on the "spent" field.
func SpentNotIn ¶
func SpentNotIn(vs ...uint) predicate.RoundStats
SpentNotIn applies the NotIn predicate on the "spent" field.
Types ¶
This section is empty.