mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
92 lines
2.7 KiB
Go
92 lines
2.7 KiB
Go
// Copyright 2019-present Facebook Inc. All rights reserved.
|
|
// This source code is licensed under the Apache 2.0 license found
|
|
// in the LICENSE file in the root directory of this source tree.
|
|
|
|
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package group
|
|
|
|
import (
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
)
|
|
|
|
const (
|
|
// Label holds the string label denoting the group type in the database.
|
|
Label = "group"
|
|
// 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"
|
|
// EdgeUsers holds the string denoting the users edge name in mutations.
|
|
EdgeUsers = "users"
|
|
// Table holds the table name of the group in the database.
|
|
Table = "groups"
|
|
// UsersTable is the table that holds the users relation/edge. The primary key declared below.
|
|
UsersTable = "group_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"
|
|
)
|
|
|
|
// Columns holds all SQL columns for group fields.
|
|
var Columns = []string{
|
|
FieldID,
|
|
FieldName,
|
|
}
|
|
|
|
var (
|
|
// UsersPrimaryKey and UsersColumn2 are the table columns denoting the
|
|
// primary key for the users relation (M2M).
|
|
UsersPrimaryKey = []string{"group_id", "user_id"}
|
|
)
|
|
|
|
// ValidColumn reports if the column name is valid (part of the table columns).
|
|
func ValidColumn(column string) bool {
|
|
for i := range Columns {
|
|
if column == Columns[i] {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
var (
|
|
// DefaultName holds the default value on creation for the "name" field.
|
|
DefaultName string
|
|
)
|
|
|
|
// OrderOption defines the ordering options for the Group queries.
|
|
type OrderOption func(*sql.Selector)
|
|
|
|
// ByID orders the results by the id field.
|
|
func ByID(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldID, opts...).ToFunc()
|
|
}
|
|
|
|
// ByName orders the results by the name field.
|
|
func ByName(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldName, opts...).ToFunc()
|
|
}
|
|
|
|
// ByUsersCount orders the results by users count.
|
|
func ByUsersCount(opts ...sql.OrderTermOption) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborsCount(s, newUsersStep(), opts...)
|
|
}
|
|
}
|
|
|
|
// ByUsers orders the results by users terms.
|
|
func ByUsers(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborTerms(s, newUsersStep(), append([]sql.OrderTerm{term}, terms...)...)
|
|
}
|
|
}
|
|
func newUsersStep() *sqlgraph.Step {
|
|
return sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(UsersInverseTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2M, false, UsersTable, UsersPrimaryKey...),
|
|
)
|
|
}
|