Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Page) predicate.Page
- func HasEvents() predicate.Page
- func HasEventsWith(preds ...predicate.Event) predicate.Page
- func Hash(v string) predicate.Page
- func HashContains(v string) predicate.Page
- func HashContainsFold(v string) predicate.Page
- func HashEQ(v string) predicate.Page
- func HashEqualFold(v string) predicate.Page
- func HashGT(v string) predicate.Page
- func HashGTE(v string) predicate.Page
- func HashHasPrefix(v string) predicate.Page
- func HashHasSuffix(v string) predicate.Page
- func HashIn(vs ...string) predicate.Page
- func HashIsNil() predicate.Page
- func HashLT(v string) predicate.Page
- func HashLTE(v string) predicate.Page
- func HashNEQ(v string) predicate.Page
- func HashNotIn(vs ...string) predicate.Page
- func HashNotNil() predicate.Page
- func Hostname(v string) predicate.Page
- func HostnameContains(v string) predicate.Page
- func HostnameContainsFold(v string) predicate.Page
- func HostnameEQ(v string) predicate.Page
- func HostnameEqualFold(v string) predicate.Page
- func HostnameGT(v string) predicate.Page
- func HostnameGTE(v string) predicate.Page
- func HostnameHasPrefix(v string) predicate.Page
- func HostnameHasSuffix(v string) predicate.Page
- func HostnameIn(vs ...string) predicate.Page
- func HostnameLT(v string) predicate.Page
- func HostnameLTE(v string) predicate.Page
- func HostnameNEQ(v string) predicate.Page
- func HostnameNotIn(vs ...string) predicate.Page
- func ID(id int) predicate.Page
- func IDEQ(id int) predicate.Page
- func IDGT(id int) predicate.Page
- func IDGTE(id int) predicate.Page
- func IDIn(ids ...int) predicate.Page
- func IDLT(id int) predicate.Page
- func IDLTE(id int) predicate.Page
- func IDNEQ(id int) predicate.Page
- func IDNotIn(ids ...int) predicate.Page
- func Not(p predicate.Page) predicate.Page
- func Or(predicates ...predicate.Page) predicate.Page
- func Path(v string) predicate.Page
- func PathContains(v string) predicate.Page
- func PathContainsFold(v string) predicate.Page
- func PathEQ(v string) predicate.Page
- func PathEqualFold(v string) predicate.Page
- func PathGT(v string) predicate.Page
- func PathGTE(v string) predicate.Page
- func PathHasPrefix(v string) predicate.Page
- func PathHasSuffix(v string) predicate.Page
- func PathIn(vs ...string) predicate.Page
- func PathLT(v string) predicate.Page
- func PathLTE(v string) predicate.Page
- func PathNEQ(v string) predicate.Page
- func PathNotIn(vs ...string) predicate.Page
- func Referrer(v string) predicate.Page
- func ReferrerContains(v string) predicate.Page
- func ReferrerContainsFold(v string) predicate.Page
- func ReferrerEQ(v string) predicate.Page
- func ReferrerEqualFold(v string) predicate.Page
- func ReferrerGT(v string) predicate.Page
- func ReferrerGTE(v string) predicate.Page
- func ReferrerHasPrefix(v string) predicate.Page
- func ReferrerHasSuffix(v string) predicate.Page
- func ReferrerIn(vs ...string) predicate.Page
- func ReferrerIsNil() predicate.Page
- func ReferrerLT(v string) predicate.Page
- func ReferrerLTE(v string) predicate.Page
- func ReferrerNEQ(v string) predicate.Page
- func ReferrerNotIn(vs ...string) predicate.Page
- func ReferrerNotNil() predicate.Page
- func Search(v string) predicate.Page
- func SearchContains(v string) predicate.Page
- func SearchContainsFold(v string) predicate.Page
- func SearchEQ(v string) predicate.Page
- func SearchEqualFold(v string) predicate.Page
- func SearchGT(v string) predicate.Page
- func SearchGTE(v string) predicate.Page
- func SearchHasPrefix(v string) predicate.Page
- func SearchHasSuffix(v string) predicate.Page
- func SearchIn(vs ...string) predicate.Page
- func SearchIsNil() predicate.Page
- func SearchLT(v string) predicate.Page
- func SearchLTE(v string) predicate.Page
- func SearchNEQ(v string) predicate.Page
- func SearchNotIn(vs ...string) predicate.Page
- func SearchNotNil() predicate.Page
- func Title(v string) predicate.Page
- func TitleContains(v string) predicate.Page
- func TitleContainsFold(v string) predicate.Page
- func TitleEQ(v string) predicate.Page
- func TitleEqualFold(v string) predicate.Page
- func TitleGT(v string) predicate.Page
- func TitleGTE(v string) predicate.Page
- func TitleHasPrefix(v string) predicate.Page
- func TitleHasSuffix(v string) predicate.Page
- func TitleIn(vs ...string) predicate.Page
- func TitleIsNil() predicate.Page
- func TitleLT(v string) predicate.Page
- func TitleLTE(v string) predicate.Page
- func TitleNEQ(v string) predicate.Page
- func TitleNotIn(vs ...string) predicate.Page
- func TitleNotNil() predicate.Page
Constants ¶
const ( // Label holds the string label denoting the page type in the database. Label = "page" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldHostname holds the string denoting the hostname field in the database. FieldHostname = "hostname" // FieldPath holds the string denoting the path field in the database. FieldPath = "path" // FieldReferrer holds the string denoting the referrer field in the database. FieldReferrer = "referrer" // FieldSearch holds the string denoting the search field in the database. FieldSearch = "search" // FieldTitle holds the string denoting the title field in the database. FieldTitle = "title" // FieldHash holds the string denoting the hash field in the database. FieldHash = "hash" // EdgeEvents holds the string denoting the events edge name in mutations. EdgeEvents = "events" // Table holds the table name of the page in the database. Table = "pages" // 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_page" )
Variables ¶
var Columns = []string{ FieldID, FieldHostname, FieldPath, FieldReferrer, FieldSearch, FieldTitle, FieldHash, }
Columns holds all SQL columns for page fields.
Functions ¶
func HasEventsWith ¶
HasEventsWith applies the HasEdge predicate on the "events" edge with a given conditions (other predicates).
func HashContains ¶
HashContains applies the Contains predicate on the "hash" field.
func HashContainsFold ¶
HashContainsFold applies the ContainsFold predicate on the "hash" field.
func HashEqualFold ¶
HashEqualFold applies the EqualFold predicate on the "hash" field.
func HashHasPrefix ¶
HashHasPrefix applies the HasPrefix predicate on the "hash" field.
func HashHasSuffix ¶
HashHasSuffix applies the HasSuffix predicate on the "hash" field.
func HashNotNil ¶
HashNotNil applies the NotNil predicate on the "hash" field.
func Hostname ¶
Hostname applies equality check predicate on the "hostname" field. It's identical to HostnameEQ.
func HostnameContains ¶
HostnameContains applies the Contains predicate on the "hostname" field.
func HostnameContainsFold ¶
HostnameContainsFold applies the ContainsFold predicate on the "hostname" field.
func HostnameEQ ¶
HostnameEQ applies the EQ predicate on the "hostname" field.
func HostnameEqualFold ¶
HostnameEqualFold applies the EqualFold predicate on the "hostname" field.
func HostnameGT ¶
HostnameGT applies the GT predicate on the "hostname" field.
func HostnameGTE ¶
HostnameGTE applies the GTE predicate on the "hostname" field.
func HostnameHasPrefix ¶
HostnameHasPrefix applies the HasPrefix predicate on the "hostname" field.
func HostnameHasSuffix ¶
HostnameHasSuffix applies the HasSuffix predicate on the "hostname" field.
func HostnameIn ¶
HostnameIn applies the In predicate on the "hostname" field.
func HostnameLT ¶
HostnameLT applies the LT predicate on the "hostname" field.
func HostnameLTE ¶
HostnameLTE applies the LTE predicate on the "hostname" field.
func HostnameNEQ ¶
HostnameNEQ applies the NEQ predicate on the "hostname" field.
func HostnameNotIn ¶
HostnameNotIn applies the NotIn predicate on the "hostname" field.
func PathContains ¶
PathContains applies the Contains predicate on the "path" field.
func PathContainsFold ¶
PathContainsFold applies the ContainsFold predicate on the "path" field.
func PathEqualFold ¶
PathEqualFold applies the EqualFold predicate on the "path" field.
func PathHasPrefix ¶
PathHasPrefix applies the HasPrefix predicate on the "path" field.
func PathHasSuffix ¶
PathHasSuffix applies the HasSuffix predicate on the "path" field.
func Referrer ¶
Referrer applies equality check predicate on the "referrer" field. It's identical to ReferrerEQ.
func ReferrerContains ¶
ReferrerContains applies the Contains predicate on the "referrer" field.
func ReferrerContainsFold ¶
ReferrerContainsFold applies the ContainsFold predicate on the "referrer" field.
func ReferrerEQ ¶
ReferrerEQ applies the EQ predicate on the "referrer" field.
func ReferrerEqualFold ¶
ReferrerEqualFold applies the EqualFold predicate on the "referrer" field.
func ReferrerGT ¶
ReferrerGT applies the GT predicate on the "referrer" field.
func ReferrerGTE ¶
ReferrerGTE applies the GTE predicate on the "referrer" field.
func ReferrerHasPrefix ¶
ReferrerHasPrefix applies the HasPrefix predicate on the "referrer" field.
func ReferrerHasSuffix ¶
ReferrerHasSuffix applies the HasSuffix predicate on the "referrer" field.
func ReferrerIn ¶
ReferrerIn applies the In predicate on the "referrer" field.
func ReferrerIsNil ¶
ReferrerIsNil applies the IsNil predicate on the "referrer" field.
func ReferrerLT ¶
ReferrerLT applies the LT predicate on the "referrer" field.
func ReferrerLTE ¶
ReferrerLTE applies the LTE predicate on the "referrer" field.
func ReferrerNEQ ¶
ReferrerNEQ applies the NEQ predicate on the "referrer" field.
func ReferrerNotIn ¶
ReferrerNotIn applies the NotIn predicate on the "referrer" field.
func ReferrerNotNil ¶
ReferrerNotNil applies the NotNil predicate on the "referrer" field.
func Search ¶
Search applies equality check predicate on the "search" field. It's identical to SearchEQ.
func SearchContains ¶
SearchContains applies the Contains predicate on the "search" field.
func SearchContainsFold ¶
SearchContainsFold applies the ContainsFold predicate on the "search" field.
func SearchEqualFold ¶
SearchEqualFold applies the EqualFold predicate on the "search" field.
func SearchHasPrefix ¶
SearchHasPrefix applies the HasPrefix predicate on the "search" field.
func SearchHasSuffix ¶
SearchHasSuffix applies the HasSuffix predicate on the "search" field.
func SearchIsNil ¶
SearchIsNil applies the IsNil predicate on the "search" field.
func SearchNotIn ¶
SearchNotIn applies the NotIn predicate on the "search" field.
func SearchNotNil ¶
SearchNotNil applies the NotNil predicate on the "search" field.
func Title ¶
Title applies equality check predicate on the "title" field. It's identical to TitleEQ.
func TitleContains ¶
TitleContains applies the Contains predicate on the "title" field.
func TitleContainsFold ¶
TitleContainsFold applies the ContainsFold predicate on the "title" field.
func TitleEqualFold ¶
TitleEqualFold applies the EqualFold predicate on the "title" field.
func TitleHasPrefix ¶
TitleHasPrefix applies the HasPrefix predicate on the "title" field.
func TitleHasSuffix ¶
TitleHasSuffix applies the HasSuffix predicate on the "title" field.
func TitleIsNil ¶
TitleIsNil applies the IsNil predicate on the "title" field.
func TitleNotIn ¶
TitleNotIn applies the NotIn predicate on the "title" field.
func TitleNotNil ¶
TitleNotNil applies the NotNil predicate on the "title" field.
Types ¶
This section is empty.