friendship

package
v0.5.0 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the friendship type in the database.
	Label = "friendship"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldUserID holds the string denoting the user_id field in the database.
	FieldUserID = "user_id"
	// FieldFriendID holds the string denoting the friend_id field in the database.
	FieldFriendID = "friend_id"
	// EdgeUser holds the string denoting the user edge name in mutations.
	EdgeUser = "user"
	// EdgeFriend holds the string denoting the friend edge name in mutations.
	EdgeFriend = "friend"
	// Table holds the table name of the friendship in the database.
	Table = "friendships"
	// UserTable is the table that holds the user relation/edge.
	UserTable = "friendships"
	// UserInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	UserInverseTable = "users"
	// UserColumn is the table column denoting the user relation/edge.
	UserColumn = "user_id"
	// FriendTable is the table that holds the friend relation/edge.
	FriendTable = "friendships"
	// FriendInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	FriendInverseTable = "users"
	// FriendColumn is the table column denoting the friend relation/edge.
	FriendColumn = "friend_id"
)

Variables

Columns holds all SQL columns for friendship fields.

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

Functions

func And

func And(predicates ...predicate.Friendship) predicate.Friendship

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.Friendship

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Friendship

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Friendship

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Friendship

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Friendship

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Friendship

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Friendship

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

func CreatedAtNotIn

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

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

func FriendID

func FriendID(v string) predicate.Friendship

FriendID applies equality check predicate on the "friend_id" field. It's identical to FriendIDEQ.

func FriendIDContains

func FriendIDContains(v string) predicate.Friendship

FriendIDContains applies the Contains predicate on the "friend_id" field.

func FriendIDContainsFold

func FriendIDContainsFold(v string) predicate.Friendship

FriendIDContainsFold applies the ContainsFold predicate on the "friend_id" field.

func FriendIDEQ

func FriendIDEQ(v string) predicate.Friendship

FriendIDEQ applies the EQ predicate on the "friend_id" field.

func FriendIDEqualFold

func FriendIDEqualFold(v string) predicate.Friendship

FriendIDEqualFold applies the EqualFold predicate on the "friend_id" field.

func FriendIDGT

func FriendIDGT(v string) predicate.Friendship

FriendIDGT applies the GT predicate on the "friend_id" field.

func FriendIDGTE

func FriendIDGTE(v string) predicate.Friendship

FriendIDGTE applies the GTE predicate on the "friend_id" field.

func FriendIDHasPrefix

func FriendIDHasPrefix(v string) predicate.Friendship

FriendIDHasPrefix applies the HasPrefix predicate on the "friend_id" field.

func FriendIDHasSuffix

func FriendIDHasSuffix(v string) predicate.Friendship

FriendIDHasSuffix applies the HasSuffix predicate on the "friend_id" field.

func FriendIDIn

func FriendIDIn(vs ...string) predicate.Friendship

FriendIDIn applies the In predicate on the "friend_id" field.

func FriendIDLT

func FriendIDLT(v string) predicate.Friendship

FriendIDLT applies the LT predicate on the "friend_id" field.

func FriendIDLTE

func FriendIDLTE(v string) predicate.Friendship

FriendIDLTE applies the LTE predicate on the "friend_id" field.

func FriendIDNEQ

func FriendIDNEQ(v string) predicate.Friendship

FriendIDNEQ applies the NEQ predicate on the "friend_id" field.

func FriendIDNotIn

func FriendIDNotIn(vs ...string) predicate.Friendship

FriendIDNotIn applies the NotIn predicate on the "friend_id" field.

func HasFriend

func HasFriend() predicate.Friendship

HasFriend applies the HasEdge predicate on the "friend" edge.

func HasFriendWith

func HasFriendWith(preds ...predicate.User) predicate.Friendship

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

func HasUser

func HasUser() predicate.Friendship

HasUser applies the HasEdge predicate on the "user" edge.

func HasUserWith

func HasUserWith(preds ...predicate.User) predicate.Friendship

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold added in v0.4.0

func IDContainsFold(id string) predicate.Friendship

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

func IDEQ(id string) predicate.Friendship

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold added in v0.4.0

func IDEqualFold(id string) predicate.Friendship

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

func IDGT(id string) predicate.Friendship

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.Friendship

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.Friendship

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.Friendship

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.Friendship

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Friendship) predicate.Friendship

Or groups predicates with the OR operator between them.

func UserID

func UserID(v string) predicate.Friendship

UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ.

func UserIDContains

func UserIDContains(v string) predicate.Friendship

UserIDContains applies the Contains predicate on the "user_id" field.

func UserIDContainsFold

func UserIDContainsFold(v string) predicate.Friendship

UserIDContainsFold applies the ContainsFold predicate on the "user_id" field.

func UserIDEQ

func UserIDEQ(v string) predicate.Friendship

UserIDEQ applies the EQ predicate on the "user_id" field.

func UserIDEqualFold

func UserIDEqualFold(v string) predicate.Friendship

UserIDEqualFold applies the EqualFold predicate on the "user_id" field.

func UserIDGT

func UserIDGT(v string) predicate.Friendship

UserIDGT applies the GT predicate on the "user_id" field.

func UserIDGTE

func UserIDGTE(v string) predicate.Friendship

UserIDGTE applies the GTE predicate on the "user_id" field.

func UserIDHasPrefix

func UserIDHasPrefix(v string) predicate.Friendship

UserIDHasPrefix applies the HasPrefix predicate on the "user_id" field.

func UserIDHasSuffix

func UserIDHasSuffix(v string) predicate.Friendship

UserIDHasSuffix applies the HasSuffix predicate on the "user_id" field.

func UserIDIn

func UserIDIn(vs ...string) predicate.Friendship

UserIDIn applies the In predicate on the "user_id" field.

func UserIDLT

func UserIDLT(v string) predicate.Friendship

UserIDLT applies the LT predicate on the "user_id" field.

func UserIDLTE

func UserIDLTE(v string) predicate.Friendship

UserIDLTE applies the LTE predicate on the "user_id" field.

func UserIDNEQ

func UserIDNEQ(v string) predicate.Friendship

UserIDNEQ applies the NEQ predicate on the "user_id" field.

func UserIDNotIn

func UserIDNotIn(vs ...string) predicate.Friendship

UserIDNotIn applies the NotIn predicate on the "user_id" field.

func ValidColumn

func ValidColumn(column string) bool

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

Types

type OrderOption added in v0.4.1

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the Friendship queries.

func ByCreatedAt added in v0.4.0

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

ByCreatedAt orders the results by the created_at field.

func ByFriendField added in v0.4.0

func ByFriendField(field string, opts ...sql.OrderTermOption) OrderOption

ByFriendField orders the results by friend field.

func ByFriendID added in v0.4.0

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

ByFriendID orders the results by the friend_id field.

func ByID added in v0.4.0

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

ByID orders the results by the id field.

func ByUserField added in v0.4.0

func ByUserField(field string, opts ...sql.OrderTermOption) OrderOption

ByUserField orders the results by user field.

func ByUserID added in v0.4.0

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

ByUserID orders the results by the user_id field.

Jump to

Keyboard shortcuts

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