repo

package
v1.1.0 Latest Latest
Warning

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

Go to latest
Published: May 27, 2024 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the repo type in the database.
	Label = "repo"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldNamespace holds the string denoting the namespace field in the database.
	FieldNamespace = "namespace"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldConfigPath holds the string denoting the config_path field in the database.
	FieldConfigPath = "config_path"
	// FieldActive holds the string denoting the active field in the database.
	FieldActive = "active"
	// FieldWebhookID holds the string denoting the webhook_id field in the database.
	FieldWebhookID = "webhook_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"
	// FieldLatestDeployedAt holds the string denoting the latest_deployed_at field in the database.
	FieldLatestDeployedAt = "latest_deployed_at"
	// FieldOwnerID holds the string denoting the owner_id field in the database.
	FieldOwnerID = "owner_id"
	// EdgePerms holds the string denoting the perms edge name in mutations.
	EdgePerms = "perms"
	// EdgeDeployments holds the string denoting the deployments edge name in mutations.
	EdgeDeployments = "deployments"
	// EdgeDeploymentStatuses holds the string denoting the deployment_statuses edge name in mutations.
	EdgeDeploymentStatuses = "deployment_statuses"
	// EdgeLocks holds the string denoting the locks edge name in mutations.
	EdgeLocks = "locks"
	// EdgeDeploymentStatistics holds the string denoting the deployment_statistics edge name in mutations.
	EdgeDeploymentStatistics = "deployment_statistics"
	// EdgeOwner holds the string denoting the owner edge name in mutations.
	EdgeOwner = "owner"
	// Table holds the table name of the repo in the database.
	Table = "repos"
	// PermsTable is the table that holds the perms relation/edge.
	PermsTable = "perms"
	// PermsInverseTable is the table name for the Perm entity.
	// It exists in this package in order to avoid circular dependency with the "perm" package.
	PermsInverseTable = "perms"
	// PermsColumn is the table column denoting the perms relation/edge.
	PermsColumn = "repo_id"
	// DeploymentsTable is the table that holds the deployments relation/edge.
	DeploymentsTable = "deployments"
	// DeploymentsInverseTable is the table name for the Deployment entity.
	// It exists in this package in order to avoid circular dependency with the "deployment" package.
	DeploymentsInverseTable = "deployments"
	// DeploymentsColumn is the table column denoting the deployments relation/edge.
	DeploymentsColumn = "repo_id"
	// DeploymentStatusesTable is the table that holds the deployment_statuses relation/edge.
	DeploymentStatusesTable = "deployment_status"
	// DeploymentStatusesInverseTable is the table name for the DeploymentStatus entity.
	// It exists in this package in order to avoid circular dependency with the "deploymentstatus" package.
	DeploymentStatusesInverseTable = "deployment_status"
	// DeploymentStatusesColumn is the table column denoting the deployment_statuses relation/edge.
	DeploymentStatusesColumn = "repo_id"
	// LocksTable is the table that holds the locks relation/edge.
	LocksTable = "locks"
	// LocksInverseTable is the table name for the Lock entity.
	// It exists in this package in order to avoid circular dependency with the "lock" package.
	LocksInverseTable = "locks"
	// LocksColumn is the table column denoting the locks relation/edge.
	LocksColumn = "repo_id"
	// DeploymentStatisticsTable is the table that holds the deployment_statistics relation/edge.
	DeploymentStatisticsTable = "deployment_statistics"
	// DeploymentStatisticsInverseTable is the table name for the DeploymentStatistics entity.
	// It exists in this package in order to avoid circular dependency with the "deploymentstatistics" package.
	DeploymentStatisticsInverseTable = "deployment_statistics"
	// DeploymentStatisticsColumn is the table column denoting the deployment_statistics relation/edge.
	DeploymentStatisticsColumn = "repo_id"
	// OwnerTable is the table that holds the owner relation/edge.
	OwnerTable = "repos"
	// OwnerInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	OwnerInverseTable = "users"
	// OwnerColumn is the table column denoting the owner relation/edge.
	OwnerColumn = "owner_id"
)

Variables

View Source
var (
	// DefaultConfigPath holds the default value on creation for the "config_path" field.
	DefaultConfigPath string
	// DefaultActive holds the default value on creation for the "active" field.
	DefaultActive bool
	// 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
	// DefaultLatestDeployedAt holds the default value on creation for the "latest_deployed_at" field.
	DefaultLatestDeployedAt func() time.Time
)

Columns holds all SQL columns for repo fields.

Functions

func Active

func Active(v bool) predicate.Repo

Active applies equality check predicate on the "active" field. It's identical to ActiveEQ.

func ActiveEQ

func ActiveEQ(v bool) predicate.Repo

ActiveEQ applies the EQ predicate on the "active" field.

func ActiveNEQ

func ActiveNEQ(v bool) predicate.Repo

ActiveNEQ applies the NEQ predicate on the "active" field.

func And

func And(predicates ...predicate.Repo) predicate.Repo

And groups predicates with the AND operator between them.

func ConfigPath

func ConfigPath(v string) predicate.Repo

ConfigPath applies equality check predicate on the "config_path" field. It's identical to ConfigPathEQ.

func ConfigPathContains

func ConfigPathContains(v string) predicate.Repo

ConfigPathContains applies the Contains predicate on the "config_path" field.

func ConfigPathContainsFold

func ConfigPathContainsFold(v string) predicate.Repo

ConfigPathContainsFold applies the ContainsFold predicate on the "config_path" field.

func ConfigPathEQ

func ConfigPathEQ(v string) predicate.Repo

ConfigPathEQ applies the EQ predicate on the "config_path" field.

func ConfigPathEqualFold

func ConfigPathEqualFold(v string) predicate.Repo

ConfigPathEqualFold applies the EqualFold predicate on the "config_path" field.

func ConfigPathGT

func ConfigPathGT(v string) predicate.Repo

ConfigPathGT applies the GT predicate on the "config_path" field.

func ConfigPathGTE

func ConfigPathGTE(v string) predicate.Repo

ConfigPathGTE applies the GTE predicate on the "config_path" field.

func ConfigPathHasPrefix

func ConfigPathHasPrefix(v string) predicate.Repo

ConfigPathHasPrefix applies the HasPrefix predicate on the "config_path" field.

func ConfigPathHasSuffix

func ConfigPathHasSuffix(v string) predicate.Repo

ConfigPathHasSuffix applies the HasSuffix predicate on the "config_path" field.

func ConfigPathIn

func ConfigPathIn(vs ...string) predicate.Repo

ConfigPathIn applies the In predicate on the "config_path" field.

func ConfigPathLT

func ConfigPathLT(v string) predicate.Repo

ConfigPathLT applies the LT predicate on the "config_path" field.

func ConfigPathLTE

func ConfigPathLTE(v string) predicate.Repo

ConfigPathLTE applies the LTE predicate on the "config_path" field.

func ConfigPathNEQ

func ConfigPathNEQ(v string) predicate.Repo

ConfigPathNEQ applies the NEQ predicate on the "config_path" field.

func ConfigPathNotIn

func ConfigPathNotIn(vs ...string) predicate.Repo

ConfigPathNotIn applies the NotIn predicate on the "config_path" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.Repo

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Repo

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Repo

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Repo

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Repo

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Repo

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Repo

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

func CreatedAtNotIn

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

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

func Description

func Description(v string) predicate.Repo

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

func DescriptionContains

func DescriptionContains(v string) predicate.Repo

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

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.Repo

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

func DescriptionEQ

func DescriptionEQ(v string) predicate.Repo

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

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.Repo

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

func DescriptionGT

func DescriptionGT(v string) predicate.Repo

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

func DescriptionGTE

func DescriptionGTE(v string) predicate.Repo

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

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.Repo

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

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.Repo

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

func DescriptionIn

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

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

func DescriptionLT

func DescriptionLT(v string) predicate.Repo

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

func DescriptionLTE

func DescriptionLTE(v string) predicate.Repo

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

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.Repo

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

func DescriptionNotIn

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

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

func HasDeploymentStatistics

func HasDeploymentStatistics() predicate.Repo

HasDeploymentStatistics applies the HasEdge predicate on the "deployment_statistics" edge.

func HasDeploymentStatisticsWith

func HasDeploymentStatisticsWith(preds ...predicate.DeploymentStatistics) predicate.Repo

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

func HasDeploymentStatuses

func HasDeploymentStatuses() predicate.Repo

HasDeploymentStatuses applies the HasEdge predicate on the "deployment_statuses" edge.

func HasDeploymentStatusesWith

func HasDeploymentStatusesWith(preds ...predicate.DeploymentStatus) predicate.Repo

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

func HasDeployments

func HasDeployments() predicate.Repo

HasDeployments applies the HasEdge predicate on the "deployments" edge.

func HasDeploymentsWith

func HasDeploymentsWith(preds ...predicate.Deployment) predicate.Repo

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

func HasLocks

func HasLocks() predicate.Repo

HasLocks applies the HasEdge predicate on the "locks" edge.

func HasLocksWith

func HasLocksWith(preds ...predicate.Lock) predicate.Repo

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

func HasOwner

func HasOwner() predicate.Repo

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

func HasOwnerWith

func HasOwnerWith(preds ...predicate.User) predicate.Repo

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

func HasPerms

func HasPerms() predicate.Repo

HasPerms applies the HasEdge predicate on the "perms" edge.

func HasPermsWith

func HasPermsWith(preds ...predicate.Perm) predicate.Repo

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

func ID

func ID(id int64) predicate.Repo

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int64) predicate.Repo

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int64) predicate.Repo

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int64) predicate.Repo

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int64) predicate.Repo

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int64) predicate.Repo

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int64) predicate.Repo

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int64) predicate.Repo

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int64) predicate.Repo

IDNotIn applies the NotIn predicate on the ID field.

func LatestDeployedAt

func LatestDeployedAt(v time.Time) predicate.Repo

LatestDeployedAt applies equality check predicate on the "latest_deployed_at" field. It's identical to LatestDeployedAtEQ.

func LatestDeployedAtEQ

func LatestDeployedAtEQ(v time.Time) predicate.Repo

LatestDeployedAtEQ applies the EQ predicate on the "latest_deployed_at" field.

func LatestDeployedAtGT

func LatestDeployedAtGT(v time.Time) predicate.Repo

LatestDeployedAtGT applies the GT predicate on the "latest_deployed_at" field.

func LatestDeployedAtGTE

func LatestDeployedAtGTE(v time.Time) predicate.Repo

LatestDeployedAtGTE applies the GTE predicate on the "latest_deployed_at" field.

func LatestDeployedAtIn

func LatestDeployedAtIn(vs ...time.Time) predicate.Repo

LatestDeployedAtIn applies the In predicate on the "latest_deployed_at" field.

func LatestDeployedAtIsNil

func LatestDeployedAtIsNil() predicate.Repo

LatestDeployedAtIsNil applies the IsNil predicate on the "latest_deployed_at" field.

func LatestDeployedAtLT

func LatestDeployedAtLT(v time.Time) predicate.Repo

LatestDeployedAtLT applies the LT predicate on the "latest_deployed_at" field.

func LatestDeployedAtLTE

func LatestDeployedAtLTE(v time.Time) predicate.Repo

LatestDeployedAtLTE applies the LTE predicate on the "latest_deployed_at" field.

func LatestDeployedAtNEQ

func LatestDeployedAtNEQ(v time.Time) predicate.Repo

LatestDeployedAtNEQ applies the NEQ predicate on the "latest_deployed_at" field.

func LatestDeployedAtNotIn

func LatestDeployedAtNotIn(vs ...time.Time) predicate.Repo

LatestDeployedAtNotIn applies the NotIn predicate on the "latest_deployed_at" field.

func LatestDeployedAtNotNil

func LatestDeployedAtNotNil() predicate.Repo

LatestDeployedAtNotNil applies the NotNil predicate on the "latest_deployed_at" field.

func Name

func Name(v string) predicate.Repo

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

func NameContains

func NameContains(v string) predicate.Repo

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

func NameContainsFold

func NameContainsFold(v string) predicate.Repo

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

func NameEQ

func NameEQ(v string) predicate.Repo

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

func NameEqualFold

func NameEqualFold(v string) predicate.Repo

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

func NameGT

func NameGT(v string) predicate.Repo

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

func NameGTE

func NameGTE(v string) predicate.Repo

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.Repo

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.Repo

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.Repo

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

func NameLTE

func NameLTE(v string) predicate.Repo

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

func NameNEQ

func NameNEQ(v string) predicate.Repo

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

func NameNotIn

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

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

func Namespace

func Namespace(v string) predicate.Repo

Namespace applies equality check predicate on the "namespace" field. It's identical to NamespaceEQ.

func NamespaceContains

func NamespaceContains(v string) predicate.Repo

NamespaceContains applies the Contains predicate on the "namespace" field.

func NamespaceContainsFold

func NamespaceContainsFold(v string) predicate.Repo

NamespaceContainsFold applies the ContainsFold predicate on the "namespace" field.

func NamespaceEQ

func NamespaceEQ(v string) predicate.Repo

NamespaceEQ applies the EQ predicate on the "namespace" field.

func NamespaceEqualFold

func NamespaceEqualFold(v string) predicate.Repo

NamespaceEqualFold applies the EqualFold predicate on the "namespace" field.

func NamespaceGT

func NamespaceGT(v string) predicate.Repo

NamespaceGT applies the GT predicate on the "namespace" field.

func NamespaceGTE

func NamespaceGTE(v string) predicate.Repo

NamespaceGTE applies the GTE predicate on the "namespace" field.

func NamespaceHasPrefix

func NamespaceHasPrefix(v string) predicate.Repo

NamespaceHasPrefix applies the HasPrefix predicate on the "namespace" field.

func NamespaceHasSuffix

func NamespaceHasSuffix(v string) predicate.Repo

NamespaceHasSuffix applies the HasSuffix predicate on the "namespace" field.

func NamespaceIn

func NamespaceIn(vs ...string) predicate.Repo

NamespaceIn applies the In predicate on the "namespace" field.

func NamespaceLT

func NamespaceLT(v string) predicate.Repo

NamespaceLT applies the LT predicate on the "namespace" field.

func NamespaceLTE

func NamespaceLTE(v string) predicate.Repo

NamespaceLTE applies the LTE predicate on the "namespace" field.

func NamespaceNEQ

func NamespaceNEQ(v string) predicate.Repo

NamespaceNEQ applies the NEQ predicate on the "namespace" field.

func NamespaceNotIn

func NamespaceNotIn(vs ...string) predicate.Repo

NamespaceNotIn applies the NotIn predicate on the "namespace" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Repo) predicate.Repo

Or groups predicates with the OR operator between them.

func OwnerID

func OwnerID(v int64) predicate.Repo

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

func OwnerIDEQ

func OwnerIDEQ(v int64) predicate.Repo

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

func OwnerIDIn

func OwnerIDIn(vs ...int64) predicate.Repo

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

func OwnerIDIsNil

func OwnerIDIsNil() predicate.Repo

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

func OwnerIDNEQ

func OwnerIDNEQ(v int64) predicate.Repo

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

func OwnerIDNotIn

func OwnerIDNotIn(vs ...int64) predicate.Repo

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

func OwnerIDNotNil

func OwnerIDNotNil() predicate.Repo

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

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Repo

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Repo

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Repo

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Repo

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Repo

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Repo

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Repo

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

func UpdatedAtNotIn

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

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

func ValidColumn

func ValidColumn(column string) bool

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

func WebhookID

func WebhookID(v int64) predicate.Repo

WebhookID applies equality check predicate on the "webhook_id" field. It's identical to WebhookIDEQ.

func WebhookIDEQ

func WebhookIDEQ(v int64) predicate.Repo

WebhookIDEQ applies the EQ predicate on the "webhook_id" field.

func WebhookIDGT

func WebhookIDGT(v int64) predicate.Repo

WebhookIDGT applies the GT predicate on the "webhook_id" field.

func WebhookIDGTE

func WebhookIDGTE(v int64) predicate.Repo

WebhookIDGTE applies the GTE predicate on the "webhook_id" field.

func WebhookIDIn

func WebhookIDIn(vs ...int64) predicate.Repo

WebhookIDIn applies the In predicate on the "webhook_id" field.

func WebhookIDIsNil

func WebhookIDIsNil() predicate.Repo

WebhookIDIsNil applies the IsNil predicate on the "webhook_id" field.

func WebhookIDLT

func WebhookIDLT(v int64) predicate.Repo

WebhookIDLT applies the LT predicate on the "webhook_id" field.

func WebhookIDLTE

func WebhookIDLTE(v int64) predicate.Repo

WebhookIDLTE applies the LTE predicate on the "webhook_id" field.

func WebhookIDNEQ

func WebhookIDNEQ(v int64) predicate.Repo

WebhookIDNEQ applies the NEQ predicate on the "webhook_id" field.

func WebhookIDNotIn

func WebhookIDNotIn(vs ...int64) predicate.Repo

WebhookIDNotIn applies the NotIn predicate on the "webhook_id" field.

func WebhookIDNotNil

func WebhookIDNotNil() predicate.Repo

WebhookIDNotNil applies the NotNil predicate on the "webhook_id" field.

Types

This section is empty.

Jump to

Keyboard shortcuts

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