review

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: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the review type in the database.
	Label = "review"
	// 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"
	// 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"
	// FieldSystemOwned holds the string denoting the system_owned field in the database.
	FieldSystemOwned = "system_owned"
	// FieldInternalNotes holds the string denoting the internal_notes field in the database.
	FieldInternalNotes = "internal_notes"
	// FieldSystemInternalID holds the string denoting the system_internal_id field in the database.
	FieldSystemInternalID = "system_internal_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"
	// FieldExternalID holds the string denoting the external_id field in the database.
	FieldExternalID = "external_id"
	// FieldExternalOwnerID holds the string denoting the external_owner_id field in the database.
	FieldExternalOwnerID = "external_owner_id"
	// FieldTitle holds the string denoting the title field in the database.
	FieldTitle = "title"
	// FieldState holds the string denoting the state field in the database.
	FieldState = "state"
	// FieldCategory holds the string denoting the category field in the database.
	FieldCategory = "category"
	// FieldClassification holds the string denoting the classification field in the database.
	FieldClassification = "classification"
	// FieldSummary holds the string denoting the summary field in the database.
	FieldSummary = "summary"
	// FieldDetails holds the string denoting the details field in the database.
	FieldDetails = "details"
	// FieldReporter holds the string denoting the reporter field in the database.
	FieldReporter = "reporter"
	// FieldApproved holds the string denoting the approved field in the database.
	FieldApproved = "approved"
	// FieldReviewedAt holds the string denoting the reviewed_at field in the database.
	FieldReviewedAt = "reviewed_at"
	// FieldReportedAt holds the string denoting the reported_at field in the database.
	FieldReportedAt = "reported_at"
	// FieldApprovedAt holds the string denoting the approved_at field in the database.
	FieldApprovedAt = "approved_at"
	// FieldReviewerID holds the string denoting the reviewer_id field in the database.
	FieldReviewerID = "reviewer_id"
	// FieldSource holds the string denoting the source field in the database.
	FieldSource = "source"
	// FieldExternalURI holds the string denoting the external_uri field in the database.
	FieldExternalURI = "external_uri"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// FieldRawPayload holds the string denoting the raw_payload field in the database.
	FieldRawPayload = "raw_payload"
	// EdgeOwner holds the string denoting the owner edge name in mutations.
	EdgeOwner = "owner"
	// EdgeBlockedGroups holds the string denoting the blocked_groups edge name in mutations.
	EdgeBlockedGroups = "blocked_groups"
	// EdgeEditors holds the string denoting the editors edge name in mutations.
	EdgeEditors = "editors"
	// EdgeViewers holds the string denoting the viewers edge name in mutations.
	EdgeViewers = "viewers"
	// 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"
	// EdgeIntegrations holds the string denoting the integrations edge name in mutations.
	EdgeIntegrations = "integrations"
	// EdgeFindings holds the string denoting the findings edge name in mutations.
	EdgeFindings = "findings"
	// EdgeVulnerabilities holds the string denoting the vulnerabilities edge name in mutations.
	EdgeVulnerabilities = "vulnerabilities"
	// EdgeActionPlans holds the string denoting the action_plans edge name in mutations.
	EdgeActionPlans = "action_plans"
	// EdgeRemediations holds the string denoting the remediations edge name in mutations.
	EdgeRemediations = "remediations"
	// 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"
	// EdgeRisks holds the string denoting the risks edge name in mutations.
	EdgeRisks = "risks"
	// EdgePrograms holds the string denoting the programs edge name in mutations.
	EdgePrograms = "programs"
	// EdgeAssets holds the string denoting the assets edge name in mutations.
	EdgeAssets = "assets"
	// EdgeEntities holds the string denoting the entities edge name in mutations.
	EdgeEntities = "entities"
	// EdgeTasks holds the string denoting the tasks edge name in mutations.
	EdgeTasks = "tasks"
	// EdgeReviewer holds the string denoting the reviewer edge name in mutations.
	EdgeReviewer = "reviewer"
	// EdgeComments holds the string denoting the comments edge name in mutations.
	EdgeComments = "comments"
	// EdgeFiles holds the string denoting the files edge name in mutations.
	EdgeFiles = "files"
	// Table holds the table name of the review in the database.
	Table = "reviews"
	// OwnerTable is the table that holds the owner relation/edge.
	OwnerTable = "reviews"
	// 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"
	// BlockedGroupsTable is the table that holds the blocked_groups relation/edge.
	BlockedGroupsTable = "groups"
	// BlockedGroupsInverseTable is the table name for the Group entity.
	// It exists in this package in order to avoid circular dependency with the "group" package.
	BlockedGroupsInverseTable = "groups"
	// BlockedGroupsColumn is the table column denoting the blocked_groups relation/edge.
	BlockedGroupsColumn = "review_blocked_groups"
	// EditorsTable is the table that holds the editors relation/edge.
	EditorsTable = "groups"
	// EditorsInverseTable is the table name for the Group entity.
	// It exists in this package in order to avoid circular dependency with the "group" package.
	EditorsInverseTable = "groups"
	// EditorsColumn is the table column denoting the editors relation/edge.
	EditorsColumn = "review_editors"
	// ViewersTable is the table that holds the viewers relation/edge.
	ViewersTable = "groups"
	// ViewersInverseTable is the table name for the Group entity.
	// It exists in this package in order to avoid circular dependency with the "group" package.
	ViewersInverseTable = "groups"
	// ViewersColumn is the table column denoting the viewers relation/edge.
	ViewersColumn = "review_viewers"
	// EnvironmentTable is the table that holds the environment relation/edge.
	EnvironmentTable = "reviews"
	// 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 = "reviews"
	// 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"
	// IntegrationsTable is the table that holds the integrations relation/edge. The primary key declared below.
	IntegrationsTable = "integration_reviews"
	// IntegrationsInverseTable is the table name for the Integration entity.
	// It exists in this package in order to avoid circular dependency with the "integration" package.
	IntegrationsInverseTable = "integrations"
	// FindingsTable is the table that holds the findings relation/edge.
	FindingsTable = "findings"
	// FindingsInverseTable is the table name for the Finding entity.
	// It exists in this package in order to avoid circular dependency with the "finding" package.
	FindingsInverseTable = "findings"
	// FindingsColumn is the table column denoting the findings relation/edge.
	FindingsColumn = "review_findings"
	// VulnerabilitiesTable is the table that holds the vulnerabilities relation/edge.
	VulnerabilitiesTable = "vulnerabilities"
	// VulnerabilitiesInverseTable is the table name for the Vulnerability entity.
	// It exists in this package in order to avoid circular dependency with the "vulnerability" package.
	VulnerabilitiesInverseTable = "vulnerabilities"
	// VulnerabilitiesColumn is the table column denoting the vulnerabilities relation/edge.
	VulnerabilitiesColumn = "review_vulnerabilities"
	// ActionPlansTable is the table that holds the action_plans relation/edge. The primary key declared below.
	ActionPlansTable = "review_action_plans"
	// ActionPlansInverseTable is the table name for the ActionPlan entity.
	// It exists in this package in order to avoid circular dependency with the "actionplan" package.
	ActionPlansInverseTable = "action_plans"
	// RemediationsTable is the table that holds the remediations relation/edge.
	RemediationsTable = "remediations"
	// RemediationsInverseTable is the table name for the Remediation entity.
	// It exists in this package in order to avoid circular dependency with the "remediation" package.
	RemediationsInverseTable = "remediations"
	// RemediationsColumn is the table column denoting the remediations relation/edge.
	RemediationsColumn = "review_remediations"
	// ControlsTable is the table that holds the controls relation/edge. The primary key declared below.
	ControlsTable = "review_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.
	SubcontrolsTable = "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"
	// SubcontrolsColumn is the table column denoting the subcontrols relation/edge.
	SubcontrolsColumn = "review_subcontrols"
	// RisksTable is the table that holds the risks relation/edge.
	RisksTable = "risks"
	// RisksInverseTable is the table name for the Risk entity.
	// It exists in this package in order to avoid circular dependency with the "risk" package.
	RisksInverseTable = "risks"
	// RisksColumn is the table column denoting the risks relation/edge.
	RisksColumn = "review_risks"
	// ProgramsTable is the table that holds the programs relation/edge.
	ProgramsTable = "programs"
	// 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"
	// ProgramsColumn is the table column denoting the programs relation/edge.
	ProgramsColumn = "review_programs"
	// AssetsTable is the table that holds the assets relation/edge.
	AssetsTable = "assets"
	// AssetsInverseTable is the table name for the Asset entity.
	// It exists in this package in order to avoid circular dependency with the "asset" package.
	AssetsInverseTable = "assets"
	// AssetsColumn is the table column denoting the assets relation/edge.
	AssetsColumn = "review_assets"
	// EntitiesTable is the table that holds the entities relation/edge.
	EntitiesTable = "entities"
	// EntitiesInverseTable is the table name for the Entity entity.
	// It exists in this package in order to avoid circular dependency with the "entity" package.
	EntitiesInverseTable = "entities"
	// EntitiesColumn is the table column denoting the entities relation/edge.
	EntitiesColumn = "review_entities"
	// TasksTable is the table that holds the tasks relation/edge.
	TasksTable = "tasks"
	// 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"
	// TasksColumn is the table column denoting the tasks relation/edge.
	TasksColumn = "review_tasks"
	// ReviewerTable is the table that holds the reviewer relation/edge.
	ReviewerTable = "reviews"
	// ReviewerInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	ReviewerInverseTable = "users"
	// ReviewerColumn is the table column denoting the reviewer relation/edge.
	ReviewerColumn = "reviewer_id"
	// 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 = "review_comments"
	// FilesTable is the table that holds the files relation/edge.
	FilesTable = "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"
	// FilesColumn is the table column denoting the files relation/edge.
	FilesColumn = "review_files"
)

Variables

View Source
var (
	// IntegrationsPrimaryKey and IntegrationsColumn2 are the table columns denoting the
	// primary key for the integrations relation (M2M).
	IntegrationsPrimaryKey = []string{"integration_id", "review_id"}
	// ActionPlansPrimaryKey and ActionPlansColumn2 are the table columns denoting the
	// primary key for the action_plans relation (M2M).
	ActionPlansPrimaryKey = []string{"review_id", "action_plan_id"}
	// ControlsPrimaryKey and ControlsColumn2 are the table columns denoting the
	// primary key for the controls relation (M2M).
	ControlsPrimaryKey = []string{"review_id", "control_id"}
)
View Source
var (
	Hooks        [13]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
	// 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
	// DefaultSystemOwned holds the default value on creation for the "system_owned" field.
	DefaultSystemOwned bool
	// TitleValidator is a validator for the "title" field. It is called by the builders before save.
	TitleValidator func(string) error
	// DefaultApproved holds the default value on creation for the "approved" field.
	DefaultApproved bool
	// 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 review fields.

View Source
var ForeignKeys = []string{
	"finding_reviews",
	"remediation_reviews",
	"vulnerability_reviews",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "reviews" table and are not defined as standalone fields in the schema.

Functions

func And

func And(predicates ...predicate.Review) predicate.Review

And groups predicates with the AND operator between them.

func Approved

func Approved(v bool) predicate.Review

Approved applies equality check predicate on the "approved" field. It's identical to ApprovedEQ.

func ApprovedAt

func ApprovedAt(v models.DateTime) predicate.Review

ApprovedAt applies equality check predicate on the "approved_at" field. It's identical to ApprovedAtEQ.

func ApprovedAtEQ

func ApprovedAtEQ(v models.DateTime) predicate.Review

ApprovedAtEQ applies the EQ predicate on the "approved_at" field.

func ApprovedAtGT

func ApprovedAtGT(v models.DateTime) predicate.Review

ApprovedAtGT applies the GT predicate on the "approved_at" field.

func ApprovedAtGTE

func ApprovedAtGTE(v models.DateTime) predicate.Review

ApprovedAtGTE applies the GTE predicate on the "approved_at" field.

func ApprovedAtIn

func ApprovedAtIn(vs ...models.DateTime) predicate.Review

ApprovedAtIn applies the In predicate on the "approved_at" field.

func ApprovedAtIsNil

func ApprovedAtIsNil() predicate.Review

ApprovedAtIsNil applies the IsNil predicate on the "approved_at" field.

func ApprovedAtLT

func ApprovedAtLT(v models.DateTime) predicate.Review

ApprovedAtLT applies the LT predicate on the "approved_at" field.

func ApprovedAtLTE

func ApprovedAtLTE(v models.DateTime) predicate.Review

ApprovedAtLTE applies the LTE predicate on the "approved_at" field.

func ApprovedAtNEQ

func ApprovedAtNEQ(v models.DateTime) predicate.Review

ApprovedAtNEQ applies the NEQ predicate on the "approved_at" field.

func ApprovedAtNotIn

func ApprovedAtNotIn(vs ...models.DateTime) predicate.Review

ApprovedAtNotIn applies the NotIn predicate on the "approved_at" field.

func ApprovedAtNotNil

func ApprovedAtNotNil() predicate.Review

ApprovedAtNotNil applies the NotNil predicate on the "approved_at" field.

func ApprovedEQ

func ApprovedEQ(v bool) predicate.Review

ApprovedEQ applies the EQ predicate on the "approved" field.

func ApprovedIsNil

func ApprovedIsNil() predicate.Review

ApprovedIsNil applies the IsNil predicate on the "approved" field.

func ApprovedNEQ

func ApprovedNEQ(v bool) predicate.Review

ApprovedNEQ applies the NEQ predicate on the "approved" field.

func ApprovedNotNil

func ApprovedNotNil() predicate.Review

ApprovedNotNil applies the NotNil predicate on the "approved" field.

func Category

func Category(v string) predicate.Review

Category applies equality check predicate on the "category" field. It's identical to CategoryEQ.

func CategoryContains

func CategoryContains(v string) predicate.Review

CategoryContains applies the Contains predicate on the "category" field.

func CategoryContainsFold

func CategoryContainsFold(v string) predicate.Review

CategoryContainsFold applies the ContainsFold predicate on the "category" field.

func CategoryEQ

func CategoryEQ(v string) predicate.Review

CategoryEQ applies the EQ predicate on the "category" field.

func CategoryEqualFold

func CategoryEqualFold(v string) predicate.Review

CategoryEqualFold applies the EqualFold predicate on the "category" field.

func CategoryGT

func CategoryGT(v string) predicate.Review

CategoryGT applies the GT predicate on the "category" field.

func CategoryGTE

func CategoryGTE(v string) predicate.Review

CategoryGTE applies the GTE predicate on the "category" field.

func CategoryHasPrefix

func CategoryHasPrefix(v string) predicate.Review

CategoryHasPrefix applies the HasPrefix predicate on the "category" field.

func CategoryHasSuffix

func CategoryHasSuffix(v string) predicate.Review

CategoryHasSuffix applies the HasSuffix predicate on the "category" field.

func CategoryIn

func CategoryIn(vs ...string) predicate.Review

CategoryIn applies the In predicate on the "category" field.

func CategoryIsNil

func CategoryIsNil() predicate.Review

CategoryIsNil applies the IsNil predicate on the "category" field.

func CategoryLT

func CategoryLT(v string) predicate.Review

CategoryLT applies the LT predicate on the "category" field.

func CategoryLTE

func CategoryLTE(v string) predicate.Review

CategoryLTE applies the LTE predicate on the "category" field.

func CategoryNEQ

func CategoryNEQ(v string) predicate.Review

CategoryNEQ applies the NEQ predicate on the "category" field.

func CategoryNotIn

func CategoryNotIn(vs ...string) predicate.Review

CategoryNotIn applies the NotIn predicate on the "category" field.

func CategoryNotNil

func CategoryNotNil() predicate.Review

CategoryNotNil applies the NotNil predicate on the "category" field.

func Classification

func Classification(v string) predicate.Review

Classification applies equality check predicate on the "classification" field. It's identical to ClassificationEQ.

func ClassificationContains

func ClassificationContains(v string) predicate.Review

ClassificationContains applies the Contains predicate on the "classification" field.

func ClassificationContainsFold

func ClassificationContainsFold(v string) predicate.Review

ClassificationContainsFold applies the ContainsFold predicate on the "classification" field.

func ClassificationEQ

func ClassificationEQ(v string) predicate.Review

ClassificationEQ applies the EQ predicate on the "classification" field.

func ClassificationEqualFold

func ClassificationEqualFold(v string) predicate.Review

ClassificationEqualFold applies the EqualFold predicate on the "classification" field.

func ClassificationGT

func ClassificationGT(v string) predicate.Review

ClassificationGT applies the GT predicate on the "classification" field.

func ClassificationGTE

func ClassificationGTE(v string) predicate.Review

ClassificationGTE applies the GTE predicate on the "classification" field.

func ClassificationHasPrefix

func ClassificationHasPrefix(v string) predicate.Review

ClassificationHasPrefix applies the HasPrefix predicate on the "classification" field.

func ClassificationHasSuffix

func ClassificationHasSuffix(v string) predicate.Review

ClassificationHasSuffix applies the HasSuffix predicate on the "classification" field.

func ClassificationIn

func ClassificationIn(vs ...string) predicate.Review

ClassificationIn applies the In predicate on the "classification" field.

func ClassificationIsNil

func ClassificationIsNil() predicate.Review

ClassificationIsNil applies the IsNil predicate on the "classification" field.

func ClassificationLT

func ClassificationLT(v string) predicate.Review

ClassificationLT applies the LT predicate on the "classification" field.

func ClassificationLTE

func ClassificationLTE(v string) predicate.Review

ClassificationLTE applies the LTE predicate on the "classification" field.

func ClassificationNEQ

func ClassificationNEQ(v string) predicate.Review

ClassificationNEQ applies the NEQ predicate on the "classification" field.

func ClassificationNotIn

func ClassificationNotIn(vs ...string) predicate.Review

ClassificationNotIn applies the NotIn predicate on the "classification" field.

func ClassificationNotNil

func ClassificationNotNil() predicate.Review

ClassificationNotNil applies the NotNil predicate on the "classification" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.Review

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Review

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Review

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Review

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.Review

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Review

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Review

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Review

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.Review

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

func CreatedBy

func CreatedBy(v string) predicate.Review

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

func CreatedByContains

func CreatedByContains(v string) predicate.Review

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.Review

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.Review

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.Review

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

func CreatedByGT

func CreatedByGT(v string) predicate.Review

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.Review

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.Review

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.Review

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.Review

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

func CreatedByLT

func CreatedByLT(v string) predicate.Review

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.Review

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.Review

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.Review

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

func DeletedAt

func DeletedAt(v time.Time) predicate.Review

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.Review

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.Review

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.Review

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.Review

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.Review

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.Review

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.Review

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.Review

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

func DeletedBy

func DeletedBy(v string) predicate.Review

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

func DeletedByContains

func DeletedByContains(v string) predicate.Review

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

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.Review

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

func DeletedByEQ

func DeletedByEQ(v string) predicate.Review

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

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.Review

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

func DeletedByGT

func DeletedByGT(v string) predicate.Review

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

func DeletedByGTE

func DeletedByGTE(v string) predicate.Review

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

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.Review

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

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.Review

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

func DeletedByIn

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

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

func DeletedByIsNil

func DeletedByIsNil() predicate.Review

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

func DeletedByLT

func DeletedByLT(v string) predicate.Review

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

func DeletedByLTE

func DeletedByLTE(v string) predicate.Review

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

func DeletedByNEQ

func DeletedByNEQ(v string) predicate.Review

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

func DeletedByNotIn

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

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

func DeletedByNotNil

func DeletedByNotNil() predicate.Review

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

func Details

func Details(v string) predicate.Review

Details applies equality check predicate on the "details" field. It's identical to DetailsEQ.

func DetailsContains

func DetailsContains(v string) predicate.Review

DetailsContains applies the Contains predicate on the "details" field.

func DetailsContainsFold

func DetailsContainsFold(v string) predicate.Review

DetailsContainsFold applies the ContainsFold predicate on the "details" field.

func DetailsEQ

func DetailsEQ(v string) predicate.Review

DetailsEQ applies the EQ predicate on the "details" field.

func DetailsEqualFold

func DetailsEqualFold(v string) predicate.Review

DetailsEqualFold applies the EqualFold predicate on the "details" field.

func DetailsGT

func DetailsGT(v string) predicate.Review

DetailsGT applies the GT predicate on the "details" field.

func DetailsGTE

func DetailsGTE(v string) predicate.Review

DetailsGTE applies the GTE predicate on the "details" field.

func DetailsHasPrefix

func DetailsHasPrefix(v string) predicate.Review

DetailsHasPrefix applies the HasPrefix predicate on the "details" field.

func DetailsHasSuffix

func DetailsHasSuffix(v string) predicate.Review

DetailsHasSuffix applies the HasSuffix predicate on the "details" field.

func DetailsIn

func DetailsIn(vs ...string) predicate.Review

DetailsIn applies the In predicate on the "details" field.

func DetailsIsNil

func DetailsIsNil() predicate.Review

DetailsIsNil applies the IsNil predicate on the "details" field.

func DetailsLT

func DetailsLT(v string) predicate.Review

DetailsLT applies the LT predicate on the "details" field.

func DetailsLTE

func DetailsLTE(v string) predicate.Review

DetailsLTE applies the LTE predicate on the "details" field.

func DetailsNEQ

func DetailsNEQ(v string) predicate.Review

DetailsNEQ applies the NEQ predicate on the "details" field.

func DetailsNotIn

func DetailsNotIn(vs ...string) predicate.Review

DetailsNotIn applies the NotIn predicate on the "details" field.

func DetailsNotNil

func DetailsNotNil() predicate.Review

DetailsNotNil applies the NotNil predicate on the "details" field.

func EnvironmentID added in v1.5.0

func EnvironmentID(v string) predicate.Review

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.Review

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

func EnvironmentIDContainsFold added in v1.5.0

func EnvironmentIDContainsFold(v string) predicate.Review

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

func EnvironmentIDEQ added in v1.5.0

func EnvironmentIDEQ(v string) predicate.Review

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

func EnvironmentIDEqualFold added in v1.5.0

func EnvironmentIDEqualFold(v string) predicate.Review

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

func EnvironmentIDGT added in v1.5.0

func EnvironmentIDGT(v string) predicate.Review

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

func EnvironmentIDGTE added in v1.5.0

func EnvironmentIDGTE(v string) predicate.Review

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

func EnvironmentIDHasPrefix added in v1.5.0

func EnvironmentIDHasPrefix(v string) predicate.Review

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

func EnvironmentIDHasSuffix added in v1.5.0

func EnvironmentIDHasSuffix(v string) predicate.Review

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

func EnvironmentIDIn added in v1.5.0

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

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

func EnvironmentIDIsNil added in v1.5.0

func EnvironmentIDIsNil() predicate.Review

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

func EnvironmentIDLT added in v1.5.0

func EnvironmentIDLT(v string) predicate.Review

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

func EnvironmentIDLTE added in v1.5.0

func EnvironmentIDLTE(v string) predicate.Review

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

func EnvironmentIDNEQ added in v1.5.0

func EnvironmentIDNEQ(v string) predicate.Review

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

func EnvironmentIDNotIn added in v1.5.0

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

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

func EnvironmentIDNotNil added in v1.5.0

func EnvironmentIDNotNil() predicate.Review

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

func EnvironmentName added in v1.5.0

func EnvironmentName(v string) predicate.Review

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.Review

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

func EnvironmentNameContainsFold added in v1.5.0

func EnvironmentNameContainsFold(v string) predicate.Review

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

func EnvironmentNameEQ added in v1.5.0

func EnvironmentNameEQ(v string) predicate.Review

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

func EnvironmentNameEqualFold added in v1.5.0

func EnvironmentNameEqualFold(v string) predicate.Review

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

func EnvironmentNameGT added in v1.5.0

func EnvironmentNameGT(v string) predicate.Review

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

func EnvironmentNameGTE added in v1.5.0

func EnvironmentNameGTE(v string) predicate.Review

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

func EnvironmentNameHasPrefix added in v1.5.0

func EnvironmentNameHasPrefix(v string) predicate.Review

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

func EnvironmentNameHasSuffix added in v1.5.0

func EnvironmentNameHasSuffix(v string) predicate.Review

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

func EnvironmentNameIn added in v1.5.0

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

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

func EnvironmentNameIsNil added in v1.5.0

func EnvironmentNameIsNil() predicate.Review

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

func EnvironmentNameLT added in v1.5.0

func EnvironmentNameLT(v string) predicate.Review

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

func EnvironmentNameLTE added in v1.5.0

func EnvironmentNameLTE(v string) predicate.Review

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

func EnvironmentNameNEQ added in v1.5.0

func EnvironmentNameNEQ(v string) predicate.Review

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

func EnvironmentNameNotIn added in v1.5.0

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

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

func EnvironmentNameNotNil added in v1.5.0

func EnvironmentNameNotNil() predicate.Review

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

func ExternalID

func ExternalID(v string) predicate.Review

ExternalID applies equality check predicate on the "external_id" field. It's identical to ExternalIDEQ.

func ExternalIDContains

func ExternalIDContains(v string) predicate.Review

ExternalIDContains applies the Contains predicate on the "external_id" field.

func ExternalIDContainsFold

func ExternalIDContainsFold(v string) predicate.Review

ExternalIDContainsFold applies the ContainsFold predicate on the "external_id" field.

func ExternalIDEQ

func ExternalIDEQ(v string) predicate.Review

ExternalIDEQ applies the EQ predicate on the "external_id" field.

func ExternalIDEqualFold

func ExternalIDEqualFold(v string) predicate.Review

ExternalIDEqualFold applies the EqualFold predicate on the "external_id" field.

func ExternalIDGT

func ExternalIDGT(v string) predicate.Review

ExternalIDGT applies the GT predicate on the "external_id" field.

func ExternalIDGTE

func ExternalIDGTE(v string) predicate.Review

ExternalIDGTE applies the GTE predicate on the "external_id" field.

func ExternalIDHasPrefix

func ExternalIDHasPrefix(v string) predicate.Review

ExternalIDHasPrefix applies the HasPrefix predicate on the "external_id" field.

func ExternalIDHasSuffix

func ExternalIDHasSuffix(v string) predicate.Review

ExternalIDHasSuffix applies the HasSuffix predicate on the "external_id" field.

func ExternalIDIn

func ExternalIDIn(vs ...string) predicate.Review

ExternalIDIn applies the In predicate on the "external_id" field.

func ExternalIDIsNil

func ExternalIDIsNil() predicate.Review

ExternalIDIsNil applies the IsNil predicate on the "external_id" field.

func ExternalIDLT

func ExternalIDLT(v string) predicate.Review

ExternalIDLT applies the LT predicate on the "external_id" field.

func ExternalIDLTE

func ExternalIDLTE(v string) predicate.Review

ExternalIDLTE applies the LTE predicate on the "external_id" field.

func ExternalIDNEQ

func ExternalIDNEQ(v string) predicate.Review

ExternalIDNEQ applies the NEQ predicate on the "external_id" field.

func ExternalIDNotIn

func ExternalIDNotIn(vs ...string) predicate.Review

ExternalIDNotIn applies the NotIn predicate on the "external_id" field.

func ExternalIDNotNil

func ExternalIDNotNil() predicate.Review

ExternalIDNotNil applies the NotNil predicate on the "external_id" field.

func ExternalOwnerID

func ExternalOwnerID(v string) predicate.Review

ExternalOwnerID applies equality check predicate on the "external_owner_id" field. It's identical to ExternalOwnerIDEQ.

func ExternalOwnerIDContains

func ExternalOwnerIDContains(v string) predicate.Review

ExternalOwnerIDContains applies the Contains predicate on the "external_owner_id" field.

func ExternalOwnerIDContainsFold

func ExternalOwnerIDContainsFold(v string) predicate.Review

ExternalOwnerIDContainsFold applies the ContainsFold predicate on the "external_owner_id" field.

func ExternalOwnerIDEQ

func ExternalOwnerIDEQ(v string) predicate.Review

ExternalOwnerIDEQ applies the EQ predicate on the "external_owner_id" field.

func ExternalOwnerIDEqualFold

func ExternalOwnerIDEqualFold(v string) predicate.Review

ExternalOwnerIDEqualFold applies the EqualFold predicate on the "external_owner_id" field.

func ExternalOwnerIDGT

func ExternalOwnerIDGT(v string) predicate.Review

ExternalOwnerIDGT applies the GT predicate on the "external_owner_id" field.

func ExternalOwnerIDGTE

func ExternalOwnerIDGTE(v string) predicate.Review

ExternalOwnerIDGTE applies the GTE predicate on the "external_owner_id" field.

func ExternalOwnerIDHasPrefix

func ExternalOwnerIDHasPrefix(v string) predicate.Review

ExternalOwnerIDHasPrefix applies the HasPrefix predicate on the "external_owner_id" field.

func ExternalOwnerIDHasSuffix

func ExternalOwnerIDHasSuffix(v string) predicate.Review

ExternalOwnerIDHasSuffix applies the HasSuffix predicate on the "external_owner_id" field.

func ExternalOwnerIDIn

func ExternalOwnerIDIn(vs ...string) predicate.Review

ExternalOwnerIDIn applies the In predicate on the "external_owner_id" field.

func ExternalOwnerIDIsNil

func ExternalOwnerIDIsNil() predicate.Review

ExternalOwnerIDIsNil applies the IsNil predicate on the "external_owner_id" field.

func ExternalOwnerIDLT

func ExternalOwnerIDLT(v string) predicate.Review

ExternalOwnerIDLT applies the LT predicate on the "external_owner_id" field.

func ExternalOwnerIDLTE

func ExternalOwnerIDLTE(v string) predicate.Review

ExternalOwnerIDLTE applies the LTE predicate on the "external_owner_id" field.

func ExternalOwnerIDNEQ

func ExternalOwnerIDNEQ(v string) predicate.Review

ExternalOwnerIDNEQ applies the NEQ predicate on the "external_owner_id" field.

func ExternalOwnerIDNotIn

func ExternalOwnerIDNotIn(vs ...string) predicate.Review

ExternalOwnerIDNotIn applies the NotIn predicate on the "external_owner_id" field.

func ExternalOwnerIDNotNil

func ExternalOwnerIDNotNil() predicate.Review

ExternalOwnerIDNotNil applies the NotNil predicate on the "external_owner_id" field.

func ExternalURI

func ExternalURI(v string) predicate.Review

ExternalURI applies equality check predicate on the "external_uri" field. It's identical to ExternalURIEQ.

func ExternalURIContains

func ExternalURIContains(v string) predicate.Review

ExternalURIContains applies the Contains predicate on the "external_uri" field.

func ExternalURIContainsFold

func ExternalURIContainsFold(v string) predicate.Review

ExternalURIContainsFold applies the ContainsFold predicate on the "external_uri" field.

func ExternalURIEQ

func ExternalURIEQ(v string) predicate.Review

ExternalURIEQ applies the EQ predicate on the "external_uri" field.

func ExternalURIEqualFold

func ExternalURIEqualFold(v string) predicate.Review

ExternalURIEqualFold applies the EqualFold predicate on the "external_uri" field.

func ExternalURIGT

func ExternalURIGT(v string) predicate.Review

ExternalURIGT applies the GT predicate on the "external_uri" field.

func ExternalURIGTE

func ExternalURIGTE(v string) predicate.Review

ExternalURIGTE applies the GTE predicate on the "external_uri" field.

func ExternalURIHasPrefix

func ExternalURIHasPrefix(v string) predicate.Review

ExternalURIHasPrefix applies the HasPrefix predicate on the "external_uri" field.

func ExternalURIHasSuffix

func ExternalURIHasSuffix(v string) predicate.Review

ExternalURIHasSuffix applies the HasSuffix predicate on the "external_uri" field.

func ExternalURIIn

func ExternalURIIn(vs ...string) predicate.Review

ExternalURIIn applies the In predicate on the "external_uri" field.

func ExternalURIIsNil

func ExternalURIIsNil() predicate.Review

ExternalURIIsNil applies the IsNil predicate on the "external_uri" field.

func ExternalURILT

func ExternalURILT(v string) predicate.Review

ExternalURILT applies the LT predicate on the "external_uri" field.

func ExternalURILTE

func ExternalURILTE(v string) predicate.Review

ExternalURILTE applies the LTE predicate on the "external_uri" field.

func ExternalURINEQ

func ExternalURINEQ(v string) predicate.Review

ExternalURINEQ applies the NEQ predicate on the "external_uri" field.

func ExternalURINotIn

func ExternalURINotIn(vs ...string) predicate.Review

ExternalURINotIn applies the NotIn predicate on the "external_uri" field.

func ExternalURINotNil

func ExternalURINotNil() predicate.Review

ExternalURINotNil applies the NotNil predicate on the "external_uri" field.

func HasActionPlans

func HasActionPlans() predicate.Review

HasActionPlans applies the HasEdge predicate on the "action_plans" edge.

func HasActionPlansWith

func HasActionPlansWith(preds ...predicate.ActionPlan) predicate.Review

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

func HasAssets

func HasAssets() predicate.Review

HasAssets applies the HasEdge predicate on the "assets" edge.

func HasAssetsWith

func HasAssetsWith(preds ...predicate.Asset) predicate.Review

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

func HasBlockedGroups

func HasBlockedGroups() predicate.Review

HasBlockedGroups applies the HasEdge predicate on the "blocked_groups" edge.

func HasBlockedGroupsWith

func HasBlockedGroupsWith(preds ...predicate.Group) predicate.Review

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

func HasComments

func HasComments() predicate.Review

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

func HasCommentsWith

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

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

func HasControls

func HasControls() predicate.Review

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

func HasControlsWith

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

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

func HasEditors

func HasEditors() predicate.Review

HasEditors applies the HasEdge predicate on the "editors" edge.

func HasEditorsWith

func HasEditorsWith(preds ...predicate.Group) predicate.Review

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

func HasEntities

func HasEntities() predicate.Review

HasEntities applies the HasEdge predicate on the "entities" edge.

func HasEntitiesWith

func HasEntitiesWith(preds ...predicate.Entity) predicate.Review

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

func HasEnvironment added in v1.5.0

func HasEnvironment() predicate.Review

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

func HasEnvironmentWith added in v1.5.0

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

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

func HasFiles

func HasFiles() predicate.Review

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

func HasFilesWith

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

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

func HasFindings

func HasFindings() predicate.Review

HasFindings applies the HasEdge predicate on the "findings" edge.

func HasFindingsWith

func HasFindingsWith(preds ...predicate.Finding) predicate.Review

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

func HasIntegrations

func HasIntegrations() predicate.Review

HasIntegrations applies the HasEdge predicate on the "integrations" edge.

func HasIntegrationsWith

func HasIntegrationsWith(preds ...predicate.Integration) predicate.Review

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

func HasOwner

func HasOwner() predicate.Review

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

func HasOwnerWith

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

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

func HasPrograms

func HasPrograms() predicate.Review

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

func HasProgramsWith

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

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

func HasRemediations

func HasRemediations() predicate.Review

HasRemediations applies the HasEdge predicate on the "remediations" edge.

func HasRemediationsWith

func HasRemediationsWith(preds ...predicate.Remediation) predicate.Review

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

func HasReviewer

func HasReviewer() predicate.Review

HasReviewer applies the HasEdge predicate on the "reviewer" edge.

func HasReviewerWith

func HasReviewerWith(preds ...predicate.User) predicate.Review

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

func HasRisks

func HasRisks() predicate.Review

HasRisks applies the HasEdge predicate on the "risks" edge.

func HasRisksWith

func HasRisksWith(preds ...predicate.Risk) predicate.Review

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

func HasScope added in v1.5.0

func HasScope() predicate.Review

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

func HasScopeWith added in v1.5.0

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

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

func HasSubcontrols

func HasSubcontrols() predicate.Review

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

func HasSubcontrolsWith

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

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

func HasTasks

func HasTasks() predicate.Review

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

func HasTasksWith

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

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

func HasViewers

func HasViewers() predicate.Review

HasViewers applies the HasEdge predicate on the "viewers" edge.

func HasViewersWith

func HasViewersWith(preds ...predicate.Group) predicate.Review

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

func HasVulnerabilities

func HasVulnerabilities() predicate.Review

HasVulnerabilities applies the HasEdge predicate on the "vulnerabilities" edge.

func HasVulnerabilitiesWith

func HasVulnerabilitiesWith(preds ...predicate.Vulnerability) predicate.Review

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

func ID

func ID(id string) predicate.Review

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.Review

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

func IDEQ(id string) predicate.Review

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

func IDEqualFold(id string) predicate.Review

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

func IDGT(id string) predicate.Review

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.Review

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.Review

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.Review

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.Review

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func InternalNotes

func InternalNotes(v string) predicate.Review

InternalNotes applies equality check predicate on the "internal_notes" field. It's identical to InternalNotesEQ.

func InternalNotesContains

func InternalNotesContains(v string) predicate.Review

InternalNotesContains applies the Contains predicate on the "internal_notes" field.

func InternalNotesContainsFold

func InternalNotesContainsFold(v string) predicate.Review

InternalNotesContainsFold applies the ContainsFold predicate on the "internal_notes" field.

func InternalNotesEQ

func InternalNotesEQ(v string) predicate.Review

InternalNotesEQ applies the EQ predicate on the "internal_notes" field.

func InternalNotesEqualFold

func InternalNotesEqualFold(v string) predicate.Review

InternalNotesEqualFold applies the EqualFold predicate on the "internal_notes" field.

func InternalNotesGT

func InternalNotesGT(v string) predicate.Review

InternalNotesGT applies the GT predicate on the "internal_notes" field.

func InternalNotesGTE

func InternalNotesGTE(v string) predicate.Review

InternalNotesGTE applies the GTE predicate on the "internal_notes" field.

func InternalNotesHasPrefix

func InternalNotesHasPrefix(v string) predicate.Review

InternalNotesHasPrefix applies the HasPrefix predicate on the "internal_notes" field.

func InternalNotesHasSuffix

func InternalNotesHasSuffix(v string) predicate.Review

InternalNotesHasSuffix applies the HasSuffix predicate on the "internal_notes" field.

func InternalNotesIn

func InternalNotesIn(vs ...string) predicate.Review

InternalNotesIn applies the In predicate on the "internal_notes" field.

func InternalNotesIsNil

func InternalNotesIsNil() predicate.Review

InternalNotesIsNil applies the IsNil predicate on the "internal_notes" field.

func InternalNotesLT

func InternalNotesLT(v string) predicate.Review

InternalNotesLT applies the LT predicate on the "internal_notes" field.

func InternalNotesLTE

func InternalNotesLTE(v string) predicate.Review

InternalNotesLTE applies the LTE predicate on the "internal_notes" field.

func InternalNotesNEQ

func InternalNotesNEQ(v string) predicate.Review

InternalNotesNEQ applies the NEQ predicate on the "internal_notes" field.

func InternalNotesNotIn

func InternalNotesNotIn(vs ...string) predicate.Review

InternalNotesNotIn applies the NotIn predicate on the "internal_notes" field.

func InternalNotesNotNil

func InternalNotesNotNil() predicate.Review

InternalNotesNotNil applies the NotNil predicate on the "internal_notes" field.

func MetadataIsNil

func MetadataIsNil() predicate.Review

MetadataIsNil applies the IsNil predicate on the "metadata" field.

func MetadataNotNil

func MetadataNotNil() predicate.Review

MetadataNotNil applies the NotNil predicate on the "metadata" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Review) predicate.Review

Or groups predicates with the OR operator between them.

func OwnerID

func OwnerID(v string) predicate.Review

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

func OwnerIDContains

func OwnerIDContains(v string) predicate.Review

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

func OwnerIDContainsFold

func OwnerIDContainsFold(v string) predicate.Review

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

func OwnerIDEQ

func OwnerIDEQ(v string) predicate.Review

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

func OwnerIDEqualFold

func OwnerIDEqualFold(v string) predicate.Review

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

func OwnerIDGT

func OwnerIDGT(v string) predicate.Review

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

func OwnerIDGTE

func OwnerIDGTE(v string) predicate.Review

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

func OwnerIDHasPrefix

func OwnerIDHasPrefix(v string) predicate.Review

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

func OwnerIDHasSuffix

func OwnerIDHasSuffix(v string) predicate.Review

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

func OwnerIDIn

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

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

func OwnerIDIsNil

func OwnerIDIsNil() predicate.Review

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

func OwnerIDLT

func OwnerIDLT(v string) predicate.Review

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

func OwnerIDLTE

func OwnerIDLTE(v string) predicate.Review

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

func OwnerIDNEQ

func OwnerIDNEQ(v string) predicate.Review

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

func OwnerIDNotIn

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

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

func OwnerIDNotNil

func OwnerIDNotNil() predicate.Review

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

func RawPayloadIsNil

func RawPayloadIsNil() predicate.Review

RawPayloadIsNil applies the IsNil predicate on the "raw_payload" field.

func RawPayloadNotNil

func RawPayloadNotNil() predicate.Review

RawPayloadNotNil applies the NotNil predicate on the "raw_payload" field.

func ReportedAt

func ReportedAt(v models.DateTime) predicate.Review

ReportedAt applies equality check predicate on the "reported_at" field. It's identical to ReportedAtEQ.

func ReportedAtEQ

func ReportedAtEQ(v models.DateTime) predicate.Review

ReportedAtEQ applies the EQ predicate on the "reported_at" field.

func ReportedAtGT

func ReportedAtGT(v models.DateTime) predicate.Review

ReportedAtGT applies the GT predicate on the "reported_at" field.

func ReportedAtGTE

func ReportedAtGTE(v models.DateTime) predicate.Review

ReportedAtGTE applies the GTE predicate on the "reported_at" field.

func ReportedAtIn

func ReportedAtIn(vs ...models.DateTime) predicate.Review

ReportedAtIn applies the In predicate on the "reported_at" field.

func ReportedAtIsNil

func ReportedAtIsNil() predicate.Review

ReportedAtIsNil applies the IsNil predicate on the "reported_at" field.

func ReportedAtLT

func ReportedAtLT(v models.DateTime) predicate.Review

ReportedAtLT applies the LT predicate on the "reported_at" field.

func ReportedAtLTE

func ReportedAtLTE(v models.DateTime) predicate.Review

ReportedAtLTE applies the LTE predicate on the "reported_at" field.

func ReportedAtNEQ

func ReportedAtNEQ(v models.DateTime) predicate.Review

ReportedAtNEQ applies the NEQ predicate on the "reported_at" field.

func ReportedAtNotIn

func ReportedAtNotIn(vs ...models.DateTime) predicate.Review

ReportedAtNotIn applies the NotIn predicate on the "reported_at" field.

func ReportedAtNotNil

func ReportedAtNotNil() predicate.Review

ReportedAtNotNil applies the NotNil predicate on the "reported_at" field.

func Reporter

func Reporter(v string) predicate.Review

Reporter applies equality check predicate on the "reporter" field. It's identical to ReporterEQ.

func ReporterContains

func ReporterContains(v string) predicate.Review

ReporterContains applies the Contains predicate on the "reporter" field.

func ReporterContainsFold

func ReporterContainsFold(v string) predicate.Review

ReporterContainsFold applies the ContainsFold predicate on the "reporter" field.

func ReporterEQ

func ReporterEQ(v string) predicate.Review

ReporterEQ applies the EQ predicate on the "reporter" field.

func ReporterEqualFold

func ReporterEqualFold(v string) predicate.Review

ReporterEqualFold applies the EqualFold predicate on the "reporter" field.

func ReporterGT

func ReporterGT(v string) predicate.Review

ReporterGT applies the GT predicate on the "reporter" field.

func ReporterGTE

func ReporterGTE(v string) predicate.Review

ReporterGTE applies the GTE predicate on the "reporter" field.

func ReporterHasPrefix

func ReporterHasPrefix(v string) predicate.Review

ReporterHasPrefix applies the HasPrefix predicate on the "reporter" field.

func ReporterHasSuffix

func ReporterHasSuffix(v string) predicate.Review

ReporterHasSuffix applies the HasSuffix predicate on the "reporter" field.

func ReporterIn

func ReporterIn(vs ...string) predicate.Review

ReporterIn applies the In predicate on the "reporter" field.

func ReporterIsNil

func ReporterIsNil() predicate.Review

ReporterIsNil applies the IsNil predicate on the "reporter" field.

func ReporterLT

func ReporterLT(v string) predicate.Review

ReporterLT applies the LT predicate on the "reporter" field.

func ReporterLTE

func ReporterLTE(v string) predicate.Review

ReporterLTE applies the LTE predicate on the "reporter" field.

func ReporterNEQ

func ReporterNEQ(v string) predicate.Review

ReporterNEQ applies the NEQ predicate on the "reporter" field.

func ReporterNotIn

func ReporterNotIn(vs ...string) predicate.Review

ReporterNotIn applies the NotIn predicate on the "reporter" field.

func ReporterNotNil

func ReporterNotNil() predicate.Review

ReporterNotNil applies the NotNil predicate on the "reporter" field.

func ReviewedAt

func ReviewedAt(v models.DateTime) predicate.Review

ReviewedAt applies equality check predicate on the "reviewed_at" field. It's identical to ReviewedAtEQ.

func ReviewedAtEQ

func ReviewedAtEQ(v models.DateTime) predicate.Review

ReviewedAtEQ applies the EQ predicate on the "reviewed_at" field.

func ReviewedAtGT

func ReviewedAtGT(v models.DateTime) predicate.Review

ReviewedAtGT applies the GT predicate on the "reviewed_at" field.

func ReviewedAtGTE

func ReviewedAtGTE(v models.DateTime) predicate.Review

ReviewedAtGTE applies the GTE predicate on the "reviewed_at" field.

func ReviewedAtIn

func ReviewedAtIn(vs ...models.DateTime) predicate.Review

ReviewedAtIn applies the In predicate on the "reviewed_at" field.

func ReviewedAtIsNil

func ReviewedAtIsNil() predicate.Review

ReviewedAtIsNil applies the IsNil predicate on the "reviewed_at" field.

func ReviewedAtLT

func ReviewedAtLT(v models.DateTime) predicate.Review

ReviewedAtLT applies the LT predicate on the "reviewed_at" field.

func ReviewedAtLTE

func ReviewedAtLTE(v models.DateTime) predicate.Review

ReviewedAtLTE applies the LTE predicate on the "reviewed_at" field.

func ReviewedAtNEQ

func ReviewedAtNEQ(v models.DateTime) predicate.Review

ReviewedAtNEQ applies the NEQ predicate on the "reviewed_at" field.

func ReviewedAtNotIn

func ReviewedAtNotIn(vs ...models.DateTime) predicate.Review

ReviewedAtNotIn applies the NotIn predicate on the "reviewed_at" field.

func ReviewedAtNotNil

func ReviewedAtNotNil() predicate.Review

ReviewedAtNotNil applies the NotNil predicate on the "reviewed_at" field.

func ReviewerID

func ReviewerID(v string) predicate.Review

ReviewerID applies equality check predicate on the "reviewer_id" field. It's identical to ReviewerIDEQ.

func ReviewerIDContains

func ReviewerIDContains(v string) predicate.Review

ReviewerIDContains applies the Contains predicate on the "reviewer_id" field.

func ReviewerIDContainsFold

func ReviewerIDContainsFold(v string) predicate.Review

ReviewerIDContainsFold applies the ContainsFold predicate on the "reviewer_id" field.

func ReviewerIDEQ

func ReviewerIDEQ(v string) predicate.Review

ReviewerIDEQ applies the EQ predicate on the "reviewer_id" field.

func ReviewerIDEqualFold

func ReviewerIDEqualFold(v string) predicate.Review

ReviewerIDEqualFold applies the EqualFold predicate on the "reviewer_id" field.

func ReviewerIDGT

func ReviewerIDGT(v string) predicate.Review

ReviewerIDGT applies the GT predicate on the "reviewer_id" field.

func ReviewerIDGTE

func ReviewerIDGTE(v string) predicate.Review

ReviewerIDGTE applies the GTE predicate on the "reviewer_id" field.

func ReviewerIDHasPrefix

func ReviewerIDHasPrefix(v string) predicate.Review

ReviewerIDHasPrefix applies the HasPrefix predicate on the "reviewer_id" field.

func ReviewerIDHasSuffix

func ReviewerIDHasSuffix(v string) predicate.Review

ReviewerIDHasSuffix applies the HasSuffix predicate on the "reviewer_id" field.

func ReviewerIDIn

func ReviewerIDIn(vs ...string) predicate.Review

ReviewerIDIn applies the In predicate on the "reviewer_id" field.

func ReviewerIDIsNil

func ReviewerIDIsNil() predicate.Review

ReviewerIDIsNil applies the IsNil predicate on the "reviewer_id" field.

func ReviewerIDLT

func ReviewerIDLT(v string) predicate.Review

ReviewerIDLT applies the LT predicate on the "reviewer_id" field.

func ReviewerIDLTE

func ReviewerIDLTE(v string) predicate.Review

ReviewerIDLTE applies the LTE predicate on the "reviewer_id" field.

func ReviewerIDNEQ

func ReviewerIDNEQ(v string) predicate.Review

ReviewerIDNEQ applies the NEQ predicate on the "reviewer_id" field.

func ReviewerIDNotIn

func ReviewerIDNotIn(vs ...string) predicate.Review

ReviewerIDNotIn applies the NotIn predicate on the "reviewer_id" field.

func ReviewerIDNotNil

func ReviewerIDNotNil() predicate.Review

ReviewerIDNotNil applies the NotNil predicate on the "reviewer_id" field.

func ScopeID added in v1.5.0

func ScopeID(v string) predicate.Review

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.Review

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

func ScopeIDContainsFold added in v1.5.0

func ScopeIDContainsFold(v string) predicate.Review

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

func ScopeIDEQ added in v1.5.0

func ScopeIDEQ(v string) predicate.Review

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

func ScopeIDEqualFold added in v1.5.0

func ScopeIDEqualFold(v string) predicate.Review

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

func ScopeIDGT added in v1.5.0

func ScopeIDGT(v string) predicate.Review

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

func ScopeIDGTE added in v1.5.0

func ScopeIDGTE(v string) predicate.Review

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

func ScopeIDHasPrefix added in v1.5.0

func ScopeIDHasPrefix(v string) predicate.Review

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

func ScopeIDHasSuffix added in v1.5.0

func ScopeIDHasSuffix(v string) predicate.Review

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

func ScopeIDIn added in v1.5.0

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

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

func ScopeIDIsNil added in v1.5.0

func ScopeIDIsNil() predicate.Review

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

func ScopeIDLT added in v1.5.0

func ScopeIDLT(v string) predicate.Review

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

func ScopeIDLTE added in v1.5.0

func ScopeIDLTE(v string) predicate.Review

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

func ScopeIDNEQ added in v1.5.0

func ScopeIDNEQ(v string) predicate.Review

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

func ScopeIDNotIn added in v1.5.0

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

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

func ScopeIDNotNil added in v1.5.0

func ScopeIDNotNil() predicate.Review

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

func ScopeName added in v1.5.0

func ScopeName(v string) predicate.Review

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.Review

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

func ScopeNameContainsFold added in v1.5.0

func ScopeNameContainsFold(v string) predicate.Review

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

func ScopeNameEQ added in v1.5.0

func ScopeNameEQ(v string) predicate.Review

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

func ScopeNameEqualFold added in v1.5.0

func ScopeNameEqualFold(v string) predicate.Review

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

func ScopeNameGT added in v1.5.0

func ScopeNameGT(v string) predicate.Review

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

func ScopeNameGTE added in v1.5.0

func ScopeNameGTE(v string) predicate.Review

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

func ScopeNameHasPrefix added in v1.5.0

func ScopeNameHasPrefix(v string) predicate.Review

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

func ScopeNameHasSuffix added in v1.5.0

func ScopeNameHasSuffix(v string) predicate.Review

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

func ScopeNameIn added in v1.5.0

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

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

func ScopeNameIsNil added in v1.5.0

func ScopeNameIsNil() predicate.Review

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

func ScopeNameLT added in v1.5.0

func ScopeNameLT(v string) predicate.Review

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

func ScopeNameLTE added in v1.5.0

func ScopeNameLTE(v string) predicate.Review

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

func ScopeNameNEQ added in v1.5.0

func ScopeNameNEQ(v string) predicate.Review

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

func ScopeNameNotIn added in v1.5.0

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

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

func ScopeNameNotNil added in v1.5.0

func ScopeNameNotNil() predicate.Review

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

func Source

func Source(v string) predicate.Review

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

func SourceContains

func SourceContains(v string) predicate.Review

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

func SourceContainsFold

func SourceContainsFold(v string) predicate.Review

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

func SourceEQ

func SourceEQ(v string) predicate.Review

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

func SourceEqualFold

func SourceEqualFold(v string) predicate.Review

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

func SourceGT

func SourceGT(v string) predicate.Review

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

func SourceGTE

func SourceGTE(v string) predicate.Review

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

func SourceHasPrefix

func SourceHasPrefix(v string) predicate.Review

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

func SourceHasSuffix

func SourceHasSuffix(v string) predicate.Review

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

func SourceIn

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

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

func SourceIsNil

func SourceIsNil() predicate.Review

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

func SourceLT

func SourceLT(v string) predicate.Review

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

func SourceLTE

func SourceLTE(v string) predicate.Review

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

func SourceNEQ

func SourceNEQ(v string) predicate.Review

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

func SourceNotIn

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

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

func SourceNotNil

func SourceNotNil() predicate.Review

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

func State

func State(v string) predicate.Review

State applies equality check predicate on the "state" field. It's identical to StateEQ.

func StateContains

func StateContains(v string) predicate.Review

StateContains applies the Contains predicate on the "state" field.

func StateContainsFold

func StateContainsFold(v string) predicate.Review

StateContainsFold applies the ContainsFold predicate on the "state" field.

func StateEQ

func StateEQ(v string) predicate.Review

StateEQ applies the EQ predicate on the "state" field.

func StateEqualFold

func StateEqualFold(v string) predicate.Review

StateEqualFold applies the EqualFold predicate on the "state" field.

func StateGT

func StateGT(v string) predicate.Review

StateGT applies the GT predicate on the "state" field.

func StateGTE

func StateGTE(v string) predicate.Review

StateGTE applies the GTE predicate on the "state" field.

func StateHasPrefix

func StateHasPrefix(v string) predicate.Review

StateHasPrefix applies the HasPrefix predicate on the "state" field.

func StateHasSuffix

func StateHasSuffix(v string) predicate.Review

StateHasSuffix applies the HasSuffix predicate on the "state" field.

func StateIn

func StateIn(vs ...string) predicate.Review

StateIn applies the In predicate on the "state" field.

func StateIsNil

func StateIsNil() predicate.Review

StateIsNil applies the IsNil predicate on the "state" field.

func StateLT

func StateLT(v string) predicate.Review

StateLT applies the LT predicate on the "state" field.

func StateLTE

func StateLTE(v string) predicate.Review

StateLTE applies the LTE predicate on the "state" field.

func StateNEQ

func StateNEQ(v string) predicate.Review

StateNEQ applies the NEQ predicate on the "state" field.

func StateNotIn

func StateNotIn(vs ...string) predicate.Review

StateNotIn applies the NotIn predicate on the "state" field.

func StateNotNil

func StateNotNil() predicate.Review

StateNotNil applies the NotNil predicate on the "state" field.

func Summary

func Summary(v string) predicate.Review

Summary applies equality check predicate on the "summary" field. It's identical to SummaryEQ.

func SummaryContains

func SummaryContains(v string) predicate.Review

SummaryContains applies the Contains predicate on the "summary" field.

func SummaryContainsFold

func SummaryContainsFold(v string) predicate.Review

SummaryContainsFold applies the ContainsFold predicate on the "summary" field.

func SummaryEQ

func SummaryEQ(v string) predicate.Review

SummaryEQ applies the EQ predicate on the "summary" field.

func SummaryEqualFold

func SummaryEqualFold(v string) predicate.Review

SummaryEqualFold applies the EqualFold predicate on the "summary" field.

func SummaryGT

func SummaryGT(v string) predicate.Review

SummaryGT applies the GT predicate on the "summary" field.

func SummaryGTE

func SummaryGTE(v string) predicate.Review

SummaryGTE applies the GTE predicate on the "summary" field.

func SummaryHasPrefix

func SummaryHasPrefix(v string) predicate.Review

SummaryHasPrefix applies the HasPrefix predicate on the "summary" field.

func SummaryHasSuffix

func SummaryHasSuffix(v string) predicate.Review

SummaryHasSuffix applies the HasSuffix predicate on the "summary" field.

func SummaryIn

func SummaryIn(vs ...string) predicate.Review

SummaryIn applies the In predicate on the "summary" field.

func SummaryIsNil

func SummaryIsNil() predicate.Review

SummaryIsNil applies the IsNil predicate on the "summary" field.

func SummaryLT

func SummaryLT(v string) predicate.Review

SummaryLT applies the LT predicate on the "summary" field.

func SummaryLTE

func SummaryLTE(v string) predicate.Review

SummaryLTE applies the LTE predicate on the "summary" field.

func SummaryNEQ

func SummaryNEQ(v string) predicate.Review

SummaryNEQ applies the NEQ predicate on the "summary" field.

func SummaryNotIn

func SummaryNotIn(vs ...string) predicate.Review

SummaryNotIn applies the NotIn predicate on the "summary" field.

func SummaryNotNil

func SummaryNotNil() predicate.Review

SummaryNotNil applies the NotNil predicate on the "summary" field.

func SystemInternalID

func SystemInternalID(v string) predicate.Review

SystemInternalID applies equality check predicate on the "system_internal_id" field. It's identical to SystemInternalIDEQ.

func SystemInternalIDContains

func SystemInternalIDContains(v string) predicate.Review

SystemInternalIDContains applies the Contains predicate on the "system_internal_id" field.

func SystemInternalIDContainsFold

func SystemInternalIDContainsFold(v string) predicate.Review

SystemInternalIDContainsFold applies the ContainsFold predicate on the "system_internal_id" field.

func SystemInternalIDEQ

func SystemInternalIDEQ(v string) predicate.Review

SystemInternalIDEQ applies the EQ predicate on the "system_internal_id" field.

func SystemInternalIDEqualFold

func SystemInternalIDEqualFold(v string) predicate.Review

SystemInternalIDEqualFold applies the EqualFold predicate on the "system_internal_id" field.

func SystemInternalIDGT

func SystemInternalIDGT(v string) predicate.Review

SystemInternalIDGT applies the GT predicate on the "system_internal_id" field.

func SystemInternalIDGTE

func SystemInternalIDGTE(v string) predicate.Review

SystemInternalIDGTE applies the GTE predicate on the "system_internal_id" field.

func SystemInternalIDHasPrefix

func SystemInternalIDHasPrefix(v string) predicate.Review

SystemInternalIDHasPrefix applies the HasPrefix predicate on the "system_internal_id" field.

func SystemInternalIDHasSuffix

func SystemInternalIDHasSuffix(v string) predicate.Review

SystemInternalIDHasSuffix applies the HasSuffix predicate on the "system_internal_id" field.

func SystemInternalIDIn

func SystemInternalIDIn(vs ...string) predicate.Review

SystemInternalIDIn applies the In predicate on the "system_internal_id" field.

func SystemInternalIDIsNil

func SystemInternalIDIsNil() predicate.Review

SystemInternalIDIsNil applies the IsNil predicate on the "system_internal_id" field.

func SystemInternalIDLT

func SystemInternalIDLT(v string) predicate.Review

SystemInternalIDLT applies the LT predicate on the "system_internal_id" field.

func SystemInternalIDLTE

func SystemInternalIDLTE(v string) predicate.Review

SystemInternalIDLTE applies the LTE predicate on the "system_internal_id" field.

func SystemInternalIDNEQ

func SystemInternalIDNEQ(v string) predicate.Review

SystemInternalIDNEQ applies the NEQ predicate on the "system_internal_id" field.

func SystemInternalIDNotIn

func SystemInternalIDNotIn(vs ...string) predicate.Review

SystemInternalIDNotIn applies the NotIn predicate on the "system_internal_id" field.

func SystemInternalIDNotNil

func SystemInternalIDNotNil() predicate.Review

SystemInternalIDNotNil applies the NotNil predicate on the "system_internal_id" field.

func SystemOwned

func SystemOwned(v bool) predicate.Review

SystemOwned applies equality check predicate on the "system_owned" field. It's identical to SystemOwnedEQ.

func SystemOwnedEQ

func SystemOwnedEQ(v bool) predicate.Review

SystemOwnedEQ applies the EQ predicate on the "system_owned" field.

func SystemOwnedIsNil

func SystemOwnedIsNil() predicate.Review

SystemOwnedIsNil applies the IsNil predicate on the "system_owned" field.

func SystemOwnedNEQ

func SystemOwnedNEQ(v bool) predicate.Review

SystemOwnedNEQ applies the NEQ predicate on the "system_owned" field.

func SystemOwnedNotNil

func SystemOwnedNotNil() predicate.Review

SystemOwnedNotNil applies the NotNil predicate on the "system_owned" field.

func TagsIsNil

func TagsIsNil() predicate.Review

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

func TagsNotNil

func TagsNotNil() predicate.Review

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

func Title

func Title(v string) predicate.Review

Title applies equality check predicate on the "title" field. It's identical to TitleEQ.

func TitleContains

func TitleContains(v string) predicate.Review

TitleContains applies the Contains predicate on the "title" field.

func TitleContainsFold

func TitleContainsFold(v string) predicate.Review

TitleContainsFold applies the ContainsFold predicate on the "title" field.

func TitleEQ

func TitleEQ(v string) predicate.Review

TitleEQ applies the EQ predicate on the "title" field.

func TitleEqualFold

func TitleEqualFold(v string) predicate.Review

TitleEqualFold applies the EqualFold predicate on the "title" field.

func TitleGT

func TitleGT(v string) predicate.Review

TitleGT applies the GT predicate on the "title" field.

func TitleGTE

func TitleGTE(v string) predicate.Review

TitleGTE applies the GTE predicate on the "title" field.

func TitleHasPrefix

func TitleHasPrefix(v string) predicate.Review

TitleHasPrefix applies the HasPrefix predicate on the "title" field.

func TitleHasSuffix

func TitleHasSuffix(v string) predicate.Review

TitleHasSuffix applies the HasSuffix predicate on the "title" field.

func TitleIn

func TitleIn(vs ...string) predicate.Review

TitleIn applies the In predicate on the "title" field.

func TitleLT

func TitleLT(v string) predicate.Review

TitleLT applies the LT predicate on the "title" field.

func TitleLTE

func TitleLTE(v string) predicate.Review

TitleLTE applies the LTE predicate on the "title" field.

func TitleNEQ

func TitleNEQ(v string) predicate.Review

TitleNEQ applies the NEQ predicate on the "title" field.

func TitleNotIn

func TitleNotIn(vs ...string) predicate.Review

TitleNotIn applies the NotIn predicate on the "title" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Review

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Review

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Review

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Review

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.Review

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Review

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Review

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Review

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.Review

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

func UpdatedBy

func UpdatedBy(v string) predicate.Review

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.Review

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.Review

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.Review

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.Review

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.Review

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.Review

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.Review

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.Review

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.Review

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.Review

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.Review

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.Review

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.Review

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

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the Review queries.

func ByActionPlans

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

ByActionPlans orders the results by action_plans terms.

func ByActionPlansCount

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

ByActionPlansCount orders the results by action_plans count.

func ByApproved

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

ByApproved orders the results by the approved field.

func ByApprovedAt

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

ByApprovedAt orders the results by the approved_at field.

func ByAssets

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

ByAssets orders the results by assets terms.

func ByAssetsCount

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

ByAssetsCount orders the results by assets count.

func ByBlockedGroups

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

ByBlockedGroups orders the results by blocked_groups terms.

func ByBlockedGroupsCount

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

ByBlockedGroupsCount orders the results by blocked_groups count.

func ByCategory

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

ByCategory orders the results by the category field.

func ByClassification

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

ByClassification orders the results by the classification field.

func ByComments

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

ByComments orders the results by comments terms.

func ByCommentsCount

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

ByCommentsCount orders the results by comments 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 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 ByDetails

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

ByDetails orders the results by the details field.

func ByEditors

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

ByEditors orders the results by editors terms.

func ByEditorsCount

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

ByEditorsCount orders the results by editors count.

func ByEntities

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

ByEntities orders the results by entities terms.

func ByEntitiesCount

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

ByEntitiesCount orders the results by entities count.

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 ByExternalID

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

ByExternalID orders the results by the external_id field.

func ByExternalOwnerID

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

ByExternalOwnerID orders the results by the external_owner_id field.

func ByExternalURI

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

ByExternalURI orders the results by the external_uri 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 ByFindings

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

ByFindings orders the results by findings terms.

func ByFindingsCount

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

ByFindingsCount orders the results by findings count.

func ByID

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

ByID orders the results by the id field.

func ByIntegrations

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

ByIntegrations orders the results by integrations terms.

func ByIntegrationsCount

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

ByIntegrationsCount orders the results by integrations count.

func ByInternalNotes

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

ByInternalNotes orders the results by the internal_notes 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 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 ByRemediations

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

ByRemediations orders the results by remediations terms.

func ByRemediationsCount

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

ByRemediationsCount orders the results by remediations count.

func ByReportedAt

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

ByReportedAt orders the results by the reported_at field.

func ByReporter

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

ByReporter orders the results by the reporter field.

func ByReviewedAt

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

ByReviewedAt orders the results by the reviewed_at field.

func ByReviewerField

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

ByReviewerField orders the results by reviewer field.

func ByReviewerID

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

ByReviewerID orders the results by the reviewer_id field.

func ByRisks

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

ByRisks orders the results by risks terms.

func ByRisksCount

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

ByRisksCount orders the results by risks 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 ByState

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

ByState orders the results by the state 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 BySummary

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

BySummary orders the results by the summary field.

func BySystemInternalID

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

BySystemInternalID orders the results by the system_internal_id field.

func BySystemOwned

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

BySystemOwned orders the results by the system_owned field.

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 ByTitle

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

ByTitle orders the results by the title 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 ByViewers

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

ByViewers orders the results by viewers terms.

func ByViewersCount

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

ByViewersCount orders the results by viewers count.

func ByVulnerabilities

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

ByVulnerabilities orders the results by vulnerabilities terms.

func ByVulnerabilitiesCount

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

ByVulnerabilitiesCount orders the results by vulnerabilities count.

Jump to

Keyboard shortcuts

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