mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-02 06:43:23 +08:00
- Introduced CodeSnippet schema with fields for snippet details and relationships to WorkspaceFile. - Enhanced WorkspaceFileUpdate and WorkspaceFileUpdateOne to manage snippets, including adding, removing, and clearing snippet relationships. - Updated Swagger documentation to include new API endpoints for CLI command execution and workspace file management. - Implemented domain structures for handling code files and AST parsing results. - Refactored Workspace and WorkspaceFile use cases to support new functionalities. - Adjusted CLI command execution to handle code file information in JSON format. - Improved error handling and logging throughout the workspace and file management processes.
627 lines
22 KiB
Go
627 lines
22 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package workspacefile
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"github.com/chaitin/MonkeyCode/backend/db/predicate"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLTE(FieldID, id))
|
|
}
|
|
|
|
// UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ.
|
|
func UserID(v uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldUserID, v))
|
|
}
|
|
|
|
// WorkspaceID applies equality check predicate on the "workspace_id" field. It's identical to WorkspaceIDEQ.
|
|
func WorkspaceID(v uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldWorkspaceID, v))
|
|
}
|
|
|
|
// Path applies equality check predicate on the "path" field. It's identical to PathEQ.
|
|
func Path(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldPath, v))
|
|
}
|
|
|
|
// Content applies equality check predicate on the "content" field. It's identical to ContentEQ.
|
|
func Content(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldContent, v))
|
|
}
|
|
|
|
// Hash applies equality check predicate on the "hash" field. It's identical to HashEQ.
|
|
func Hash(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldHash, v))
|
|
}
|
|
|
|
// Language applies equality check predicate on the "language" field. It's identical to LanguageEQ.
|
|
func Language(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldLanguage, v))
|
|
}
|
|
|
|
// Size applies equality check predicate on the "size" field. It's identical to SizeEQ.
|
|
func Size(v int64) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldSize, v))
|
|
}
|
|
|
|
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
|
|
func CreatedAt(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
|
|
func UpdatedAt(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UserIDEQ applies the EQ predicate on the "user_id" field.
|
|
func UserIDEQ(v uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldUserID, v))
|
|
}
|
|
|
|
// UserIDNEQ applies the NEQ predicate on the "user_id" field.
|
|
func UserIDNEQ(v uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNEQ(FieldUserID, v))
|
|
}
|
|
|
|
// UserIDIn applies the In predicate on the "user_id" field.
|
|
func UserIDIn(vs ...uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldIn(FieldUserID, vs...))
|
|
}
|
|
|
|
// UserIDNotIn applies the NotIn predicate on the "user_id" field.
|
|
func UserIDNotIn(vs ...uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNotIn(FieldUserID, vs...))
|
|
}
|
|
|
|
// WorkspaceIDEQ applies the EQ predicate on the "workspace_id" field.
|
|
func WorkspaceIDEQ(v uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldWorkspaceID, v))
|
|
}
|
|
|
|
// WorkspaceIDNEQ applies the NEQ predicate on the "workspace_id" field.
|
|
func WorkspaceIDNEQ(v uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNEQ(FieldWorkspaceID, v))
|
|
}
|
|
|
|
// WorkspaceIDIn applies the In predicate on the "workspace_id" field.
|
|
func WorkspaceIDIn(vs ...uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldIn(FieldWorkspaceID, vs...))
|
|
}
|
|
|
|
// WorkspaceIDNotIn applies the NotIn predicate on the "workspace_id" field.
|
|
func WorkspaceIDNotIn(vs ...uuid.UUID) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNotIn(FieldWorkspaceID, vs...))
|
|
}
|
|
|
|
// PathEQ applies the EQ predicate on the "path" field.
|
|
func PathEQ(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldPath, v))
|
|
}
|
|
|
|
// PathNEQ applies the NEQ predicate on the "path" field.
|
|
func PathNEQ(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNEQ(FieldPath, v))
|
|
}
|
|
|
|
// PathIn applies the In predicate on the "path" field.
|
|
func PathIn(vs ...string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldIn(FieldPath, vs...))
|
|
}
|
|
|
|
// PathNotIn applies the NotIn predicate on the "path" field.
|
|
func PathNotIn(vs ...string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNotIn(FieldPath, vs...))
|
|
}
|
|
|
|
// PathGT applies the GT predicate on the "path" field.
|
|
func PathGT(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGT(FieldPath, v))
|
|
}
|
|
|
|
// PathGTE applies the GTE predicate on the "path" field.
|
|
func PathGTE(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGTE(FieldPath, v))
|
|
}
|
|
|
|
// PathLT applies the LT predicate on the "path" field.
|
|
func PathLT(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLT(FieldPath, v))
|
|
}
|
|
|
|
// PathLTE applies the LTE predicate on the "path" field.
|
|
func PathLTE(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLTE(FieldPath, v))
|
|
}
|
|
|
|
// PathContains applies the Contains predicate on the "path" field.
|
|
func PathContains(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldContains(FieldPath, v))
|
|
}
|
|
|
|
// PathHasPrefix applies the HasPrefix predicate on the "path" field.
|
|
func PathHasPrefix(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldHasPrefix(FieldPath, v))
|
|
}
|
|
|
|
// PathHasSuffix applies the HasSuffix predicate on the "path" field.
|
|
func PathHasSuffix(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldHasSuffix(FieldPath, v))
|
|
}
|
|
|
|
// PathEqualFold applies the EqualFold predicate on the "path" field.
|
|
func PathEqualFold(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEqualFold(FieldPath, v))
|
|
}
|
|
|
|
// PathContainsFold applies the ContainsFold predicate on the "path" field.
|
|
func PathContainsFold(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldContainsFold(FieldPath, v))
|
|
}
|
|
|
|
// ContentEQ applies the EQ predicate on the "content" field.
|
|
func ContentEQ(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldContent, v))
|
|
}
|
|
|
|
// ContentNEQ applies the NEQ predicate on the "content" field.
|
|
func ContentNEQ(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNEQ(FieldContent, v))
|
|
}
|
|
|
|
// ContentIn applies the In predicate on the "content" field.
|
|
func ContentIn(vs ...string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldIn(FieldContent, vs...))
|
|
}
|
|
|
|
// ContentNotIn applies the NotIn predicate on the "content" field.
|
|
func ContentNotIn(vs ...string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNotIn(FieldContent, vs...))
|
|
}
|
|
|
|
// ContentGT applies the GT predicate on the "content" field.
|
|
func ContentGT(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGT(FieldContent, v))
|
|
}
|
|
|
|
// ContentGTE applies the GTE predicate on the "content" field.
|
|
func ContentGTE(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGTE(FieldContent, v))
|
|
}
|
|
|
|
// ContentLT applies the LT predicate on the "content" field.
|
|
func ContentLT(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLT(FieldContent, v))
|
|
}
|
|
|
|
// ContentLTE applies the LTE predicate on the "content" field.
|
|
func ContentLTE(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLTE(FieldContent, v))
|
|
}
|
|
|
|
// ContentContains applies the Contains predicate on the "content" field.
|
|
func ContentContains(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldContains(FieldContent, v))
|
|
}
|
|
|
|
// ContentHasPrefix applies the HasPrefix predicate on the "content" field.
|
|
func ContentHasPrefix(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldHasPrefix(FieldContent, v))
|
|
}
|
|
|
|
// ContentHasSuffix applies the HasSuffix predicate on the "content" field.
|
|
func ContentHasSuffix(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldHasSuffix(FieldContent, v))
|
|
}
|
|
|
|
// ContentIsNil applies the IsNil predicate on the "content" field.
|
|
func ContentIsNil() predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldIsNull(FieldContent))
|
|
}
|
|
|
|
// ContentNotNil applies the NotNil predicate on the "content" field.
|
|
func ContentNotNil() predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNotNull(FieldContent))
|
|
}
|
|
|
|
// ContentEqualFold applies the EqualFold predicate on the "content" field.
|
|
func ContentEqualFold(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEqualFold(FieldContent, v))
|
|
}
|
|
|
|
// ContentContainsFold applies the ContainsFold predicate on the "content" field.
|
|
func ContentContainsFold(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldContainsFold(FieldContent, v))
|
|
}
|
|
|
|
// HashEQ applies the EQ predicate on the "hash" field.
|
|
func HashEQ(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldHash, v))
|
|
}
|
|
|
|
// HashNEQ applies the NEQ predicate on the "hash" field.
|
|
func HashNEQ(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNEQ(FieldHash, v))
|
|
}
|
|
|
|
// HashIn applies the In predicate on the "hash" field.
|
|
func HashIn(vs ...string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldIn(FieldHash, vs...))
|
|
}
|
|
|
|
// HashNotIn applies the NotIn predicate on the "hash" field.
|
|
func HashNotIn(vs ...string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNotIn(FieldHash, vs...))
|
|
}
|
|
|
|
// HashGT applies the GT predicate on the "hash" field.
|
|
func HashGT(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGT(FieldHash, v))
|
|
}
|
|
|
|
// HashGTE applies the GTE predicate on the "hash" field.
|
|
func HashGTE(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGTE(FieldHash, v))
|
|
}
|
|
|
|
// HashLT applies the LT predicate on the "hash" field.
|
|
func HashLT(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLT(FieldHash, v))
|
|
}
|
|
|
|
// HashLTE applies the LTE predicate on the "hash" field.
|
|
func HashLTE(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLTE(FieldHash, v))
|
|
}
|
|
|
|
// HashContains applies the Contains predicate on the "hash" field.
|
|
func HashContains(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldContains(FieldHash, v))
|
|
}
|
|
|
|
// HashHasPrefix applies the HasPrefix predicate on the "hash" field.
|
|
func HashHasPrefix(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldHasPrefix(FieldHash, v))
|
|
}
|
|
|
|
// HashHasSuffix applies the HasSuffix predicate on the "hash" field.
|
|
func HashHasSuffix(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldHasSuffix(FieldHash, v))
|
|
}
|
|
|
|
// HashEqualFold applies the EqualFold predicate on the "hash" field.
|
|
func HashEqualFold(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEqualFold(FieldHash, v))
|
|
}
|
|
|
|
// HashContainsFold applies the ContainsFold predicate on the "hash" field.
|
|
func HashContainsFold(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldContainsFold(FieldHash, v))
|
|
}
|
|
|
|
// LanguageEQ applies the EQ predicate on the "language" field.
|
|
func LanguageEQ(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldLanguage, v))
|
|
}
|
|
|
|
// LanguageNEQ applies the NEQ predicate on the "language" field.
|
|
func LanguageNEQ(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNEQ(FieldLanguage, v))
|
|
}
|
|
|
|
// LanguageIn applies the In predicate on the "language" field.
|
|
func LanguageIn(vs ...string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldIn(FieldLanguage, vs...))
|
|
}
|
|
|
|
// LanguageNotIn applies the NotIn predicate on the "language" field.
|
|
func LanguageNotIn(vs ...string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNotIn(FieldLanguage, vs...))
|
|
}
|
|
|
|
// LanguageGT applies the GT predicate on the "language" field.
|
|
func LanguageGT(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGT(FieldLanguage, v))
|
|
}
|
|
|
|
// LanguageGTE applies the GTE predicate on the "language" field.
|
|
func LanguageGTE(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGTE(FieldLanguage, v))
|
|
}
|
|
|
|
// LanguageLT applies the LT predicate on the "language" field.
|
|
func LanguageLT(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLT(FieldLanguage, v))
|
|
}
|
|
|
|
// LanguageLTE applies the LTE predicate on the "language" field.
|
|
func LanguageLTE(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLTE(FieldLanguage, v))
|
|
}
|
|
|
|
// LanguageContains applies the Contains predicate on the "language" field.
|
|
func LanguageContains(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldContains(FieldLanguage, v))
|
|
}
|
|
|
|
// LanguageHasPrefix applies the HasPrefix predicate on the "language" field.
|
|
func LanguageHasPrefix(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldHasPrefix(FieldLanguage, v))
|
|
}
|
|
|
|
// LanguageHasSuffix applies the HasSuffix predicate on the "language" field.
|
|
func LanguageHasSuffix(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldHasSuffix(FieldLanguage, v))
|
|
}
|
|
|
|
// LanguageIsNil applies the IsNil predicate on the "language" field.
|
|
func LanguageIsNil() predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldIsNull(FieldLanguage))
|
|
}
|
|
|
|
// LanguageNotNil applies the NotNil predicate on the "language" field.
|
|
func LanguageNotNil() predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNotNull(FieldLanguage))
|
|
}
|
|
|
|
// LanguageEqualFold applies the EqualFold predicate on the "language" field.
|
|
func LanguageEqualFold(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEqualFold(FieldLanguage, v))
|
|
}
|
|
|
|
// LanguageContainsFold applies the ContainsFold predicate on the "language" field.
|
|
func LanguageContainsFold(v string) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldContainsFold(FieldLanguage, v))
|
|
}
|
|
|
|
// SizeEQ applies the EQ predicate on the "size" field.
|
|
func SizeEQ(v int64) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldSize, v))
|
|
}
|
|
|
|
// SizeNEQ applies the NEQ predicate on the "size" field.
|
|
func SizeNEQ(v int64) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNEQ(FieldSize, v))
|
|
}
|
|
|
|
// SizeIn applies the In predicate on the "size" field.
|
|
func SizeIn(vs ...int64) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldIn(FieldSize, vs...))
|
|
}
|
|
|
|
// SizeNotIn applies the NotIn predicate on the "size" field.
|
|
func SizeNotIn(vs ...int64) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNotIn(FieldSize, vs...))
|
|
}
|
|
|
|
// SizeGT applies the GT predicate on the "size" field.
|
|
func SizeGT(v int64) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGT(FieldSize, v))
|
|
}
|
|
|
|
// SizeGTE applies the GTE predicate on the "size" field.
|
|
func SizeGTE(v int64) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGTE(FieldSize, v))
|
|
}
|
|
|
|
// SizeLT applies the LT predicate on the "size" field.
|
|
func SizeLT(v int64) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLT(FieldSize, v))
|
|
}
|
|
|
|
// SizeLTE applies the LTE predicate on the "size" field.
|
|
func SizeLTE(v int64) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLTE(FieldSize, v))
|
|
}
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
|
func CreatedAtEQ(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
|
func CreatedAtNEQ(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
|
func CreatedAtIn(vs ...time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNotIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
|
func CreatedAtGT(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
|
func CreatedAtGTE(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
|
func CreatedAtLT(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
|
func CreatedAtLTE(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
|
func UpdatedAtEQ(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
|
func UpdatedAtNEQ(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
|
func UpdatedAtIn(vs ...time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
|
func UpdatedAtNotIn(vs ...time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldNotIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
|
func UpdatedAtGT(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
|
func UpdatedAtGTE(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldGTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
|
func UpdatedAtLT(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
|
func UpdatedAtLTE(v time.Time) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.FieldLTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// HasOwner applies the HasEdge predicate on the "owner" edge.
|
|
func HasOwner() predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, OwnerTable, OwnerColumn),
|
|
)
|
|
sqlgraph.HasNeighbors(s, step)
|
|
})
|
|
}
|
|
|
|
// HasOwnerWith applies the HasEdge predicate on the "owner" edge with a given conditions (other predicates).
|
|
func HasOwnerWith(preds ...predicate.User) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(func(s *sql.Selector) {
|
|
step := newOwnerStep()
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
for _, p := range preds {
|
|
p(s)
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
// HasWorkspace applies the HasEdge predicate on the "workspace" edge.
|
|
func HasWorkspace() predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, WorkspaceTable, WorkspaceColumn),
|
|
)
|
|
sqlgraph.HasNeighbors(s, step)
|
|
})
|
|
}
|
|
|
|
// HasWorkspaceWith applies the HasEdge predicate on the "workspace" edge with a given conditions (other predicates).
|
|
func HasWorkspaceWith(preds ...predicate.Workspace) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(func(s *sql.Selector) {
|
|
step := newWorkspaceStep()
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
for _, p := range preds {
|
|
p(s)
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
// HasSnippets applies the HasEdge predicate on the "snippets" edge.
|
|
func HasSnippets() predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.Edge(sqlgraph.O2M, false, SnippetsTable, SnippetsColumn),
|
|
)
|
|
sqlgraph.HasNeighbors(s, step)
|
|
})
|
|
}
|
|
|
|
// HasSnippetsWith applies the HasEdge predicate on the "snippets" edge with a given conditions (other predicates).
|
|
func HasSnippetsWith(preds ...predicate.CodeSnippet) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(func(s *sql.Selector) {
|
|
step := newSnippetsStep()
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
for _, p := range preds {
|
|
p(s)
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
// And groups predicates with the AND operator between them.
|
|
func And(predicates ...predicate.WorkspaceFile) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.AndPredicates(predicates...))
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.WorkspaceFile) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.OrPredicates(predicates...))
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.WorkspaceFile) predicate.WorkspaceFile {
|
|
return predicate.WorkspaceFile(sql.NotPredicates(p))
|
|
}
|