guild

package
v0.0.0-...-320a802 Latest Latest
Warning

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

Go to latest
Published: Mar 11, 2024 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the guild type in the database.
	Label = "guild"
	// 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"
	// FieldPlayerChannelID holds the string denoting the player_channel_id field in the database.
	FieldPlayerChannelID = "player_channel_id"
	// FieldPlayerMessageID holds the string denoting the player_message_id field in the database.
	FieldPlayerMessageID = "player_message_id"
	// 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"
	// Table holds the table name of the guild in the database.
	Table = "guilds"
)

Variables

View Source
var (
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() time.Time
	// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
	UpdateDefaultUpdatedAt func() time.Time
)

Columns holds all SQL columns for guild fields.

Functions

func And

func And(predicates ...predicate.Guild) predicate.Guild

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.Guild

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Guild

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Guild

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Guild

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Guild

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Guild

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Guild

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

func CreatedAtNotIn

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

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

func ID

func ID(id snowflake.ID) predicate.Guild

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id snowflake.ID) predicate.Guild

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id snowflake.ID) predicate.Guild

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id snowflake.ID) predicate.Guild

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...snowflake.ID) predicate.Guild

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id snowflake.ID) predicate.Guild

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id snowflake.ID) predicate.Guild

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id snowflake.ID) predicate.Guild

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...snowflake.ID) predicate.Guild

IDNotIn applies the NotIn predicate on the ID field.

func Name

func Name(v string) predicate.Guild

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

func NameContains

func NameContains(v string) predicate.Guild

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

func NameContainsFold

func NameContainsFold(v string) predicate.Guild

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

func NameEQ

func NameEQ(v string) predicate.Guild

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

func NameEqualFold

func NameEqualFold(v string) predicate.Guild

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

func NameGT

func NameGT(v string) predicate.Guild

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

func NameGTE

func NameGTE(v string) predicate.Guild

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.Guild

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.Guild

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.Guild

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

func NameLTE

func NameLTE(v string) predicate.Guild

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

func NameNEQ

func NameNEQ(v string) predicate.Guild

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

func NameNotIn

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

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

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Guild) predicate.Guild

Or groups predicates with the OR operator between them.

func PlayerChannelID

func PlayerChannelID(v snowflake.ID) predicate.Guild

PlayerChannelID applies equality check predicate on the "player_channel_id" field. It's identical to PlayerChannelIDEQ.

func PlayerChannelIDEQ

func PlayerChannelIDEQ(v snowflake.ID) predicate.Guild

PlayerChannelIDEQ applies the EQ predicate on the "player_channel_id" field.

func PlayerChannelIDGT

func PlayerChannelIDGT(v snowflake.ID) predicate.Guild

PlayerChannelIDGT applies the GT predicate on the "player_channel_id" field.

func PlayerChannelIDGTE

func PlayerChannelIDGTE(v snowflake.ID) predicate.Guild

PlayerChannelIDGTE applies the GTE predicate on the "player_channel_id" field.

func PlayerChannelIDIn

func PlayerChannelIDIn(vs ...snowflake.ID) predicate.Guild

PlayerChannelIDIn applies the In predicate on the "player_channel_id" field.

func PlayerChannelIDIsNil

func PlayerChannelIDIsNil() predicate.Guild

PlayerChannelIDIsNil applies the IsNil predicate on the "player_channel_id" field.

func PlayerChannelIDLT

func PlayerChannelIDLT(v snowflake.ID) predicate.Guild

PlayerChannelIDLT applies the LT predicate on the "player_channel_id" field.

func PlayerChannelIDLTE

func PlayerChannelIDLTE(v snowflake.ID) predicate.Guild

PlayerChannelIDLTE applies the LTE predicate on the "player_channel_id" field.

func PlayerChannelIDNEQ

func PlayerChannelIDNEQ(v snowflake.ID) predicate.Guild

PlayerChannelIDNEQ applies the NEQ predicate on the "player_channel_id" field.

func PlayerChannelIDNotIn

func PlayerChannelIDNotIn(vs ...snowflake.ID) predicate.Guild

PlayerChannelIDNotIn applies the NotIn predicate on the "player_channel_id" field.

func PlayerChannelIDNotNil

func PlayerChannelIDNotNil() predicate.Guild

PlayerChannelIDNotNil applies the NotNil predicate on the "player_channel_id" field.

func PlayerMessageID

func PlayerMessageID(v snowflake.ID) predicate.Guild

PlayerMessageID applies equality check predicate on the "player_message_id" field. It's identical to PlayerMessageIDEQ.

func PlayerMessageIDEQ

func PlayerMessageIDEQ(v snowflake.ID) predicate.Guild

PlayerMessageIDEQ applies the EQ predicate on the "player_message_id" field.

func PlayerMessageIDGT

func PlayerMessageIDGT(v snowflake.ID) predicate.Guild

PlayerMessageIDGT applies the GT predicate on the "player_message_id" field.

func PlayerMessageIDGTE

func PlayerMessageIDGTE(v snowflake.ID) predicate.Guild

PlayerMessageIDGTE applies the GTE predicate on the "player_message_id" field.

func PlayerMessageIDIn

func PlayerMessageIDIn(vs ...snowflake.ID) predicate.Guild

PlayerMessageIDIn applies the In predicate on the "player_message_id" field.

func PlayerMessageIDIsNil

func PlayerMessageIDIsNil() predicate.Guild

PlayerMessageIDIsNil applies the IsNil predicate on the "player_message_id" field.

func PlayerMessageIDLT

func PlayerMessageIDLT(v snowflake.ID) predicate.Guild

PlayerMessageIDLT applies the LT predicate on the "player_message_id" field.

func PlayerMessageIDLTE

func PlayerMessageIDLTE(v snowflake.ID) predicate.Guild

PlayerMessageIDLTE applies the LTE predicate on the "player_message_id" field.

func PlayerMessageIDNEQ

func PlayerMessageIDNEQ(v snowflake.ID) predicate.Guild

PlayerMessageIDNEQ applies the NEQ predicate on the "player_message_id" field.

func PlayerMessageIDNotIn

func PlayerMessageIDNotIn(vs ...snowflake.ID) predicate.Guild

PlayerMessageIDNotIn applies the NotIn predicate on the "player_message_id" field.

func PlayerMessageIDNotNil

func PlayerMessageIDNotNil() predicate.Guild

PlayerMessageIDNotNil applies the NotNil predicate on the "player_message_id" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Guild

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Guild

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Guild

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Guild

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Guild

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Guild

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Guild

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

func UpdatedAtNotIn

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

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

This section is empty.

Jump to

Keyboard shortcuts

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