orgroleuser

package
v0.0.0-...-738d89c Latest Latest
Warning

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

Go to latest
Published: Aug 21, 2023 License: AGPL-3.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the orgroleuser type in the database.
	Label = "org_role_user"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldOrgRoleID holds the string denoting the org_role_id field in the database.
	FieldOrgRoleID = "org_role_id"
	// FieldOrgUserID holds the string denoting the org_user_id field in the database.
	FieldOrgUserID = "org_user_id"
	// FieldUserID holds the string denoting the user_id field in the database.
	FieldUserID = "user_id"
	// FieldOrgID holds the string denoting the org_id field in the database.
	FieldOrgID = "org_id"
	// EdgeOrgRole holds the string denoting the org_role edge name in mutations.
	EdgeOrgRole = "org_role"
	// EdgeOrgUser holds the string denoting the org_user edge name in mutations.
	EdgeOrgUser = "org_user"
	// Table holds the table name of the orgroleuser in the database.
	Table = "org_role_user"
	// OrgRoleTable is the table that holds the org_role relation/edge.
	OrgRoleTable = "org_role_user"
	// OrgRoleInverseTable is the table name for the OrgRole entity.
	// It exists in this package in order to avoid circular dependency with the "orgrole" package.
	OrgRoleInverseTable = "org_role"
	// OrgRoleColumn is the table column denoting the org_role relation/edge.
	OrgRoleColumn = "org_role_id"
	// OrgUserTable is the table that holds the org_user relation/edge.
	OrgUserTable = "org_role_user"
	// OrgUserInverseTable is the table name for the OrgUser entity.
	// It exists in this package in order to avoid circular dependency with the "orguser" package.
	OrgUserInverseTable = "org_user"
	// OrgUserColumn is the table column denoting the org_user relation/edge.
	OrgUserColumn = "org_user_id"
)

Variables

Columns holds all SQL columns for orgroleuser fields.

Functions

func And

func And(predicates ...predicate.OrgRoleUser) predicate.OrgRoleUser

And groups predicates with the AND operator between them.

func HasOrgRole

func HasOrgRole() predicate.OrgRoleUser

HasOrgRole applies the HasEdge predicate on the "org_role" edge.

func HasOrgRoleWith

func HasOrgRoleWith(preds ...predicate.OrgRole) predicate.OrgRoleUser

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

func HasOrgUser

func HasOrgUser() predicate.OrgRoleUser

HasOrgUser applies the HasEdge predicate on the "org_user" edge.

func HasOrgUserWith

func HasOrgUserWith(preds ...predicate.OrgUser) predicate.OrgRoleUser

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

func ID

func ID(id int) predicate.OrgRoleUser

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.OrgRoleUser

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.OrgRoleUser

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.OrgRoleUser

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.OrgRoleUser

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.OrgRoleUser

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.OrgRoleUser

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.OrgRoleUser

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.OrgRoleUser

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.OrgRoleUser) predicate.OrgRoleUser

Or groups predicates with the OR operator between them.

func OrgID

func OrgID(v int) predicate.OrgRoleUser

OrgID applies equality check predicate on the "org_id" field. It's identical to OrgIDEQ.

func OrgIDEQ

func OrgIDEQ(v int) predicate.OrgRoleUser

OrgIDEQ applies the EQ predicate on the "org_id" field.

func OrgIDGT

func OrgIDGT(v int) predicate.OrgRoleUser

OrgIDGT applies the GT predicate on the "org_id" field.

func OrgIDGTE

func OrgIDGTE(v int) predicate.OrgRoleUser

OrgIDGTE applies the GTE predicate on the "org_id" field.

func OrgIDIn

func OrgIDIn(vs ...int) predicate.OrgRoleUser

OrgIDIn applies the In predicate on the "org_id" field.

func OrgIDLT

func OrgIDLT(v int) predicate.OrgRoleUser

OrgIDLT applies the LT predicate on the "org_id" field.

func OrgIDLTE

func OrgIDLTE(v int) predicate.OrgRoleUser

OrgIDLTE applies the LTE predicate on the "org_id" field.

func OrgIDNEQ

func OrgIDNEQ(v int) predicate.OrgRoleUser

OrgIDNEQ applies the NEQ predicate on the "org_id" field.

func OrgIDNotIn

func OrgIDNotIn(vs ...int) predicate.OrgRoleUser

OrgIDNotIn applies the NotIn predicate on the "org_id" field.

func OrgRoleID

func OrgRoleID(v int) predicate.OrgRoleUser

OrgRoleID applies equality check predicate on the "org_role_id" field. It's identical to OrgRoleIDEQ.

func OrgRoleIDEQ

func OrgRoleIDEQ(v int) predicate.OrgRoleUser

OrgRoleIDEQ applies the EQ predicate on the "org_role_id" field.

func OrgRoleIDIn

func OrgRoleIDIn(vs ...int) predicate.OrgRoleUser

OrgRoleIDIn applies the In predicate on the "org_role_id" field.

func OrgRoleIDNEQ

func OrgRoleIDNEQ(v int) predicate.OrgRoleUser

OrgRoleIDNEQ applies the NEQ predicate on the "org_role_id" field.

func OrgRoleIDNotIn

func OrgRoleIDNotIn(vs ...int) predicate.OrgRoleUser

OrgRoleIDNotIn applies the NotIn predicate on the "org_role_id" field.

func OrgUserID

func OrgUserID(v int) predicate.OrgRoleUser

OrgUserID applies equality check predicate on the "org_user_id" field. It's identical to OrgUserIDEQ.

func OrgUserIDEQ

func OrgUserIDEQ(v int) predicate.OrgRoleUser

OrgUserIDEQ applies the EQ predicate on the "org_user_id" field.

func OrgUserIDIn

func OrgUserIDIn(vs ...int) predicate.OrgRoleUser

OrgUserIDIn applies the In predicate on the "org_user_id" field.

func OrgUserIDNEQ

func OrgUserIDNEQ(v int) predicate.OrgRoleUser

OrgUserIDNEQ applies the NEQ predicate on the "org_user_id" field.

func OrgUserIDNotIn

func OrgUserIDNotIn(vs ...int) predicate.OrgRoleUser

OrgUserIDNotIn applies the NotIn predicate on the "org_user_id" field.

func UserID

func UserID(v int) predicate.OrgRoleUser

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

func UserIDEQ

func UserIDEQ(v int) predicate.OrgRoleUser

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

func UserIDGT

func UserIDGT(v int) predicate.OrgRoleUser

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

func UserIDGTE

func UserIDGTE(v int) predicate.OrgRoleUser

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

func UserIDIn

func UserIDIn(vs ...int) predicate.OrgRoleUser

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

func UserIDLT

func UserIDLT(v int) predicate.OrgRoleUser

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

func UserIDLTE

func UserIDLTE(v int) predicate.OrgRoleUser

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

func UserIDNEQ

func UserIDNEQ(v int) predicate.OrgRoleUser

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

func UserIDNotIn

func UserIDNotIn(vs ...int) predicate.OrgRoleUser

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

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the OrgRoleUser queries.

func ByID

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

ByID orders the results by the id field.

func ByOrgID

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

ByOrgID orders the results by the org_id field.

func ByOrgRoleField

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

ByOrgRoleField orders the results by org_role field.

func ByOrgRoleID

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

ByOrgRoleID orders the results by the org_role_id field.

func ByOrgUserField

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

ByOrgUserField orders the results by org_user field.

func ByOrgUserID

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

ByOrgUserID orders the results by the org_user_id field.

func ByUserID

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