evidence

package
v1.11.21 Latest Latest
Warning

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

Go to latest
Published: Mar 11, 2026 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the evidence type in the database.
	Label = "evidence"
	// 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"
	// FieldCreatedBy holds the string denoting the created_by field in the database.
	FieldCreatedBy = "created_by"
	// FieldUpdatedBy holds the string denoting the updated_by field in the database.
	FieldUpdatedBy = "updated_by"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// FieldDeletedBy holds the string denoting the deleted_by field in the database.
	FieldDeletedBy = "deleted_by"
	// FieldDisplayID holds the string denoting the display_id field in the database.
	FieldDisplayID = "display_id"
	// FieldTags holds the string denoting the tags field in the database.
	FieldTags = "tags"
	// FieldOwnerID holds the string denoting the owner_id field in the database.
	FieldOwnerID = "owner_id"
	// FieldEnvironmentName holds the string denoting the environment_name field in the database.
	FieldEnvironmentName = "environment_name"
	// FieldEnvironmentID holds the string denoting the environment_id field in the database.
	FieldEnvironmentID = "environment_id"
	// FieldScopeName holds the string denoting the scope_name field in the database.
	FieldScopeName = "scope_name"
	// FieldScopeID holds the string denoting the scope_id field in the database.
	FieldScopeID = "scope_id"
	// FieldWorkflowEligibleMarker holds the string denoting the workflow_eligible_marker field in the database.
	FieldWorkflowEligibleMarker = "workflow_eligible_marker"
	// FieldExternalUUID holds the string denoting the external_uuid field in the database.
	FieldExternalUUID = "external_uuid"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldCollectionProcedure holds the string denoting the collection_procedure field in the database.
	FieldCollectionProcedure = "collection_procedure"
	// FieldCreationDate holds the string denoting the creation_date field in the database.
	FieldCreationDate = "creation_date"
	// FieldRenewalDate holds the string denoting the renewal_date field in the database.
	FieldRenewalDate = "renewal_date"
	// FieldSource holds the string denoting the source field in the database.
	FieldSource = "source"
	// FieldIsAutomated holds the string denoting the is_automated field in the database.
	FieldIsAutomated = "is_automated"
	// FieldURL holds the string denoting the url field in the database.
	FieldURL = "url"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// EdgeOwner holds the string denoting the owner edge name in mutations.
	EdgeOwner = "owner"
	// EdgeEnvironment holds the string denoting the environment edge name in mutations.
	EdgeEnvironment = "environment"
	// EdgeScope holds the string denoting the scope edge name in mutations.
	EdgeScope = "scope"
	// EdgeControls holds the string denoting the controls edge name in mutations.
	EdgeControls = "controls"
	// EdgeSubcontrols holds the string denoting the subcontrols edge name in mutations.
	EdgeSubcontrols = "subcontrols"
	// EdgeControlObjectives holds the string denoting the control_objectives edge name in mutations.
	EdgeControlObjectives = "control_objectives"
	// EdgeControlImplementations holds the string denoting the control_implementations edge name in mutations.
	EdgeControlImplementations = "control_implementations"
	// EdgeFiles holds the string denoting the files edge name in mutations.
	EdgeFiles = "files"
	// EdgePrograms holds the string denoting the programs edge name in mutations.
	EdgePrograms = "programs"
	// EdgeTasks holds the string denoting the tasks edge name in mutations.
	EdgeTasks = "tasks"
	// EdgePlatforms holds the string denoting the platforms edge name in mutations.
	EdgePlatforms = "platforms"
	// EdgeScans holds the string denoting the scans edge name in mutations.
	EdgeScans = "scans"
	// EdgeComments holds the string denoting the comments edge name in mutations.
	EdgeComments = "comments"
	// EdgeWorkflowObjectRefs holds the string denoting the workflow_object_refs edge name in mutations.
	EdgeWorkflowObjectRefs = "workflow_object_refs"
	// Table holds the table name of the evidence in the database.
	Table = "evidences"
	// OwnerTable is the table that holds the owner relation/edge.
	OwnerTable = "evidences"
	// OwnerInverseTable is the table name for the Organization entity.
	// It exists in this package in order to avoid circular dependency with the "organization" package.
	OwnerInverseTable = "organizations"
	// OwnerColumn is the table column denoting the owner relation/edge.
	OwnerColumn = "owner_id"
	// EnvironmentTable is the table that holds the environment relation/edge.
	EnvironmentTable = "evidences"
	// EnvironmentInverseTable is the table name for the CustomTypeEnum entity.
	// It exists in this package in order to avoid circular dependency with the "customtypeenum" package.
	EnvironmentInverseTable = "custom_type_enums"
	// EnvironmentColumn is the table column denoting the environment relation/edge.
	EnvironmentColumn = "environment_id"
	// ScopeTable is the table that holds the scope relation/edge.
	ScopeTable = "evidences"
	// ScopeInverseTable is the table name for the CustomTypeEnum entity.
	// It exists in this package in order to avoid circular dependency with the "customtypeenum" package.
	ScopeInverseTable = "custom_type_enums"
	// ScopeColumn is the table column denoting the scope relation/edge.
	ScopeColumn = "scope_id"
	// ControlsTable is the table that holds the controls relation/edge. The primary key declared below.
	ControlsTable = "evidence_controls"
	// ControlsInverseTable is the table name for the Control entity.
	// It exists in this package in order to avoid circular dependency with the "control" package.
	ControlsInverseTable = "controls"
	// SubcontrolsTable is the table that holds the subcontrols relation/edge. The primary key declared below.
	SubcontrolsTable = "evidence_subcontrols"
	// SubcontrolsInverseTable is the table name for the Subcontrol entity.
	// It exists in this package in order to avoid circular dependency with the "subcontrol" package.
	SubcontrolsInverseTable = "subcontrols"
	// ControlObjectivesTable is the table that holds the control_objectives relation/edge. The primary key declared below.
	ControlObjectivesTable = "evidence_control_objectives"
	// ControlObjectivesInverseTable is the table name for the ControlObjective entity.
	// It exists in this package in order to avoid circular dependency with the "controlobjective" package.
	ControlObjectivesInverseTable = "control_objectives"
	// ControlImplementationsTable is the table that holds the control_implementations relation/edge.
	ControlImplementationsTable = "control_implementations"
	// ControlImplementationsInverseTable is the table name for the ControlImplementation entity.
	// It exists in this package in order to avoid circular dependency with the "controlimplementation" package.
	ControlImplementationsInverseTable = "control_implementations"
	// ControlImplementationsColumn is the table column denoting the control_implementations relation/edge.
	ControlImplementationsColumn = "evidence_control_implementations"
	// FilesTable is the table that holds the files relation/edge. The primary key declared below.
	FilesTable = "evidence_files"
	// FilesInverseTable is the table name for the File entity.
	// It exists in this package in order to avoid circular dependency with the "file" package.
	FilesInverseTable = "files"
	// ProgramsTable is the table that holds the programs relation/edge. The primary key declared below.
	ProgramsTable = "program_evidence"
	// ProgramsInverseTable is the table name for the Program entity.
	// It exists in this package in order to avoid circular dependency with the "program" package.
	ProgramsInverseTable = "programs"
	// TasksTable is the table that holds the tasks relation/edge. The primary key declared below.
	TasksTable = "task_evidence"
	// TasksInverseTable is the table name for the Task entity.
	// It exists in this package in order to avoid circular dependency with the "task" package.
	TasksInverseTable = "tasks"
	// PlatformsTable is the table that holds the platforms relation/edge. The primary key declared below.
	PlatformsTable = "platform_evidence"
	// 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"
	// ScansTable is the table that holds the scans relation/edge. The primary key declared below.
	ScansTable = "scan_evidence"
	// ScansInverseTable is the table name for the Scan entity.
	// It exists in this package in order to avoid circular dependency with the "scan" package.
	ScansInverseTable = "scans"
	// CommentsTable is the table that holds the comments relation/edge.
	CommentsTable = "notes"
	// CommentsInverseTable is the table name for the Note entity.
	// It exists in this package in order to avoid circular dependency with the "note" package.
	CommentsInverseTable = "notes"
	// CommentsColumn is the table column denoting the comments relation/edge.
	CommentsColumn = "evidence_comments"
	// WorkflowObjectRefsTable is the table that holds the workflow_object_refs relation/edge.
	WorkflowObjectRefsTable = "workflow_object_refs"
	// WorkflowObjectRefsInverseTable is the table name for the WorkflowObjectRef entity.
	// It exists in this package in order to avoid circular dependency with the "workflowobjectref" package.
	WorkflowObjectRefsInverseTable = "workflow_object_refs"
	// WorkflowObjectRefsColumn is the table column denoting the workflow_object_refs relation/edge.
	WorkflowObjectRefsColumn = "evidence_id"
)

Variables

View Source
var (
	// ControlsPrimaryKey and ControlsColumn2 are the table columns denoting the
	// primary key for the controls relation (M2M).
	ControlsPrimaryKey = []string{"evidence_id", "control_id"}
	// SubcontrolsPrimaryKey and SubcontrolsColumn2 are the table columns denoting the
	// primary key for the subcontrols relation (M2M).
	SubcontrolsPrimaryKey = []string{"evidence_id", "subcontrol_id"}
	// ControlObjectivesPrimaryKey and ControlObjectivesColumn2 are the table columns denoting the
	// primary key for the control_objectives relation (M2M).
	ControlObjectivesPrimaryKey = []string{"evidence_id", "control_objective_id"}
	// FilesPrimaryKey and FilesColumn2 are the table columns denoting the
	// primary key for the files relation (M2M).
	FilesPrimaryKey = []string{"evidence_id", "file_id"}
	// ProgramsPrimaryKey and ProgramsColumn2 are the table columns denoting the
	// primary key for the programs relation (M2M).
	ProgramsPrimaryKey = []string{"program_id", "evidence_id"}
	// TasksPrimaryKey and TasksColumn2 are the table columns denoting the
	// primary key for the tasks relation (M2M).
	TasksPrimaryKey = []string{"task_id", "evidence_id"}
	// PlatformsPrimaryKey and PlatformsColumn2 are the table columns denoting the
	// primary key for the platforms relation (M2M).
	PlatformsPrimaryKey = []string{"platform_id", "evidence_id"}
	// ScansPrimaryKey and ScansColumn2 are the table columns denoting the
	// primary key for the scans relation (M2M).
	ScansPrimaryKey = []string{"scan_id", "evidence_id"}
)
View Source
var (
	Hooks        [12]ent.Hook
	Interceptors [3]ent.Interceptor
	Policy       ent.Policy
	// 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
	// DisplayIDValidator is a validator for the "display_id" field. It is called by the builders before save.
	DisplayIDValidator func(string) error
	// DefaultTags holds the default value on creation for the "tags" field.
	DefaultTags []string
	// OwnerIDValidator is a validator for the "owner_id" field. It is called by the builders before save.
	OwnerIDValidator func(string) error
	// DefaultWorkflowEligibleMarker holds the default value on creation for the "workflow_eligible_marker" field.
	DefaultWorkflowEligibleMarker bool
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// DefaultCreationDate holds the default value on creation for the "creation_date" field.
	DefaultCreationDate func() time.Time
	// DefaultRenewalDate holds the default value on creation for the "renewal_date" field.
	DefaultRenewalDate time.Time
	// DefaultIsAutomated holds the default value on creation for the "is_automated" field.
	DefaultIsAutomated bool
	// URLValidator is a validator for the "url" field. It is called by the builders before save.
	URLValidator func(string) error
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() string
)

Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:

import _ "github.com/theopenlane/core/internal/ent/generated/runtime"

Columns holds all SQL columns for evidence fields.

Functions

func And

func And(predicates ...predicate.Evidence) predicate.Evidence

And groups predicates with the AND operator between them.

func CollectionProcedure

func CollectionProcedure(v string) predicate.Evidence

CollectionProcedure applies equality check predicate on the "collection_procedure" field. It's identical to CollectionProcedureEQ.

func CollectionProcedureContains

func CollectionProcedureContains(v string) predicate.Evidence

CollectionProcedureContains applies the Contains predicate on the "collection_procedure" field.

func CollectionProcedureContainsFold

func CollectionProcedureContainsFold(v string) predicate.Evidence

CollectionProcedureContainsFold applies the ContainsFold predicate on the "collection_procedure" field.

func CollectionProcedureEQ

func CollectionProcedureEQ(v string) predicate.Evidence

CollectionProcedureEQ applies the EQ predicate on the "collection_procedure" field.

func CollectionProcedureEqualFold

func CollectionProcedureEqualFold(v string) predicate.Evidence

CollectionProcedureEqualFold applies the EqualFold predicate on the "collection_procedure" field.

func CollectionProcedureGT

func CollectionProcedureGT(v string) predicate.Evidence

CollectionProcedureGT applies the GT predicate on the "collection_procedure" field.

func CollectionProcedureGTE

func CollectionProcedureGTE(v string) predicate.Evidence

CollectionProcedureGTE applies the GTE predicate on the "collection_procedure" field.

func CollectionProcedureHasPrefix

func CollectionProcedureHasPrefix(v string) predicate.Evidence

CollectionProcedureHasPrefix applies the HasPrefix predicate on the "collection_procedure" field.

func CollectionProcedureHasSuffix

func CollectionProcedureHasSuffix(v string) predicate.Evidence

CollectionProcedureHasSuffix applies the HasSuffix predicate on the "collection_procedure" field.

func CollectionProcedureIn

func CollectionProcedureIn(vs ...string) predicate.Evidence

CollectionProcedureIn applies the In predicate on the "collection_procedure" field.

func CollectionProcedureIsNil

func CollectionProcedureIsNil() predicate.Evidence

CollectionProcedureIsNil applies the IsNil predicate on the "collection_procedure" field.

func CollectionProcedureLT

func CollectionProcedureLT(v string) predicate.Evidence

CollectionProcedureLT applies the LT predicate on the "collection_procedure" field.

func CollectionProcedureLTE

func CollectionProcedureLTE(v string) predicate.Evidence

CollectionProcedureLTE applies the LTE predicate on the "collection_procedure" field.

func CollectionProcedureNEQ

func CollectionProcedureNEQ(v string) predicate.Evidence

CollectionProcedureNEQ applies the NEQ predicate on the "collection_procedure" field.

func CollectionProcedureNotIn

func CollectionProcedureNotIn(vs ...string) predicate.Evidence

CollectionProcedureNotIn applies the NotIn predicate on the "collection_procedure" field.

func CollectionProcedureNotNil

func CollectionProcedureNotNil() predicate.Evidence

CollectionProcedureNotNil applies the NotNil predicate on the "collection_procedure" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.Evidence

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Evidence

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Evidence

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Evidence

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.Evidence

CreatedAtIsNil applies the IsNil predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Evidence

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Evidence

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Evidence

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.Evidence

CreatedAtNotNil applies the NotNil predicate on the "created_at" field.

func CreatedBy

func CreatedBy(v string) predicate.Evidence

CreatedBy applies equality check predicate on the "created_by" field. It's identical to CreatedByEQ.

func CreatedByContains

func CreatedByContains(v string) predicate.Evidence

CreatedByContains applies the Contains predicate on the "created_by" field.

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.Evidence

CreatedByContainsFold applies the ContainsFold predicate on the "created_by" field.

func CreatedByEQ

func CreatedByEQ(v string) predicate.Evidence

CreatedByEQ applies the EQ predicate on the "created_by" field.

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.Evidence

CreatedByEqualFold applies the EqualFold predicate on the "created_by" field.

func CreatedByGT

func CreatedByGT(v string) predicate.Evidence

CreatedByGT applies the GT predicate on the "created_by" field.

func CreatedByGTE

func CreatedByGTE(v string) predicate.Evidence

CreatedByGTE applies the GTE predicate on the "created_by" field.

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.Evidence

CreatedByHasPrefix applies the HasPrefix predicate on the "created_by" field.

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.Evidence

CreatedByHasSuffix applies the HasSuffix predicate on the "created_by" field.

func CreatedByIn

func CreatedByIn(vs ...string) predicate.Evidence

CreatedByIn applies the In predicate on the "created_by" field.

func CreatedByIsNil

func CreatedByIsNil() predicate.Evidence

CreatedByIsNil applies the IsNil predicate on the "created_by" field.

func CreatedByLT

func CreatedByLT(v string) predicate.Evidence

CreatedByLT applies the LT predicate on the "created_by" field.

func CreatedByLTE

func CreatedByLTE(v string) predicate.Evidence

CreatedByLTE applies the LTE predicate on the "created_by" field.

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.Evidence

CreatedByNEQ applies the NEQ predicate on the "created_by" field.

func CreatedByNotIn

func CreatedByNotIn(vs ...string) predicate.Evidence

CreatedByNotIn applies the NotIn predicate on the "created_by" field.

func CreatedByNotNil

func CreatedByNotNil() predicate.Evidence

CreatedByNotNil applies the NotNil predicate on the "created_by" field.

func CreationDate

func CreationDate(v time.Time) predicate.Evidence

CreationDate applies equality check predicate on the "creation_date" field. It's identical to CreationDateEQ.

func CreationDateEQ

func CreationDateEQ(v time.Time) predicate.Evidence

CreationDateEQ applies the EQ predicate on the "creation_date" field.

func CreationDateGT

func CreationDateGT(v time.Time) predicate.Evidence

CreationDateGT applies the GT predicate on the "creation_date" field.

func CreationDateGTE

func CreationDateGTE(v time.Time) predicate.Evidence

CreationDateGTE applies the GTE predicate on the "creation_date" field.

func CreationDateIn

func CreationDateIn(vs ...time.Time) predicate.Evidence

CreationDateIn applies the In predicate on the "creation_date" field.

func CreationDateLT

func CreationDateLT(v time.Time) predicate.Evidence

CreationDateLT applies the LT predicate on the "creation_date" field.

func CreationDateLTE

func CreationDateLTE(v time.Time) predicate.Evidence

CreationDateLTE applies the LTE predicate on the "creation_date" field.

func CreationDateNEQ

func CreationDateNEQ(v time.Time) predicate.Evidence

CreationDateNEQ applies the NEQ predicate on the "creation_date" field.

func CreationDateNotIn

func CreationDateNotIn(vs ...time.Time) predicate.Evidence

CreationDateNotIn applies the NotIn predicate on the "creation_date" field.

func DeletedAt

func DeletedAt(v time.Time) predicate.Evidence

DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.Evidence

DeletedAtEQ applies the EQ predicate on the "deleted_at" field.

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.Evidence

DeletedAtGT applies the GT predicate on the "deleted_at" field.

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.Evidence

DeletedAtGTE applies the GTE predicate on the "deleted_at" field.

func DeletedAtIn

func DeletedAtIn(vs ...time.Time) predicate.Evidence

DeletedAtIn applies the In predicate on the "deleted_at" field.

func DeletedAtIsNil

func DeletedAtIsNil() predicate.Evidence

DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.Evidence

DeletedAtLT applies the LT predicate on the "deleted_at" field.

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.Evidence

DeletedAtLTE applies the LTE predicate on the "deleted_at" field.

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.Evidence

DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.

func DeletedAtNotIn

func DeletedAtNotIn(vs ...time.Time) predicate.Evidence

DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.

func DeletedAtNotNil

func DeletedAtNotNil() predicate.Evidence

DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.

func DeletedBy

func DeletedBy(v string) predicate.Evidence

DeletedBy applies equality check predicate on the "deleted_by" field. It's identical to DeletedByEQ.

func DeletedByContains

func DeletedByContains(v string) predicate.Evidence

DeletedByContains applies the Contains predicate on the "deleted_by" field.

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.Evidence

DeletedByContainsFold applies the ContainsFold predicate on the "deleted_by" field.

func DeletedByEQ

func DeletedByEQ(v string) predicate.Evidence

DeletedByEQ applies the EQ predicate on the "deleted_by" field.

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.Evidence

DeletedByEqualFold applies the EqualFold predicate on the "deleted_by" field.

func DeletedByGT

func DeletedByGT(v string) predicate.Evidence

DeletedByGT applies the GT predicate on the "deleted_by" field.

func DeletedByGTE

func DeletedByGTE(v string) predicate.Evidence

DeletedByGTE applies the GTE predicate on the "deleted_by" field.

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.Evidence

DeletedByHasPrefix applies the HasPrefix predicate on the "deleted_by" field.

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.Evidence

DeletedByHasSuffix applies the HasSuffix predicate on the "deleted_by" field.

func DeletedByIn

func DeletedByIn(vs ...string) predicate.Evidence

DeletedByIn applies the In predicate on the "deleted_by" field.

func DeletedByIsNil

func DeletedByIsNil() predicate.Evidence

DeletedByIsNil applies the IsNil predicate on the "deleted_by" field.

func DeletedByLT

func DeletedByLT(v string) predicate.Evidence

DeletedByLT applies the LT predicate on the "deleted_by" field.

func DeletedByLTE

func DeletedByLTE(v string) predicate.Evidence

DeletedByLTE applies the LTE predicate on the "deleted_by" field.

func DeletedByNEQ

func DeletedByNEQ(v string) predicate.Evidence

DeletedByNEQ applies the NEQ predicate on the "deleted_by" field.

func DeletedByNotIn

func DeletedByNotIn(vs ...string) predicate.Evidence

DeletedByNotIn applies the NotIn predicate on the "deleted_by" field.

func DeletedByNotNil

func DeletedByNotNil() predicate.Evidence

DeletedByNotNil applies the NotNil predicate on the "deleted_by" field.

func Description

func Description(v string) predicate.Evidence

Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.

func DescriptionContains

func DescriptionContains(v string) predicate.Evidence

DescriptionContains applies the Contains predicate on the "description" field.

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.Evidence

DescriptionContainsFold applies the ContainsFold predicate on the "description" field.

func DescriptionEQ

func DescriptionEQ(v string) predicate.Evidence

DescriptionEQ applies the EQ predicate on the "description" field.

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.Evidence

DescriptionEqualFold applies the EqualFold predicate on the "description" field.

func DescriptionGT

func DescriptionGT(v string) predicate.Evidence

DescriptionGT applies the GT predicate on the "description" field.

func DescriptionGTE

func DescriptionGTE(v string) predicate.Evidence

DescriptionGTE applies the GTE predicate on the "description" field.

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.Evidence

DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.Evidence

DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.

func DescriptionIn

func DescriptionIn(vs ...string) predicate.Evidence

DescriptionIn applies the In predicate on the "description" field.

func DescriptionIsNil

func DescriptionIsNil() predicate.Evidence

DescriptionIsNil applies the IsNil predicate on the "description" field.

func DescriptionLT

func DescriptionLT(v string) predicate.Evidence

DescriptionLT applies the LT predicate on the "description" field.

func DescriptionLTE

func DescriptionLTE(v string) predicate.Evidence

DescriptionLTE applies the LTE predicate on the "description" field.

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.Evidence

DescriptionNEQ applies the NEQ predicate on the "description" field.

func DescriptionNotIn

func DescriptionNotIn(vs ...string) predicate.Evidence

DescriptionNotIn applies the NotIn predicate on the "description" field.

func DescriptionNotNil

func DescriptionNotNil() predicate.Evidence

DescriptionNotNil applies the NotNil predicate on the "description" field.

func DisplayID

func DisplayID(v string) predicate.Evidence

DisplayID applies equality check predicate on the "display_id" field. It's identical to DisplayIDEQ.

func DisplayIDContains

func DisplayIDContains(v string) predicate.Evidence

DisplayIDContains applies the Contains predicate on the "display_id" field.

func DisplayIDContainsFold

func DisplayIDContainsFold(v string) predicate.Evidence

DisplayIDContainsFold applies the ContainsFold predicate on the "display_id" field.

func DisplayIDEQ

func DisplayIDEQ(v string) predicate.Evidence

DisplayIDEQ applies the EQ predicate on the "display_id" field.

func DisplayIDEqualFold

func DisplayIDEqualFold(v string) predicate.Evidence

DisplayIDEqualFold applies the EqualFold predicate on the "display_id" field.

func DisplayIDGT

func DisplayIDGT(v string) predicate.Evidence

DisplayIDGT applies the GT predicate on the "display_id" field.

func DisplayIDGTE

func DisplayIDGTE(v string) predicate.Evidence

DisplayIDGTE applies the GTE predicate on the "display_id" field.

func DisplayIDHasPrefix

func DisplayIDHasPrefix(v string) predicate.Evidence

DisplayIDHasPrefix applies the HasPrefix predicate on the "display_id" field.

func DisplayIDHasSuffix

func DisplayIDHasSuffix(v string) predicate.Evidence

DisplayIDHasSuffix applies the HasSuffix predicate on the "display_id" field.

func DisplayIDIn

func DisplayIDIn(vs ...string) predicate.Evidence

DisplayIDIn applies the In predicate on the "display_id" field.

func DisplayIDLT

func DisplayIDLT(v string) predicate.Evidence

DisplayIDLT applies the LT predicate on the "display_id" field.

func DisplayIDLTE

func DisplayIDLTE(v string) predicate.Evidence

DisplayIDLTE applies the LTE predicate on the "display_id" field.

func DisplayIDNEQ

func DisplayIDNEQ(v string) predicate.Evidence

DisplayIDNEQ applies the NEQ predicate on the "display_id" field.

func DisplayIDNotIn

func DisplayIDNotIn(vs ...string) predicate.Evidence

DisplayIDNotIn applies the NotIn predicate on the "display_id" field.

func EnvironmentID added in v1.5.0

func EnvironmentID(v string) predicate.Evidence

EnvironmentID applies equality check predicate on the "environment_id" field. It's identical to EnvironmentIDEQ.

func EnvironmentIDContains added in v1.5.0

func EnvironmentIDContains(v string) predicate.Evidence

EnvironmentIDContains applies the Contains predicate on the "environment_id" field.

func EnvironmentIDContainsFold added in v1.5.0

func EnvironmentIDContainsFold(v string) predicate.Evidence

EnvironmentIDContainsFold applies the ContainsFold predicate on the "environment_id" field.

func EnvironmentIDEQ added in v1.5.0

func EnvironmentIDEQ(v string) predicate.Evidence

EnvironmentIDEQ applies the EQ predicate on the "environment_id" field.

func EnvironmentIDEqualFold added in v1.5.0

func EnvironmentIDEqualFold(v string) predicate.Evidence

EnvironmentIDEqualFold applies the EqualFold predicate on the "environment_id" field.

func EnvironmentIDGT added in v1.5.0

func EnvironmentIDGT(v string) predicate.Evidence

EnvironmentIDGT applies the GT predicate on the "environment_id" field.

func EnvironmentIDGTE added in v1.5.0

func EnvironmentIDGTE(v string) predicate.Evidence

EnvironmentIDGTE applies the GTE predicate on the "environment_id" field.

func EnvironmentIDHasPrefix added in v1.5.0

func EnvironmentIDHasPrefix(v string) predicate.Evidence

EnvironmentIDHasPrefix applies the HasPrefix predicate on the "environment_id" field.

func EnvironmentIDHasSuffix added in v1.5.0

func EnvironmentIDHasSuffix(v string) predicate.Evidence

EnvironmentIDHasSuffix applies the HasSuffix predicate on the "environment_id" field.

func EnvironmentIDIn added in v1.5.0

func EnvironmentIDIn(vs ...string) predicate.Evidence

EnvironmentIDIn applies the In predicate on the "environment_id" field.

func EnvironmentIDIsNil added in v1.5.0

func EnvironmentIDIsNil() predicate.Evidence

EnvironmentIDIsNil applies the IsNil predicate on the "environment_id" field.

func EnvironmentIDLT added in v1.5.0

func EnvironmentIDLT(v string) predicate.Evidence

EnvironmentIDLT applies the LT predicate on the "environment_id" field.

func EnvironmentIDLTE added in v1.5.0

func EnvironmentIDLTE(v string) predicate.Evidence

EnvironmentIDLTE applies the LTE predicate on the "environment_id" field.

func EnvironmentIDNEQ added in v1.5.0

func EnvironmentIDNEQ(v string) predicate.Evidence

EnvironmentIDNEQ applies the NEQ predicate on the "environment_id" field.

func EnvironmentIDNotIn added in v1.5.0

func EnvironmentIDNotIn(vs ...string) predicate.Evidence

EnvironmentIDNotIn applies the NotIn predicate on the "environment_id" field.

func EnvironmentIDNotNil added in v1.5.0

func EnvironmentIDNotNil() predicate.Evidence

EnvironmentIDNotNil applies the NotNil predicate on the "environment_id" field.

func EnvironmentName added in v1.5.0

func EnvironmentName(v string) predicate.Evidence

EnvironmentName applies equality check predicate on the "environment_name" field. It's identical to EnvironmentNameEQ.

func EnvironmentNameContains added in v1.5.0

func EnvironmentNameContains(v string) predicate.Evidence

EnvironmentNameContains applies the Contains predicate on the "environment_name" field.

func EnvironmentNameContainsFold added in v1.5.0

func EnvironmentNameContainsFold(v string) predicate.Evidence

EnvironmentNameContainsFold applies the ContainsFold predicate on the "environment_name" field.

func EnvironmentNameEQ added in v1.5.0

func EnvironmentNameEQ(v string) predicate.Evidence

EnvironmentNameEQ applies the EQ predicate on the "environment_name" field.

func EnvironmentNameEqualFold added in v1.5.0

func EnvironmentNameEqualFold(v string) predicate.Evidence

EnvironmentNameEqualFold applies the EqualFold predicate on the "environment_name" field.

func EnvironmentNameGT added in v1.5.0

func EnvironmentNameGT(v string) predicate.Evidence

EnvironmentNameGT applies the GT predicate on the "environment_name" field.

func EnvironmentNameGTE added in v1.5.0

func EnvironmentNameGTE(v string) predicate.Evidence

EnvironmentNameGTE applies the GTE predicate on the "environment_name" field.

func EnvironmentNameHasPrefix added in v1.5.0

func EnvironmentNameHasPrefix(v string) predicate.Evidence

EnvironmentNameHasPrefix applies the HasPrefix predicate on the "environment_name" field.

func EnvironmentNameHasSuffix added in v1.5.0

func EnvironmentNameHasSuffix(v string) predicate.Evidence

EnvironmentNameHasSuffix applies the HasSuffix predicate on the "environment_name" field.

func EnvironmentNameIn added in v1.5.0

func EnvironmentNameIn(vs ...string) predicate.Evidence

EnvironmentNameIn applies the In predicate on the "environment_name" field.

func EnvironmentNameIsNil added in v1.5.0

func EnvironmentNameIsNil() predicate.Evidence

EnvironmentNameIsNil applies the IsNil predicate on the "environment_name" field.

func EnvironmentNameLT added in v1.5.0

func EnvironmentNameLT(v string) predicate.Evidence

EnvironmentNameLT applies the LT predicate on the "environment_name" field.

func EnvironmentNameLTE added in v1.5.0

func EnvironmentNameLTE(v string) predicate.Evidence

EnvironmentNameLTE applies the LTE predicate on the "environment_name" field.

func EnvironmentNameNEQ added in v1.5.0

func EnvironmentNameNEQ(v string) predicate.Evidence

EnvironmentNameNEQ applies the NEQ predicate on the "environment_name" field.

func EnvironmentNameNotIn added in v1.5.0

func EnvironmentNameNotIn(vs ...string) predicate.Evidence

EnvironmentNameNotIn applies the NotIn predicate on the "environment_name" field.

func EnvironmentNameNotNil added in v1.5.0

func EnvironmentNameNotNil() predicate.Evidence

EnvironmentNameNotNil applies the NotNil predicate on the "environment_name" field.

func ExternalUUID added in v1.11.6

func ExternalUUID(v string) predicate.Evidence

ExternalUUID applies equality check predicate on the "external_uuid" field. It's identical to ExternalUUIDEQ.

func ExternalUUIDContains added in v1.11.6

func ExternalUUIDContains(v string) predicate.Evidence

ExternalUUIDContains applies the Contains predicate on the "external_uuid" field.

func ExternalUUIDContainsFold added in v1.11.6

func ExternalUUIDContainsFold(v string) predicate.Evidence

ExternalUUIDContainsFold applies the ContainsFold predicate on the "external_uuid" field.

func ExternalUUIDEQ added in v1.11.6

func ExternalUUIDEQ(v string) predicate.Evidence

ExternalUUIDEQ applies the EQ predicate on the "external_uuid" field.

func ExternalUUIDEqualFold added in v1.11.6

func ExternalUUIDEqualFold(v string) predicate.Evidence

ExternalUUIDEqualFold applies the EqualFold predicate on the "external_uuid" field.

func ExternalUUIDGT added in v1.11.6

func ExternalUUIDGT(v string) predicate.Evidence

ExternalUUIDGT applies the GT predicate on the "external_uuid" field.

func ExternalUUIDGTE added in v1.11.6

func ExternalUUIDGTE(v string) predicate.Evidence

ExternalUUIDGTE applies the GTE predicate on the "external_uuid" field.

func ExternalUUIDHasPrefix added in v1.11.6

func ExternalUUIDHasPrefix(v string) predicate.Evidence

ExternalUUIDHasPrefix applies the HasPrefix predicate on the "external_uuid" field.

func ExternalUUIDHasSuffix added in v1.11.6

func ExternalUUIDHasSuffix(v string) predicate.Evidence

ExternalUUIDHasSuffix applies the HasSuffix predicate on the "external_uuid" field.

func ExternalUUIDIn added in v1.11.6

func ExternalUUIDIn(vs ...string) predicate.Evidence

ExternalUUIDIn applies the In predicate on the "external_uuid" field.

func ExternalUUIDIsNil added in v1.11.6

func ExternalUUIDIsNil() predicate.Evidence

ExternalUUIDIsNil applies the IsNil predicate on the "external_uuid" field.

func ExternalUUIDLT added in v1.11.6

func ExternalUUIDLT(v string) predicate.Evidence

ExternalUUIDLT applies the LT predicate on the "external_uuid" field.

func ExternalUUIDLTE added in v1.11.6

func ExternalUUIDLTE(v string) predicate.Evidence

ExternalUUIDLTE applies the LTE predicate on the "external_uuid" field.

func ExternalUUIDNEQ added in v1.11.6

func ExternalUUIDNEQ(v string) predicate.Evidence

ExternalUUIDNEQ applies the NEQ predicate on the "external_uuid" field.

func ExternalUUIDNotIn added in v1.11.6

func ExternalUUIDNotIn(vs ...string) predicate.Evidence

ExternalUUIDNotIn applies the NotIn predicate on the "external_uuid" field.

func ExternalUUIDNotNil added in v1.11.6

func ExternalUUIDNotNil() predicate.Evidence

ExternalUUIDNotNil applies the NotNil predicate on the "external_uuid" field.

func HasComments added in v0.48.1

func HasComments() predicate.Evidence

HasComments applies the HasEdge predicate on the "comments" edge.

func HasCommentsWith added in v0.48.1

func HasCommentsWith(preds ...predicate.Note) predicate.Evidence

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

func HasControlImplementations added in v0.26.11

func HasControlImplementations() predicate.Evidence

HasControlImplementations applies the HasEdge predicate on the "control_implementations" edge.

func HasControlImplementationsWith added in v0.26.11

func HasControlImplementationsWith(preds ...predicate.ControlImplementation) predicate.Evidence

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

func HasControlObjectives

func HasControlObjectives() predicate.Evidence

HasControlObjectives applies the HasEdge predicate on the "control_objectives" edge.

func HasControlObjectivesWith

func HasControlObjectivesWith(preds ...predicate.ControlObjective) predicate.Evidence

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

func HasControls

func HasControls() predicate.Evidence

HasControls applies the HasEdge predicate on the "controls" edge.

func HasControlsWith

func HasControlsWith(preds ...predicate.Control) predicate.Evidence

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

func HasEnvironment added in v1.5.0

func HasEnvironment() predicate.Evidence

HasEnvironment applies the HasEdge predicate on the "environment" edge.

func HasEnvironmentWith added in v1.5.0

func HasEnvironmentWith(preds ...predicate.CustomTypeEnum) predicate.Evidence

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

func HasFiles

func HasFiles() predicate.Evidence

HasFiles applies the HasEdge predicate on the "files" edge.

func HasFilesWith

func HasFilesWith(preds ...predicate.File) predicate.Evidence

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

func HasOwner

func HasOwner() predicate.Evidence

HasOwner applies the HasEdge predicate on the "owner" edge.

func HasOwnerWith

func HasOwnerWith(preds ...predicate.Organization) predicate.Evidence

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

func HasPlatforms added in v1.5.0

func HasPlatforms() predicate.Evidence

HasPlatforms applies the HasEdge predicate on the "platforms" edge.

func HasPlatformsWith added in v1.5.0

func HasPlatformsWith(preds ...predicate.Platform) predicate.Evidence

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

func HasPrograms

func HasPrograms() predicate.Evidence

HasPrograms applies the HasEdge predicate on the "programs" edge.

func HasProgramsWith

func HasProgramsWith(preds ...predicate.Program) predicate.Evidence

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

func HasScans added in v1.5.0

func HasScans() predicate.Evidence

HasScans applies the HasEdge predicate on the "scans" edge.

func HasScansWith added in v1.5.0

func HasScansWith(preds ...predicate.Scan) predicate.Evidence

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

func HasScope added in v1.5.0

func HasScope() predicate.Evidence

HasScope applies the HasEdge predicate on the "scope" edge.

func HasScopeWith added in v1.5.0

func HasScopeWith(preds ...predicate.CustomTypeEnum) predicate.Evidence

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

func HasSubcontrols

func HasSubcontrols() predicate.Evidence

HasSubcontrols applies the HasEdge predicate on the "subcontrols" edge.

func HasSubcontrolsWith

func HasSubcontrolsWith(preds ...predicate.Subcontrol) predicate.Evidence

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

func HasTasks

func HasTasks() predicate.Evidence

HasTasks applies the HasEdge predicate on the "tasks" edge.

func HasTasksWith

func HasTasksWith(preds ...predicate.Task) predicate.Evidence

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

func HasWorkflowObjectRefs added in v0.52.0

func HasWorkflowObjectRefs() predicate.Evidence

HasWorkflowObjectRefs applies the HasEdge predicate on the "workflow_object_refs" edge.

func HasWorkflowObjectRefsWith added in v0.52.0

func HasWorkflowObjectRefsWith(preds ...predicate.WorkflowObjectRef) predicate.Evidence

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

func ID

func ID(id string) predicate.Evidence

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.Evidence

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

func IDEQ(id string) predicate.Evidence

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

func IDEqualFold(id string) predicate.Evidence

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

func IDGT(id string) predicate.Evidence

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.Evidence

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.Evidence

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.Evidence

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.Evidence

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func IsAutomated

func IsAutomated(v bool) predicate.Evidence

IsAutomated applies equality check predicate on the "is_automated" field. It's identical to IsAutomatedEQ.

func IsAutomatedEQ

func IsAutomatedEQ(v bool) predicate.Evidence

IsAutomatedEQ applies the EQ predicate on the "is_automated" field.

func IsAutomatedIsNil

func IsAutomatedIsNil() predicate.Evidence

IsAutomatedIsNil applies the IsNil predicate on the "is_automated" field.

func IsAutomatedNEQ

func IsAutomatedNEQ(v bool) predicate.Evidence

IsAutomatedNEQ applies the NEQ predicate on the "is_automated" field.

func IsAutomatedNotNil

func IsAutomatedNotNil() predicate.Evidence

IsAutomatedNotNil applies the NotNil predicate on the "is_automated" field.

func Name

func Name(v string) predicate.Evidence

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.Evidence

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.Evidence

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.Evidence

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.Evidence

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.Evidence

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.Evidence

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.Evidence

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.Evidence

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.Evidence

NameIn applies the In predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.Evidence

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.Evidence

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.Evidence

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.Evidence

NameNotIn applies the NotIn predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Evidence) predicate.Evidence

Or groups predicates with the OR operator between them.

func OwnerID

func OwnerID(v string) predicate.Evidence

OwnerID applies equality check predicate on the "owner_id" field. It's identical to OwnerIDEQ.

func OwnerIDContains

func OwnerIDContains(v string) predicate.Evidence

OwnerIDContains applies the Contains predicate on the "owner_id" field.

func OwnerIDContainsFold

func OwnerIDContainsFold(v string) predicate.Evidence

OwnerIDContainsFold applies the ContainsFold predicate on the "owner_id" field.

func OwnerIDEQ

func OwnerIDEQ(v string) predicate.Evidence

OwnerIDEQ applies the EQ predicate on the "owner_id" field.

func OwnerIDEqualFold

func OwnerIDEqualFold(v string) predicate.Evidence

OwnerIDEqualFold applies the EqualFold predicate on the "owner_id" field.

func OwnerIDGT

func OwnerIDGT(v string) predicate.Evidence

OwnerIDGT applies the GT predicate on the "owner_id" field.

func OwnerIDGTE

func OwnerIDGTE(v string) predicate.Evidence

OwnerIDGTE applies the GTE predicate on the "owner_id" field.

func OwnerIDHasPrefix

func OwnerIDHasPrefix(v string) predicate.Evidence

OwnerIDHasPrefix applies the HasPrefix predicate on the "owner_id" field.

func OwnerIDHasSuffix

func OwnerIDHasSuffix(v string) predicate.Evidence

OwnerIDHasSuffix applies the HasSuffix predicate on the "owner_id" field.

func OwnerIDIn

func OwnerIDIn(vs ...string) predicate.Evidence

OwnerIDIn applies the In predicate on the "owner_id" field.

func OwnerIDIsNil added in v0.7.1

func OwnerIDIsNil() predicate.Evidence

OwnerIDIsNil applies the IsNil predicate on the "owner_id" field.

func OwnerIDLT

func OwnerIDLT(v string) predicate.Evidence

OwnerIDLT applies the LT predicate on the "owner_id" field.

func OwnerIDLTE

func OwnerIDLTE(v string) predicate.Evidence

OwnerIDLTE applies the LTE predicate on the "owner_id" field.

func OwnerIDNEQ

func OwnerIDNEQ(v string) predicate.Evidence

OwnerIDNEQ applies the NEQ predicate on the "owner_id" field.

func OwnerIDNotIn

func OwnerIDNotIn(vs ...string) predicate.Evidence

OwnerIDNotIn applies the NotIn predicate on the "owner_id" field.

func OwnerIDNotNil added in v0.7.1

func OwnerIDNotNil() predicate.Evidence

OwnerIDNotNil applies the NotNil predicate on the "owner_id" field.

func RenewalDate

func RenewalDate(v time.Time) predicate.Evidence

RenewalDate applies equality check predicate on the "renewal_date" field. It's identical to RenewalDateEQ.

func RenewalDateEQ

func RenewalDateEQ(v time.Time) predicate.Evidence

RenewalDateEQ applies the EQ predicate on the "renewal_date" field.

func RenewalDateGT

func RenewalDateGT(v time.Time) predicate.Evidence

RenewalDateGT applies the GT predicate on the "renewal_date" field.

func RenewalDateGTE

func RenewalDateGTE(v time.Time) predicate.Evidence

RenewalDateGTE applies the GTE predicate on the "renewal_date" field.

func RenewalDateIn

func RenewalDateIn(vs ...time.Time) predicate.Evidence

RenewalDateIn applies the In predicate on the "renewal_date" field.

func RenewalDateIsNil

func RenewalDateIsNil() predicate.Evidence

RenewalDateIsNil applies the IsNil predicate on the "renewal_date" field.

func RenewalDateLT

func RenewalDateLT(v time.Time) predicate.Evidence

RenewalDateLT applies the LT predicate on the "renewal_date" field.

func RenewalDateLTE

func RenewalDateLTE(v time.Time) predicate.Evidence

RenewalDateLTE applies the LTE predicate on the "renewal_date" field.

func RenewalDateNEQ

func RenewalDateNEQ(v time.Time) predicate.Evidence

RenewalDateNEQ applies the NEQ predicate on the "renewal_date" field.

func RenewalDateNotIn

func RenewalDateNotIn(vs ...time.Time) predicate.Evidence

RenewalDateNotIn applies the NotIn predicate on the "renewal_date" field.

func RenewalDateNotNil

func RenewalDateNotNil() predicate.Evidence

RenewalDateNotNil applies the NotNil predicate on the "renewal_date" field.

func ScopeID added in v1.5.0

func ScopeID(v string) predicate.Evidence

ScopeID applies equality check predicate on the "scope_id" field. It's identical to ScopeIDEQ.

func ScopeIDContains added in v1.5.0

func ScopeIDContains(v string) predicate.Evidence

ScopeIDContains applies the Contains predicate on the "scope_id" field.

func ScopeIDContainsFold added in v1.5.0

func ScopeIDContainsFold(v string) predicate.Evidence

ScopeIDContainsFold applies the ContainsFold predicate on the "scope_id" field.

func ScopeIDEQ added in v1.5.0

func ScopeIDEQ(v string) predicate.Evidence

ScopeIDEQ applies the EQ predicate on the "scope_id" field.

func ScopeIDEqualFold added in v1.5.0

func ScopeIDEqualFold(v string) predicate.Evidence

ScopeIDEqualFold applies the EqualFold predicate on the "scope_id" field.

func ScopeIDGT added in v1.5.0

func ScopeIDGT(v string) predicate.Evidence

ScopeIDGT applies the GT predicate on the "scope_id" field.

func ScopeIDGTE added in v1.5.0

func ScopeIDGTE(v string) predicate.Evidence

ScopeIDGTE applies the GTE predicate on the "scope_id" field.

func ScopeIDHasPrefix added in v1.5.0

func ScopeIDHasPrefix(v string) predicate.Evidence

ScopeIDHasPrefix applies the HasPrefix predicate on the "scope_id" field.

func ScopeIDHasSuffix added in v1.5.0

func ScopeIDHasSuffix(v string) predicate.Evidence

ScopeIDHasSuffix applies the HasSuffix predicate on the "scope_id" field.

func ScopeIDIn added in v1.5.0

func ScopeIDIn(vs ...string) predicate.Evidence

ScopeIDIn applies the In predicate on the "scope_id" field.

func ScopeIDIsNil added in v1.5.0

func ScopeIDIsNil() predicate.Evidence

ScopeIDIsNil applies the IsNil predicate on the "scope_id" field.

func ScopeIDLT added in v1.5.0

func ScopeIDLT(v string) predicate.Evidence

ScopeIDLT applies the LT predicate on the "scope_id" field.

func ScopeIDLTE added in v1.5.0

func ScopeIDLTE(v string) predicate.Evidence

ScopeIDLTE applies the LTE predicate on the "scope_id" field.

func ScopeIDNEQ added in v1.5.0

func ScopeIDNEQ(v string) predicate.Evidence

ScopeIDNEQ applies the NEQ predicate on the "scope_id" field.

func ScopeIDNotIn added in v1.5.0

func ScopeIDNotIn(vs ...string) predicate.Evidence

ScopeIDNotIn applies the NotIn predicate on the "scope_id" field.

func ScopeIDNotNil added in v1.5.0

func ScopeIDNotNil() predicate.Evidence

ScopeIDNotNil applies the NotNil predicate on the "scope_id" field.

func ScopeName added in v1.5.0

func ScopeName(v string) predicate.Evidence

ScopeName applies equality check predicate on the "scope_name" field. It's identical to ScopeNameEQ.

func ScopeNameContains added in v1.5.0

func ScopeNameContains(v string) predicate.Evidence

ScopeNameContains applies the Contains predicate on the "scope_name" field.

func ScopeNameContainsFold added in v1.5.0

func ScopeNameContainsFold(v string) predicate.Evidence

ScopeNameContainsFold applies the ContainsFold predicate on the "scope_name" field.

func ScopeNameEQ added in v1.5.0

func ScopeNameEQ(v string) predicate.Evidence

ScopeNameEQ applies the EQ predicate on the "scope_name" field.

func ScopeNameEqualFold added in v1.5.0

func ScopeNameEqualFold(v string) predicate.Evidence

ScopeNameEqualFold applies the EqualFold predicate on the "scope_name" field.

func ScopeNameGT added in v1.5.0

func ScopeNameGT(v string) predicate.Evidence

ScopeNameGT applies the GT predicate on the "scope_name" field.

func ScopeNameGTE added in v1.5.0

func ScopeNameGTE(v string) predicate.Evidence

ScopeNameGTE applies the GTE predicate on the "scope_name" field.

func ScopeNameHasPrefix added in v1.5.0

func ScopeNameHasPrefix(v string) predicate.Evidence

ScopeNameHasPrefix applies the HasPrefix predicate on the "scope_name" field.

func ScopeNameHasSuffix added in v1.5.0

func ScopeNameHasSuffix(v string) predicate.Evidence

ScopeNameHasSuffix applies the HasSuffix predicate on the "scope_name" field.

func ScopeNameIn added in v1.5.0

func ScopeNameIn(vs ...string) predicate.Evidence

ScopeNameIn applies the In predicate on the "scope_name" field.

func ScopeNameIsNil added in v1.5.0

func ScopeNameIsNil() predicate.Evidence

ScopeNameIsNil applies the IsNil predicate on the "scope_name" field.

func ScopeNameLT added in v1.5.0

func ScopeNameLT(v string) predicate.Evidence

ScopeNameLT applies the LT predicate on the "scope_name" field.

func ScopeNameLTE added in v1.5.0

func ScopeNameLTE(v string) predicate.Evidence

ScopeNameLTE applies the LTE predicate on the "scope_name" field.

func ScopeNameNEQ added in v1.5.0

func ScopeNameNEQ(v string) predicate.Evidence

ScopeNameNEQ applies the NEQ predicate on the "scope_name" field.

func ScopeNameNotIn added in v1.5.0

func ScopeNameNotIn(vs ...string) predicate.Evidence

ScopeNameNotIn applies the NotIn predicate on the "scope_name" field.

func ScopeNameNotNil added in v1.5.0

func ScopeNameNotNil() predicate.Evidence

ScopeNameNotNil applies the NotNil predicate on the "scope_name" field.

func Source

func Source(v string) predicate.Evidence

Source applies equality check predicate on the "source" field. It's identical to SourceEQ.

func SourceContains

func SourceContains(v string) predicate.Evidence

SourceContains applies the Contains predicate on the "source" field.

func SourceContainsFold

func SourceContainsFold(v string) predicate.Evidence

SourceContainsFold applies the ContainsFold predicate on the "source" field.

func SourceEQ

func SourceEQ(v string) predicate.Evidence

SourceEQ applies the EQ predicate on the "source" field.

func SourceEqualFold

func SourceEqualFold(v string) predicate.Evidence

SourceEqualFold applies the EqualFold predicate on the "source" field.

func SourceGT

func SourceGT(v string) predicate.Evidence

SourceGT applies the GT predicate on the "source" field.

func SourceGTE

func SourceGTE(v string) predicate.Evidence

SourceGTE applies the GTE predicate on the "source" field.

func SourceHasPrefix

func SourceHasPrefix(v string) predicate.Evidence

SourceHasPrefix applies the HasPrefix predicate on the "source" field.

func SourceHasSuffix

func SourceHasSuffix(v string) predicate.Evidence

SourceHasSuffix applies the HasSuffix predicate on the "source" field.

func SourceIn

func SourceIn(vs ...string) predicate.Evidence

SourceIn applies the In predicate on the "source" field.

func SourceIsNil

func SourceIsNil() predicate.Evidence

SourceIsNil applies the IsNil predicate on the "source" field.

func SourceLT

func SourceLT(v string) predicate.Evidence

SourceLT applies the LT predicate on the "source" field.

func SourceLTE

func SourceLTE(v string) predicate.Evidence

SourceLTE applies the LTE predicate on the "source" field.

func SourceNEQ

func SourceNEQ(v string) predicate.Evidence

SourceNEQ applies the NEQ predicate on the "source" field.

func SourceNotIn

func SourceNotIn(vs ...string) predicate.Evidence

SourceNotIn applies the NotIn predicate on the "source" field.

func SourceNotNil

func SourceNotNil() predicate.Evidence

SourceNotNil applies the NotNil predicate on the "source" field.

func StatusEQ added in v0.7.5

StatusEQ applies the EQ predicate on the "status" field.

func StatusIn added in v0.7.5

func StatusIn(vs ...enums.EvidenceStatus) predicate.Evidence

StatusIn applies the In predicate on the "status" field.

func StatusIsNil added in v0.7.5

func StatusIsNil() predicate.Evidence

StatusIsNil applies the IsNil predicate on the "status" field.

func StatusNEQ added in v0.7.5

StatusNEQ applies the NEQ predicate on the "status" field.

func StatusNotIn added in v0.7.5

func StatusNotIn(vs ...enums.EvidenceStatus) predicate.Evidence

StatusNotIn applies the NotIn predicate on the "status" field.

func StatusNotNil added in v0.7.5

func StatusNotNil() predicate.Evidence

StatusNotNil applies the NotNil predicate on the "status" field.

func StatusValidator added in v0.7.5

func StatusValidator(s enums.EvidenceStatus) error

StatusValidator is a validator for the "status" field enum values. It is called by the builders before save.

func TagsIsNil

func TagsIsNil() predicate.Evidence

TagsIsNil applies the IsNil predicate on the "tags" field.

func TagsNotNil

func TagsNotNil() predicate.Evidence

TagsNotNil applies the NotNil predicate on the "tags" field.

func URL

func URL(v string) predicate.Evidence

URL applies equality check predicate on the "url" field. It's identical to URLEQ.

func URLContains

func URLContains(v string) predicate.Evidence

URLContains applies the Contains predicate on the "url" field.

func URLContainsFold

func URLContainsFold(v string) predicate.Evidence

URLContainsFold applies the ContainsFold predicate on the "url" field.

func URLEQ

func URLEQ(v string) predicate.Evidence

URLEQ applies the EQ predicate on the "url" field.

func URLEqualFold

func URLEqualFold(v string) predicate.Evidence

URLEqualFold applies the EqualFold predicate on the "url" field.

func URLGT

func URLGT(v string) predicate.Evidence

URLGT applies the GT predicate on the "url" field.

func URLGTE

func URLGTE(v string) predicate.Evidence

URLGTE applies the GTE predicate on the "url" field.

func URLHasPrefix

func URLHasPrefix(v string) predicate.Evidence

URLHasPrefix applies the HasPrefix predicate on the "url" field.

func URLHasSuffix

func URLHasSuffix(v string) predicate.Evidence

URLHasSuffix applies the HasSuffix predicate on the "url" field.

func URLIn

func URLIn(vs ...string) predicate.Evidence

URLIn applies the In predicate on the "url" field.

func URLIsNil

func URLIsNil() predicate.Evidence

URLIsNil applies the IsNil predicate on the "url" field.

func URLLT

func URLLT(v string) predicate.Evidence

URLLT applies the LT predicate on the "url" field.

func URLLTE

func URLLTE(v string) predicate.Evidence

URLLTE applies the LTE predicate on the "url" field.

func URLNEQ

func URLNEQ(v string) predicate.Evidence

URLNEQ applies the NEQ predicate on the "url" field.

func URLNotIn

func URLNotIn(vs ...string) predicate.Evidence

URLNotIn applies the NotIn predicate on the "url" field.

func URLNotNil

func URLNotNil() predicate.Evidence

URLNotNil applies the NotNil predicate on the "url" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Evidence

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Evidence

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Evidence

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Evidence

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.Evidence

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.Evidence

UpdatedAtIsNil applies the IsNil predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Evidence

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Evidence

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Evidence

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.Evidence

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.Evidence

UpdatedAtNotNil applies the NotNil predicate on the "updated_at" field.

func UpdatedBy

func UpdatedBy(v string) predicate.Evidence

UpdatedBy applies equality check predicate on the "updated_by" field. It's identical to UpdatedByEQ.

func UpdatedByContains

func UpdatedByContains(v string) predicate.Evidence

UpdatedByContains applies the Contains predicate on the "updated_by" field.

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.Evidence

UpdatedByContainsFold applies the ContainsFold predicate on the "updated_by" field.

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.Evidence

UpdatedByEQ applies the EQ predicate on the "updated_by" field.

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.Evidence

UpdatedByEqualFold applies the EqualFold predicate on the "updated_by" field.

func UpdatedByGT

func UpdatedByGT(v string) predicate.Evidence

UpdatedByGT applies the GT predicate on the "updated_by" field.

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.Evidence

UpdatedByGTE applies the GTE predicate on the "updated_by" field.

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.Evidence

UpdatedByHasPrefix applies the HasPrefix predicate on the "updated_by" field.

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.Evidence

UpdatedByHasSuffix applies the HasSuffix predicate on the "updated_by" field.

func UpdatedByIn

func UpdatedByIn(vs ...string) predicate.Evidence

UpdatedByIn applies the In predicate on the "updated_by" field.

func UpdatedByIsNil

func UpdatedByIsNil() predicate.Evidence

UpdatedByIsNil applies the IsNil predicate on the "updated_by" field.

func UpdatedByLT

func UpdatedByLT(v string) predicate.Evidence

UpdatedByLT applies the LT predicate on the "updated_by" field.

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.Evidence

UpdatedByLTE applies the LTE predicate on the "updated_by" field.

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.Evidence

UpdatedByNEQ applies the NEQ predicate on the "updated_by" field.

func UpdatedByNotIn

func UpdatedByNotIn(vs ...string) predicate.Evidence

UpdatedByNotIn applies the NotIn predicate on the "updated_by" field.

func UpdatedByNotNil

func UpdatedByNotNil() predicate.Evidence

UpdatedByNotNil applies the NotNil predicate on the "updated_by" field.

func ValidColumn

func ValidColumn(column string) bool

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

func WorkflowEligibleMarker added in v0.52.0

func WorkflowEligibleMarker(v bool) predicate.Evidence

WorkflowEligibleMarker applies equality check predicate on the "workflow_eligible_marker" field. It's identical to WorkflowEligibleMarkerEQ.

func WorkflowEligibleMarkerEQ added in v0.52.0

func WorkflowEligibleMarkerEQ(v bool) predicate.Evidence

WorkflowEligibleMarkerEQ applies the EQ predicate on the "workflow_eligible_marker" field.

func WorkflowEligibleMarkerIsNil added in v0.52.0

func WorkflowEligibleMarkerIsNil() predicate.Evidence

WorkflowEligibleMarkerIsNil applies the IsNil predicate on the "workflow_eligible_marker" field.

func WorkflowEligibleMarkerNEQ added in v0.52.0

func WorkflowEligibleMarkerNEQ(v bool) predicate.Evidence

WorkflowEligibleMarkerNEQ applies the NEQ predicate on the "workflow_eligible_marker" field.

func WorkflowEligibleMarkerNotNil added in v0.52.0

func WorkflowEligibleMarkerNotNil() predicate.Evidence

WorkflowEligibleMarkerNotNil applies the NotNil predicate on the "workflow_eligible_marker" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the Evidence queries.

func ByCollectionProcedure

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

ByCollectionProcedure orders the results by the collection_procedure field.

func ByComments added in v0.48.1

func ByComments(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByComments orders the results by comments terms.

func ByCommentsCount added in v0.48.1

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

ByCommentsCount orders the results by comments count.

func ByControlImplementations added in v0.26.11

func ByControlImplementations(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByControlImplementations orders the results by control_implementations terms.

func ByControlImplementationsCount added in v0.26.11

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

ByControlImplementationsCount orders the results by control_implementations count.

func ByControlObjectives

func ByControlObjectives(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByControlObjectives orders the results by control_objectives terms.

func ByControlObjectivesCount

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

ByControlObjectivesCount orders the results by control_objectives count.

func ByControls

func ByControls(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByControls orders the results by controls terms.

func ByControlsCount

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

ByControlsCount orders the results by controls count.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByCreatedBy

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

ByCreatedBy orders the results by the created_by field.

func ByCreationDate

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

ByCreationDate orders the results by the creation_date field.

func ByDeletedAt

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

ByDeletedAt orders the results by the deleted_at field.

func ByDeletedBy

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

ByDeletedBy orders the results by the deleted_by field.

func ByDescription

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

ByDescription orders the results by the description field.

func ByDisplayID

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

ByDisplayID orders the results by the display_id field.

func ByEnvironmentField added in v1.5.0

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

ByEnvironmentField orders the results by environment field.

func ByEnvironmentID added in v1.5.0

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

ByEnvironmentID orders the results by the environment_id field.

func ByEnvironmentName added in v1.5.0

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

ByEnvironmentName orders the results by the environment_name field.

func ByExternalUUID added in v1.11.6

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

ByExternalUUID orders the results by the external_uuid field.

func ByFiles

func ByFiles(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByFiles orders the results by files terms.

func ByFilesCount

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

ByFilesCount orders the results by files count.

func ByID

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

ByID orders the results by the id field.

func ByIsAutomated

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

ByIsAutomated orders the results by the is_automated field.

func ByName

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

ByName orders the results by the name field.

func ByOwnerField

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

ByOwnerField orders the results by owner field.

func ByOwnerID

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

ByOwnerID orders the results by the owner_id field.

func ByPlatforms added in v1.5.0

func ByPlatforms(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByPlatforms orders the results by platforms terms.

func ByPlatformsCount added in v1.5.0

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

ByPlatformsCount orders the results by platforms count.

func ByPrograms

func ByPrograms(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByPrograms orders the results by programs terms.

func ByProgramsCount

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

ByProgramsCount orders the results by programs count.

func ByRenewalDate

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

ByRenewalDate orders the results by the renewal_date field.

func ByScans added in v1.5.0

func ByScans(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByScans orders the results by scans terms.

func ByScansCount added in v1.5.0

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

ByScansCount orders the results by scans count.

func ByScopeField added in v1.5.0

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

ByScopeField orders the results by scope field.

func ByScopeID added in v1.5.0

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

ByScopeID orders the results by the scope_id field.

func ByScopeName added in v1.5.0

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

ByScopeName orders the results by the scope_name field.

func BySource

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

BySource orders the results by the source field.

func ByStatus added in v0.7.5

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

ByStatus orders the results by the status field.

func BySubcontrols

func BySubcontrols(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

BySubcontrols orders the results by subcontrols terms.

func BySubcontrolsCount

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

BySubcontrolsCount orders the results by subcontrols count.

func ByTasks

func ByTasks(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByTasks orders the results by tasks terms.

func ByTasksCount

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

ByTasksCount orders the results by tasks count.

func ByURL

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

ByURL orders the results by the url field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

func ByUpdatedBy

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

ByUpdatedBy orders the results by the updated_by field.

func ByWorkflowEligibleMarker added in v0.52.0

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

ByWorkflowEligibleMarker orders the results by the workflow_eligible_marker field.

func ByWorkflowObjectRefs added in v0.52.0

func ByWorkflowObjectRefs(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByWorkflowObjectRefs orders the results by workflow_object_refs terms.

func ByWorkflowObjectRefsCount added in v0.52.0

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

ByWorkflowObjectRefsCount orders the results by workflow_object_refs count.

Jump to

Keyboard shortcuts

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