Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Organization) predicate.Organization
- func CreatedAt(v time.Time) predicate.Organization
- func CreatedAtEQ(v time.Time) predicate.Organization
- func CreatedAtGT(v time.Time) predicate.Organization
- func CreatedAtGTE(v time.Time) predicate.Organization
- func CreatedAtIn(vs ...time.Time) predicate.Organization
- func CreatedAtLT(v time.Time) predicate.Organization
- func CreatedAtLTE(v time.Time) predicate.Organization
- func CreatedAtNEQ(v time.Time) predicate.Organization
- func CreatedAtNotIn(vs ...time.Time) predicate.Organization
- func CreatedByID(v uuid.UUID) predicate.Organization
- func CreatedByIDEQ(v uuid.UUID) predicate.Organization
- func CreatedByIDIn(vs ...uuid.UUID) predicate.Organization
- func CreatedByIDNEQ(v uuid.UUID) predicate.Organization
- func CreatedByIDNotIn(vs ...uuid.UUID) predicate.Organization
- func DisplayName(v string) predicate.Organization
- func DisplayNameContains(v string) predicate.Organization
- func DisplayNameContainsFold(v string) predicate.Organization
- func DisplayNameEQ(v string) predicate.Organization
- func DisplayNameEqualFold(v string) predicate.Organization
- func DisplayNameGT(v string) predicate.Organization
- func DisplayNameGTE(v string) predicate.Organization
- func DisplayNameHasPrefix(v string) predicate.Organization
- func DisplayNameHasSuffix(v string) predicate.Organization
- func DisplayNameIn(vs ...string) predicate.Organization
- func DisplayNameLT(v string) predicate.Organization
- func DisplayNameLTE(v string) predicate.Organization
- func DisplayNameNEQ(v string) predicate.Organization
- func DisplayNameNotIn(vs ...string) predicate.Organization
- func HasCreator() predicate.Organization
- func HasCreatorWith(preds ...predicate.User) predicate.Organization
- func HasEditor() predicate.Organization
- func HasEditorWith(preds ...predicate.User) predicate.Organization
- func HasPlatforms() predicate.Organization
- func HasPlatformsWith(preds ...predicate.Platform) predicate.Organization
- func HasUsers() predicate.Organization
- func HasUsersWith(preds ...predicate.User) predicate.Organization
- func ID(id uuid.UUID) predicate.Organization
- func IDEQ(id uuid.UUID) predicate.Organization
- func IDGT(id uuid.UUID) predicate.Organization
- func IDGTE(id uuid.UUID) predicate.Organization
- func IDIn(ids ...uuid.UUID) predicate.Organization
- func IDLT(id uuid.UUID) predicate.Organization
- func IDLTE(id uuid.UUID) predicate.Organization
- func IDNEQ(id uuid.UUID) predicate.Organization
- func IDNotIn(ids ...uuid.UUID) predicate.Organization
- func Name(v string) predicate.Organization
- func NameContains(v string) predicate.Organization
- func NameContainsFold(v string) predicate.Organization
- func NameEQ(v string) predicate.Organization
- func NameEqualFold(v string) predicate.Organization
- func NameGT(v string) predicate.Organization
- func NameGTE(v string) predicate.Organization
- func NameHasPrefix(v string) predicate.Organization
- func NameHasSuffix(v string) predicate.Organization
- func NameIn(vs ...string) predicate.Organization
- func NameLT(v string) predicate.Organization
- func NameLTE(v string) predicate.Organization
- func NameNEQ(v string) predicate.Organization
- func NameNotIn(vs ...string) predicate.Organization
- func Not(p predicate.Organization) predicate.Organization
- func Or(predicates ...predicate.Organization) predicate.Organization
- func UpdatedAt(v time.Time) predicate.Organization
- func UpdatedAtEQ(v time.Time) predicate.Organization
- func UpdatedAtGT(v time.Time) predicate.Organization
- func UpdatedAtGTE(v time.Time) predicate.Organization
- func UpdatedAtIn(vs ...time.Time) predicate.Organization
- func UpdatedAtLT(v time.Time) predicate.Organization
- func UpdatedAtLTE(v time.Time) predicate.Organization
- func UpdatedAtNEQ(v time.Time) predicate.Organization
- func UpdatedAtNotIn(vs ...time.Time) predicate.Organization
- func UpdatedByID(v uuid.UUID) predicate.Organization
- func UpdatedByIDEQ(v uuid.UUID) predicate.Organization
- func UpdatedByIDIn(vs ...uuid.UUID) predicate.Organization
- func UpdatedByIDNEQ(v uuid.UUID) predicate.Organization
- func UpdatedByIDNotIn(vs ...uuid.UUID) predicate.Organization
- func ValidColumn(column string) bool
- type OrderOption
- func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
- func ByCreatedByID(opts ...sql.OrderTermOption) OrderOption
- func ByCreatorField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByDisplayName(opts ...sql.OrderTermOption) OrderOption
- func ByEditorField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByID(opts ...sql.OrderTermOption) OrderOption
- func ByName(opts ...sql.OrderTermOption) OrderOption
- func ByPlatforms(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByPlatformsCount(opts ...sql.OrderTermOption) OrderOption
- func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
- func ByUpdatedByID(opts ...sql.OrderTermOption) OrderOption
- func ByUsers(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByUsersCount(opts ...sql.OrderTermOption) OrderOption
Constants ¶
const ( // Label holds the string label denoting the organization type in the database. Label = "organization" // 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" // FieldUpdatedAt holds the string denoting the updated_at field in the database. FieldUpdatedAt = "updated_at" // FieldCreatedByID holds the string denoting the created_by_id field in the database. FieldCreatedByID = "created_by_id" // FieldUpdatedByID holds the string denoting the updated_by_id field in the database. FieldUpdatedByID = "updated_by_id" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldDisplayName holds the string denoting the display_name field in the database. FieldDisplayName = "display_name" // EdgeCreator holds the string denoting the creator edge name in mutations. EdgeCreator = "creator" // EdgeEditor holds the string denoting the editor edge name in mutations. EdgeEditor = "editor" // EdgeUsers holds the string denoting the users edge name in mutations. EdgeUsers = "users" // EdgePlatforms holds the string denoting the platforms edge name in mutations. EdgePlatforms = "platforms" // Table holds the table name of the organization in the database. Table = "organizations" // CreatorTable is the table that holds the creator relation/edge. CreatorTable = "organizations" // CreatorInverseTable is the table name for the User entity. // It exists in this package in order to avoid circular dependency with the "user" package. CreatorInverseTable = "users" // CreatorColumn is the table column denoting the creator relation/edge. CreatorColumn = "created_by_id" // EditorTable is the table that holds the editor relation/edge. EditorTable = "organizations" // EditorInverseTable is the table name for the User entity. // It exists in this package in order to avoid circular dependency with the "user" package. EditorInverseTable = "users" // EditorColumn is the table column denoting the editor relation/edge. EditorColumn = "updated_by_id" // UsersTable is the table that holds the users relation/edge. The primary key declared below. UsersTable = "organization_users" // UsersInverseTable is the table name for the User entity. // It exists in this package in order to avoid circular dependency with the "user" package. UsersInverseTable = "users" // PlatformsTable is the table that holds the platforms relation/edge. PlatformsTable = "platforms" // PlatformsInverseTable is the table name for the Platform entity. // It exists in this package in order to avoid circular dependency with the "platform" package. PlatformsInverseTable = "platforms" // PlatformsColumn is the table column denoting the platforms relation/edge. PlatformsColumn = "org_id" )
Variables ¶
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 // NameValidator is a validator for the "name" field. It is called by the builders before save. NameValidator func(string) error // DefaultID holds the default value on creation for the "id" field. DefaultID func() uuid.UUID )
var Columns = []string{ FieldID, FieldCreatedAt, FieldUpdatedAt, FieldCreatedByID, FieldUpdatedByID, FieldName, FieldDisplayName, }
Columns holds all SQL columns for organization fields.
var ( // UsersPrimaryKey and UsersColumn2 are the table columns denoting the // primary key for the users relation (M2M). UsersPrimaryKey = []string{"organization_id", "user_id"} )
Functions ¶
func And ¶
func And(predicates ...predicate.Organization) predicate.Organization
And groups predicates with the AND operator between them.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.Organization
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.Organization
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.Organization
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
func CreatedAtGTE(v time.Time) predicate.Organization
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
func CreatedAtIn(vs ...time.Time) predicate.Organization
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
func CreatedAtLT(v time.Time) predicate.Organization
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
func CreatedAtLTE(v time.Time) predicate.Organization
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
func CreatedAtNEQ(v time.Time) predicate.Organization
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
func CreatedAtNotIn(vs ...time.Time) predicate.Organization
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func CreatedByID ¶
func CreatedByID(v uuid.UUID) predicate.Organization
CreatedByID applies equality check predicate on the "created_by_id" field. It's identical to CreatedByIDEQ.
func CreatedByIDEQ ¶
func CreatedByIDEQ(v uuid.UUID) predicate.Organization
CreatedByIDEQ applies the EQ predicate on the "created_by_id" field.
func CreatedByIDIn ¶
func CreatedByIDIn(vs ...uuid.UUID) predicate.Organization
CreatedByIDIn applies the In predicate on the "created_by_id" field.
func CreatedByIDNEQ ¶
func CreatedByIDNEQ(v uuid.UUID) predicate.Organization
CreatedByIDNEQ applies the NEQ predicate on the "created_by_id" field.
func CreatedByIDNotIn ¶
func CreatedByIDNotIn(vs ...uuid.UUID) predicate.Organization
CreatedByIDNotIn applies the NotIn predicate on the "created_by_id" field.
func DisplayName ¶
func DisplayName(v string) predicate.Organization
DisplayName applies equality check predicate on the "display_name" field. It's identical to DisplayNameEQ.
func DisplayNameContains ¶
func DisplayNameContains(v string) predicate.Organization
DisplayNameContains applies the Contains predicate on the "display_name" field.
func DisplayNameContainsFold ¶
func DisplayNameContainsFold(v string) predicate.Organization
DisplayNameContainsFold applies the ContainsFold predicate on the "display_name" field.
func DisplayNameEQ ¶
func DisplayNameEQ(v string) predicate.Organization
DisplayNameEQ applies the EQ predicate on the "display_name" field.
func DisplayNameEqualFold ¶
func DisplayNameEqualFold(v string) predicate.Organization
DisplayNameEqualFold applies the EqualFold predicate on the "display_name" field.
func DisplayNameGT ¶
func DisplayNameGT(v string) predicate.Organization
DisplayNameGT applies the GT predicate on the "display_name" field.
func DisplayNameGTE ¶
func DisplayNameGTE(v string) predicate.Organization
DisplayNameGTE applies the GTE predicate on the "display_name" field.
func DisplayNameHasPrefix ¶
func DisplayNameHasPrefix(v string) predicate.Organization
DisplayNameHasPrefix applies the HasPrefix predicate on the "display_name" field.
func DisplayNameHasSuffix ¶
func DisplayNameHasSuffix(v string) predicate.Organization
DisplayNameHasSuffix applies the HasSuffix predicate on the "display_name" field.
func DisplayNameIn ¶
func DisplayNameIn(vs ...string) predicate.Organization
DisplayNameIn applies the In predicate on the "display_name" field.
func DisplayNameLT ¶
func DisplayNameLT(v string) predicate.Organization
DisplayNameLT applies the LT predicate on the "display_name" field.
func DisplayNameLTE ¶
func DisplayNameLTE(v string) predicate.Organization
DisplayNameLTE applies the LTE predicate on the "display_name" field.
func DisplayNameNEQ ¶
func DisplayNameNEQ(v string) predicate.Organization
DisplayNameNEQ applies the NEQ predicate on the "display_name" field.
func DisplayNameNotIn ¶
func DisplayNameNotIn(vs ...string) predicate.Organization
DisplayNameNotIn applies the NotIn predicate on the "display_name" field.
func HasCreator ¶
func HasCreator() predicate.Organization
HasCreator applies the HasEdge predicate on the "creator" edge.
func HasCreatorWith ¶
func HasCreatorWith(preds ...predicate.User) predicate.Organization
HasCreatorWith applies the HasEdge predicate on the "creator" edge with a given conditions (other predicates).
func HasEditor ¶
func HasEditor() predicate.Organization
HasEditor applies the HasEdge predicate on the "editor" edge.
func HasEditorWith ¶
func HasEditorWith(preds ...predicate.User) predicate.Organization
HasEditorWith applies the HasEdge predicate on the "editor" edge with a given conditions (other predicates).
func HasPlatforms ¶
func HasPlatforms() predicate.Organization
HasPlatforms applies the HasEdge predicate on the "platforms" edge.
func HasPlatformsWith ¶
func HasPlatformsWith(preds ...predicate.Platform) predicate.Organization
HasPlatformsWith applies the HasEdge predicate on the "platforms" edge with a given conditions (other predicates).
func HasUsers ¶
func HasUsers() predicate.Organization
HasUsers applies the HasEdge predicate on the "users" edge.
func HasUsersWith ¶
func HasUsersWith(preds ...predicate.User) predicate.Organization
HasUsersWith applies the HasEdge predicate on the "users" edge with a given conditions (other predicates).
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.Organization
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.Organization
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.Organization
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.Organization
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.Organization
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.Organization
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.Organization
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.Organization
IDNotIn applies the NotIn predicate on the ID field.
func Name ¶
func Name(v string) predicate.Organization
Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func NameContains ¶
func NameContains(v string) predicate.Organization
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
func NameContainsFold(v string) predicate.Organization
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEQ ¶
func NameEQ(v string) predicate.Organization
NameEQ applies the EQ predicate on the "name" field.
func NameEqualFold ¶
func NameEqualFold(v string) predicate.Organization
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameGT ¶
func NameGT(v string) predicate.Organization
NameGT applies the GT predicate on the "name" field.
func NameGTE ¶
func NameGTE(v string) predicate.Organization
NameGTE applies the GTE predicate on the "name" field.
func NameHasPrefix ¶
func NameHasPrefix(v string) predicate.Organization
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
func NameHasSuffix(v string) predicate.Organization
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameIn ¶
func NameIn(vs ...string) predicate.Organization
NameIn applies the In predicate on the "name" field.
func NameLT ¶
func NameLT(v string) predicate.Organization
NameLT applies the LT predicate on the "name" field.
func NameLTE ¶
func NameLTE(v string) predicate.Organization
NameLTE applies the LTE predicate on the "name" field.
func NameNEQ ¶
func NameNEQ(v string) predicate.Organization
NameNEQ applies the NEQ predicate on the "name" field.
func NameNotIn ¶
func NameNotIn(vs ...string) predicate.Organization
NameNotIn applies the NotIn predicate on the "name" field.
func Not ¶
func Not(p predicate.Organization) predicate.Organization
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.Organization) predicate.Organization
Or groups predicates with the OR operator between them.
func UpdatedAt ¶
func UpdatedAt(v time.Time) predicate.Organization
UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
func UpdatedAtEQ ¶
func UpdatedAtEQ(v time.Time) predicate.Organization
UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
func UpdatedAtGT ¶
func UpdatedAtGT(v time.Time) predicate.Organization
UpdatedAtGT applies the GT predicate on the "updated_at" field.
func UpdatedAtGTE ¶
func UpdatedAtGTE(v time.Time) predicate.Organization
UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
func UpdatedAtIn ¶
func UpdatedAtIn(vs ...time.Time) predicate.Organization
UpdatedAtIn applies the In predicate on the "updated_at" field.
func UpdatedAtLT ¶
func UpdatedAtLT(v time.Time) predicate.Organization
UpdatedAtLT applies the LT predicate on the "updated_at" field.
func UpdatedAtLTE ¶
func UpdatedAtLTE(v time.Time) predicate.Organization
UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
func UpdatedAtNEQ ¶
func UpdatedAtNEQ(v time.Time) predicate.Organization
UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
func UpdatedAtNotIn ¶
func UpdatedAtNotIn(vs ...time.Time) predicate.Organization
UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
func UpdatedByID ¶
func UpdatedByID(v uuid.UUID) predicate.Organization
UpdatedByID applies equality check predicate on the "updated_by_id" field. It's identical to UpdatedByIDEQ.
func UpdatedByIDEQ ¶
func UpdatedByIDEQ(v uuid.UUID) predicate.Organization
UpdatedByIDEQ applies the EQ predicate on the "updated_by_id" field.
func UpdatedByIDIn ¶
func UpdatedByIDIn(vs ...uuid.UUID) predicate.Organization
UpdatedByIDIn applies the In predicate on the "updated_by_id" field.
func UpdatedByIDNEQ ¶
func UpdatedByIDNEQ(v uuid.UUID) predicate.Organization
UpdatedByIDNEQ applies the NEQ predicate on the "updated_by_id" field.
func UpdatedByIDNotIn ¶
func UpdatedByIDNotIn(vs ...uuid.UUID) predicate.Organization
UpdatedByIDNotIn applies the NotIn predicate on the "updated_by_id" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the Organization queries.
func ByCreatedAt ¶
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
ByCreatedAt orders the results by the created_at field.
func ByCreatedByID ¶
func ByCreatedByID(opts ...sql.OrderTermOption) OrderOption
ByCreatedByID orders the results by the created_by_id field.
func ByCreatorField ¶
func ByCreatorField(field string, opts ...sql.OrderTermOption) OrderOption
ByCreatorField orders the results by creator field.
func ByDisplayName ¶
func ByDisplayName(opts ...sql.OrderTermOption) OrderOption
ByDisplayName orders the results by the display_name field.
func ByEditorField ¶
func ByEditorField(field string, opts ...sql.OrderTermOption) OrderOption
ByEditorField orders the results by editor field.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByName ¶
func ByName(opts ...sql.OrderTermOption) OrderOption
ByName orders the results by the name field.
func ByPlatforms ¶
func ByPlatforms(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByPlatforms orders the results by platforms terms.
func ByPlatformsCount ¶
func ByPlatformsCount(opts ...sql.OrderTermOption) OrderOption
ByPlatformsCount orders the results by platforms count.
func ByUpdatedAt ¶
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
ByUpdatedAt orders the results by the updated_at field.
func ByUpdatedByID ¶
func ByUpdatedByID(opts ...sql.OrderTermOption) OrderOption
ByUpdatedByID orders the results by the updated_by_id field.
func ByUsers ¶
func ByUsers(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByUsers orders the results by users terms.
func ByUsersCount ¶
func ByUsersCount(opts ...sql.OrderTermOption) OrderOption
ByUsersCount orders the results by users count.