app

package
v0.0.0-...-6edac6f Latest Latest
Warning

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

Go to latest
Published: Sep 26, 2020 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the app type in the database.
	Label = "app"
	// 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"
	// FieldVersion holds the string denoting the version field in the database.
	FieldVersion = "version"
	// FieldBuild holds the string denoting the build field in the database.
	FieldBuild = "build"
	// FieldNamespace holds the string denoting the namespace field in the database.
	FieldNamespace = "namespace"
	// FieldProperties holds the string denoting the properties field in the database.
	FieldProperties = "properties"

	// EdgeEvents holds the string denoting the events edge name in mutations.
	EdgeEvents = "events"

	// Table holds the table name of the app in the database.
	Table = "apps"
	// EventsTable is the table the holds the events relation/edge.
	EventsTable = "events"
	// EventsInverseTable is the table name for the Event entity.
	// It exists in this package in order to avoid circular dependency with the "event" package.
	EventsInverseTable = "events"
	// EventsColumn is the table column denoting the events relation/edge.
	EventsColumn = "event_app"
)

Variables

Columns holds all SQL columns for app fields.

Functions

func And

func And(predicates ...predicate.App) predicate.App

And groups list of predicates with the AND operator between them.

func Build

func Build(v string) predicate.App

Build applies equality check predicate on the "build" field. It's identical to BuildEQ.

func BuildContains

func BuildContains(v string) predicate.App

BuildContains applies the Contains predicate on the "build" field.

func BuildContainsFold

func BuildContainsFold(v string) predicate.App

BuildContainsFold applies the ContainsFold predicate on the "build" field.

func BuildEQ

func BuildEQ(v string) predicate.App

BuildEQ applies the EQ predicate on the "build" field.

func BuildEqualFold

func BuildEqualFold(v string) predicate.App

BuildEqualFold applies the EqualFold predicate on the "build" field.

func BuildGT

func BuildGT(v string) predicate.App

BuildGT applies the GT predicate on the "build" field.

func BuildGTE

func BuildGTE(v string) predicate.App

BuildGTE applies the GTE predicate on the "build" field.

func BuildHasPrefix

func BuildHasPrefix(v string) predicate.App

BuildHasPrefix applies the HasPrefix predicate on the "build" field.

func BuildHasSuffix

func BuildHasSuffix(v string) predicate.App

BuildHasSuffix applies the HasSuffix predicate on the "build" field.

func BuildIn

func BuildIn(vs ...string) predicate.App

BuildIn applies the In predicate on the "build" field.

func BuildIsNil

func BuildIsNil() predicate.App

BuildIsNil applies the IsNil predicate on the "build" field.

func BuildLT

func BuildLT(v string) predicate.App

BuildLT applies the LT predicate on the "build" field.

func BuildLTE

func BuildLTE(v string) predicate.App

BuildLTE applies the LTE predicate on the "build" field.

func BuildNEQ

func BuildNEQ(v string) predicate.App

BuildNEQ applies the NEQ predicate on the "build" field.

func BuildNotIn

func BuildNotIn(vs ...string) predicate.App

BuildNotIn applies the NotIn predicate on the "build" field.

func BuildNotNil

func BuildNotNil() predicate.App

BuildNotNil applies the NotNil predicate on the "build" field.

func HasEvents

func HasEvents() predicate.App

HasEvents applies the HasEdge predicate on the "events" edge.

func HasEventsWith

func HasEventsWith(preds ...predicate.Event) predicate.App

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

func ID

func ID(id int) predicate.App

ID filters vertices based on their identifier.

func IDEQ

func IDEQ(id int) predicate.App

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.App

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.App

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.App

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.App

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.App

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.App

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.App

IDNotIn applies the NotIn predicate on the ID field.

func Name

func Name(v string) predicate.App

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

func NameContains

func NameContains(v string) predicate.App

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

func NameContainsFold

func NameContainsFold(v string) predicate.App

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

func NameEQ

func NameEQ(v string) predicate.App

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

func NameEqualFold

func NameEqualFold(v string) predicate.App

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

func NameGT

func NameGT(v string) predicate.App

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

func NameGTE

func NameGTE(v string) predicate.App

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.App

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.App

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.App

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

func NameLTE

func NameLTE(v string) predicate.App

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

func NameNEQ

func NameNEQ(v string) predicate.App

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

func NameNotIn

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

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

func Namespace

func Namespace(v string) predicate.App

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

func NamespaceContains

func NamespaceContains(v string) predicate.App

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

func NamespaceContainsFold

func NamespaceContainsFold(v string) predicate.App

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

func NamespaceEQ

func NamespaceEQ(v string) predicate.App

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

func NamespaceEqualFold

func NamespaceEqualFold(v string) predicate.App

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

func NamespaceGT

func NamespaceGT(v string) predicate.App

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

func NamespaceGTE

func NamespaceGTE(v string) predicate.App

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

func NamespaceHasPrefix

func NamespaceHasPrefix(v string) predicate.App

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

func NamespaceHasSuffix

func NamespaceHasSuffix(v string) predicate.App

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

func NamespaceIn

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

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

func NamespaceIsNil

func NamespaceIsNil() predicate.App

NamespaceIsNil applies the IsNil predicate on the "namespace" field.

func NamespaceLT

func NamespaceLT(v string) predicate.App

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

func NamespaceLTE

func NamespaceLTE(v string) predicate.App

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

func NamespaceNEQ

func NamespaceNEQ(v string) predicate.App

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

func NamespaceNotIn

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

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

func NamespaceNotNil

func NamespaceNotNil() predicate.App

NamespaceNotNil applies the NotNil predicate on the "namespace" field.

func Not

func Not(p predicate.App) predicate.App

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.App) predicate.App

Or groups list of predicates with the OR operator between them.

func PropertiesIsNil

func PropertiesIsNil() predicate.App

PropertiesIsNil applies the IsNil predicate on the "properties" field.

func PropertiesNotNil

func PropertiesNotNil() predicate.App

PropertiesNotNil applies the NotNil predicate on the "properties" field.

func Version

func Version(v string) predicate.App

Version applies equality check predicate on the "version" field. It's identical to VersionEQ.

func VersionContains

func VersionContains(v string) predicate.App

VersionContains applies the Contains predicate on the "version" field.

func VersionContainsFold

func VersionContainsFold(v string) predicate.App

VersionContainsFold applies the ContainsFold predicate on the "version" field.

func VersionEQ

func VersionEQ(v string) predicate.App

VersionEQ applies the EQ predicate on the "version" field.

func VersionEqualFold

func VersionEqualFold(v string) predicate.App

VersionEqualFold applies the EqualFold predicate on the "version" field.

func VersionGT

func VersionGT(v string) predicate.App

VersionGT applies the GT predicate on the "version" field.

func VersionGTE

func VersionGTE(v string) predicate.App

VersionGTE applies the GTE predicate on the "version" field.

func VersionHasPrefix

func VersionHasPrefix(v string) predicate.App

VersionHasPrefix applies the HasPrefix predicate on the "version" field.

func VersionHasSuffix

func VersionHasSuffix(v string) predicate.App

VersionHasSuffix applies the HasSuffix predicate on the "version" field.

func VersionIn

func VersionIn(vs ...string) predicate.App

VersionIn applies the In predicate on the "version" field.

func VersionIsNil

func VersionIsNil() predicate.App

VersionIsNil applies the IsNil predicate on the "version" field.

func VersionLT

func VersionLT(v string) predicate.App

VersionLT applies the LT predicate on the "version" field.

func VersionLTE

func VersionLTE(v string) predicate.App

VersionLTE applies the LTE predicate on the "version" field.

func VersionNEQ

func VersionNEQ(v string) predicate.App

VersionNEQ applies the NEQ predicate on the "version" field.

func VersionNotIn

func VersionNotIn(vs ...string) predicate.App

VersionNotIn applies the NotIn predicate on the "version" field.

func VersionNotNil

func VersionNotNil() predicate.App

VersionNotNil applies the NotNil predicate on the "version" field.

Types

This section is empty.

Jump to

Keyboard shortcuts

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