Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Organization) predicate.Organization
- func CreatedAt(v time.Time) predicate.Organization
- func CreatedAtEQ(v time.Time) predicate.Organization
- func CreatedAtGT(v time.Time) predicate.Organization
- func CreatedAtGTE(v time.Time) predicate.Organization
- func CreatedAtIn(vs ...time.Time) predicate.Organization
- func CreatedAtLT(v time.Time) predicate.Organization
- func CreatedAtLTE(v time.Time) predicate.Organization
- func CreatedAtNEQ(v time.Time) predicate.Organization
- func CreatedAtNotIn(vs ...time.Time) predicate.Organization
- func HasIntegrations() predicate.Organization
- func HasIntegrationsWith(preds ...predicate.Integration) predicate.Organization
- func HasMemberships() predicate.Organization
- func HasMembershipsWith(preds ...predicate.Membership) predicate.Organization
- func HasOciRepositories() predicate.Organization
- func HasOciRepositoriesWith(preds ...predicate.OCIRepository) predicate.Organization
- func HasWorkflowContracts() predicate.Organization
- func HasWorkflowContractsWith(preds ...predicate.WorkflowContract) predicate.Organization
- func HasWorkflows() predicate.Organization
- func HasWorkflowsWith(preds ...predicate.Workflow) predicate.Organization
- func ID(id uuid.UUID) predicate.Organization
- func IDEQ(id uuid.UUID) predicate.Organization
- func IDGT(id uuid.UUID) predicate.Organization
- func IDGTE(id uuid.UUID) predicate.Organization
- func IDIn(ids ...uuid.UUID) predicate.Organization
- func IDLT(id uuid.UUID) predicate.Organization
- func IDLTE(id uuid.UUID) predicate.Organization
- func IDNEQ(id uuid.UUID) predicate.Organization
- func IDNotIn(ids ...uuid.UUID) predicate.Organization
- func Name(v string) predicate.Organization
- func NameContains(v string) predicate.Organization
- func NameContainsFold(v string) predicate.Organization
- func NameEQ(v string) predicate.Organization
- func NameEqualFold(v string) predicate.Organization
- func NameGT(v string) predicate.Organization
- func NameGTE(v string) predicate.Organization
- func NameHasPrefix(v string) predicate.Organization
- func NameHasSuffix(v string) predicate.Organization
- func NameIn(vs ...string) predicate.Organization
- func NameLT(v string) predicate.Organization
- func NameLTE(v string) predicate.Organization
- func NameNEQ(v string) predicate.Organization
- func NameNotIn(vs ...string) predicate.Organization
- func Not(p predicate.Organization) predicate.Organization
- func Or(predicates ...predicate.Organization) predicate.Organization
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the organization type in the database. Label = "organization" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // EdgeMemberships holds the string denoting the memberships edge name in mutations. EdgeMemberships = "memberships" // EdgeWorkflowContracts holds the string denoting the workflow_contracts edge name in mutations. EdgeWorkflowContracts = "workflow_contracts" // EdgeWorkflows holds the string denoting the workflows edge name in mutations. EdgeWorkflows = "workflows" // EdgeOciRepositories holds the string denoting the oci_repositories edge name in mutations. EdgeOciRepositories = "oci_repositories" // EdgeIntegrations holds the string denoting the integrations edge name in mutations. EdgeIntegrations = "integrations" // Table holds the table name of the organization in the database. Table = "organizations" // MembershipsTable is the table that holds the memberships relation/edge. MembershipsTable = "memberships" // MembershipsInverseTable is the table name for the Membership entity. // It exists in this package in order to avoid circular dependency with the "membership" package. MembershipsInverseTable = "memberships" // MembershipsColumn is the table column denoting the memberships relation/edge. MembershipsColumn = "organization_memberships" // WorkflowContractsTable is the table that holds the workflow_contracts relation/edge. WorkflowContractsTable = "workflow_contracts" // WorkflowContractsInverseTable is the table name for the WorkflowContract entity. // It exists in this package in order to avoid circular dependency with the "workflowcontract" package. WorkflowContractsInverseTable = "workflow_contracts" // WorkflowContractsColumn is the table column denoting the workflow_contracts relation/edge. WorkflowContractsColumn = "organization_workflow_contracts" // WorkflowsTable is the table that holds the workflows relation/edge. WorkflowsTable = "workflows" // WorkflowsInverseTable is the table name for the Workflow entity. // It exists in this package in order to avoid circular dependency with the "workflow" package. WorkflowsInverseTable = "workflows" // WorkflowsColumn is the table column denoting the workflows relation/edge. WorkflowsColumn = "organization_id" // OciRepositoriesTable is the table that holds the oci_repositories relation/edge. OciRepositoriesTable = "oci_repositories" // OciRepositoriesInverseTable is the table name for the OCIRepository entity. // It exists in this package in order to avoid circular dependency with the "ocirepository" package. OciRepositoriesInverseTable = "oci_repositories" // OciRepositoriesColumn is the table column denoting the oci_repositories relation/edge. OciRepositoriesColumn = "organization_oci_repositories" // IntegrationsTable is the table that holds the integrations relation/edge. IntegrationsTable = "integrations" // 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" // IntegrationsColumn is the table column denoting the integrations relation/edge. IntegrationsColumn = "organization_integrations" )
Variables ¶
var ( // DefaultName holds the default value on creation for the "name" field. DefaultName string // DefaultCreatedAt holds the default value on creation for the "created_at" field. DefaultCreatedAt func() time.Time // DefaultID holds the default value on creation for the "id" field. DefaultID func() uuid.UUID )
var Columns = []string{ FieldID, FieldName, FieldCreatedAt, }
Columns holds all SQL columns for organization fields.
Functions ¶
func And ¶
func And(predicates ...predicate.Organization) predicate.Organization
And groups predicates with the AND operator between them.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.Organization
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.Organization
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.Organization
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
func CreatedAtGTE(v time.Time) predicate.Organization
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
func CreatedAtIn(vs ...time.Time) predicate.Organization
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
func CreatedAtLT(v time.Time) predicate.Organization
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
func CreatedAtLTE(v time.Time) predicate.Organization
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
func CreatedAtNEQ(v time.Time) predicate.Organization
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
func CreatedAtNotIn(vs ...time.Time) predicate.Organization
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func HasIntegrations ¶
func HasIntegrations() predicate.Organization
HasIntegrations applies the HasEdge predicate on the "integrations" edge.
func HasIntegrationsWith ¶
func HasIntegrationsWith(preds ...predicate.Integration) predicate.Organization
HasIntegrationsWith applies the HasEdge predicate on the "integrations" edge with a given conditions (other predicates).
func HasMemberships ¶
func HasMemberships() predicate.Organization
HasMemberships applies the HasEdge predicate on the "memberships" edge.
func HasMembershipsWith ¶
func HasMembershipsWith(preds ...predicate.Membership) predicate.Organization
HasMembershipsWith applies the HasEdge predicate on the "memberships" edge with a given conditions (other predicates).
func HasOciRepositories ¶
func HasOciRepositories() predicate.Organization
HasOciRepositories applies the HasEdge predicate on the "oci_repositories" edge.
func HasOciRepositoriesWith ¶
func HasOciRepositoriesWith(preds ...predicate.OCIRepository) predicate.Organization
HasOciRepositoriesWith applies the HasEdge predicate on the "oci_repositories" edge with a given conditions (other predicates).
func HasWorkflowContracts ¶
func HasWorkflowContracts() predicate.Organization
HasWorkflowContracts applies the HasEdge predicate on the "workflow_contracts" edge.
func HasWorkflowContractsWith ¶
func HasWorkflowContractsWith(preds ...predicate.WorkflowContract) predicate.Organization
HasWorkflowContractsWith applies the HasEdge predicate on the "workflow_contracts" edge with a given conditions (other predicates).
func HasWorkflows ¶
func HasWorkflows() predicate.Organization
HasWorkflows applies the HasEdge predicate on the "workflows" edge.
func HasWorkflowsWith ¶
func HasWorkflowsWith(preds ...predicate.Workflow) predicate.Organization
HasWorkflowsWith applies the HasEdge predicate on the "workflows" edge with a given conditions (other predicates).
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.Organization
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.Organization
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.Organization
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.Organization
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.Organization
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.Organization
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.Organization
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.Organization
IDNotIn applies the NotIn predicate on the ID field.
func Name ¶
func Name(v string) predicate.Organization
Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func NameContains ¶
func NameContains(v string) predicate.Organization
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
func NameContainsFold(v string) predicate.Organization
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEQ ¶
func NameEQ(v string) predicate.Organization
NameEQ applies the EQ predicate on the "name" field.
func NameEqualFold ¶
func NameEqualFold(v string) predicate.Organization
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameGT ¶
func NameGT(v string) predicate.Organization
NameGT applies the GT predicate on the "name" field.
func NameGTE ¶
func NameGTE(v string) predicate.Organization
NameGTE applies the GTE predicate on the "name" field.
func NameHasPrefix ¶
func NameHasPrefix(v string) predicate.Organization
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
func NameHasSuffix(v string) predicate.Organization
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameIn ¶
func NameIn(vs ...string) predicate.Organization
NameIn applies the In predicate on the "name" field.
func NameLT ¶
func NameLT(v string) predicate.Organization
NameLT applies the LT predicate on the "name" field.
func NameLTE ¶
func NameLTE(v string) predicate.Organization
NameLTE applies the LTE predicate on the "name" field.
func NameNEQ ¶
func NameNEQ(v string) predicate.Organization
NameNEQ applies the NEQ predicate on the "name" field.
func NameNotIn ¶
func NameNotIn(vs ...string) predicate.Organization
NameNotIn applies the NotIn predicate on the "name" field.
func Not ¶
func Not(p predicate.Organization) predicate.Organization
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.Organization) predicate.Organization
Or groups predicates with the OR operator between them.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.