internetexchange

package
v1.23.0 Latest Latest
Warning

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

Go to latest
Published: Jul 10, 2026 License: BSD-3-Clause Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the internetexchange type in the database.
	Label = "internet_exchange"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldNameFold holds the string denoting the name_fold field in the database.
	FieldNameFold = "name_fold"
	// FieldAkaFold holds the string denoting the aka_fold field in the database.
	FieldAkaFold = "aka_fold"
	// FieldNameLongFold holds the string denoting the name_long_fold field in the database.
	FieldNameLongFold = "name_long_fold"
	// FieldCityFold holds the string denoting the city_fold field in the database.
	FieldCityFold = "city_fold"
	// FieldOrgID holds the string denoting the org_id field in the database.
	FieldOrgID = "org_id"
	// FieldAka holds the string denoting the aka field in the database.
	FieldAka = "aka"
	// FieldCity holds the string denoting the city field in the database.
	FieldCity = "city"
	// FieldCountry holds the string denoting the country field in the database.
	FieldCountry = "country"
	// FieldIxfLastImport holds the string denoting the ixf_last_import field in the database.
	FieldIxfLastImport = "ixf_last_import"
	// FieldIxfNetCount holds the string denoting the ixf_net_count field in the database.
	FieldIxfNetCount = "ixf_net_count"
	FieldLogo = "logo"
	// FieldMedia holds the string denoting the media field in the database.
	FieldMedia = "media"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldNameLong holds the string denoting the name_long field in the database.
	FieldNameLong = "name_long"
	// FieldNotes holds the string denoting the notes field in the database.
	FieldNotes = "notes"
	// FieldPolicyEmail holds the string denoting the policy_email field in the database.
	FieldPolicyEmail = "policy_email"
	// FieldPolicyPhone holds the string denoting the policy_phone field in the database.
	FieldPolicyPhone = "policy_phone"
	// FieldProtoIpv6 holds the string denoting the proto_ipv6 field in the database.
	FieldProtoIpv6 = "proto_ipv6"
	// FieldProtoMulticast holds the string denoting the proto_multicast field in the database.
	FieldProtoMulticast = "proto_multicast"
	// FieldProtoUnicast holds the string denoting the proto_unicast field in the database.
	FieldProtoUnicast = "proto_unicast"
	// FieldRegionContinent holds the string denoting the region_continent field in the database.
	FieldRegionContinent = "region_continent"
	// FieldSalesEmail holds the string denoting the sales_email field in the database.
	FieldSalesEmail = "sales_email"
	// FieldSalesPhone holds the string denoting the sales_phone field in the database.
	FieldSalesPhone = "sales_phone"
	// FieldServiceLevel holds the string denoting the service_level field in the database.
	FieldServiceLevel = "service_level"
	// FieldSocialMedia holds the string denoting the social_media field in the database.
	FieldSocialMedia = "social_media"
	// FieldStatusDashboard holds the string denoting the status_dashboard field in the database.
	FieldStatusDashboard = "status_dashboard"
	// FieldTechEmail holds the string denoting the tech_email field in the database.
	FieldTechEmail = "tech_email"
	// FieldTechPhone holds the string denoting the tech_phone field in the database.
	FieldTechPhone = "tech_phone"
	// FieldTerms holds the string denoting the terms field in the database.
	FieldTerms = "terms"
	// FieldURLStats holds the string denoting the url_stats field in the database.
	FieldURLStats = "url_stats"
	// FieldWebsite holds the string denoting the website field in the database.
	FieldWebsite = "website"
	// FieldNetCount holds the string denoting the net_count field in the database.
	FieldNetCount = "net_count"
	// FieldFacCount holds the string denoting the fac_count field in the database.
	FieldFacCount = "fac_count"
	// FieldIxfImportRequest holds the string denoting the ixf_import_request field in the database.
	FieldIxfImportRequest = "ixf_import_request"
	// FieldIxfImportRequestStatus holds the string denoting the ixf_import_request_status field in the database.
	FieldIxfImportRequestStatus = "ixf_import_request_status"
	// FieldCreated holds the string denoting the created field in the database.
	FieldCreated = "created"
	// FieldUpdated holds the string denoting the updated field in the database.
	FieldUpdated = "updated"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// EdgeIxFacilities holds the string denoting the ix_facilities edge name in mutations.
	EdgeIxFacilities = "ix_facilities"
	// EdgeIxLans holds the string denoting the ix_lans edge name in mutations.
	EdgeIxLans = "ix_lans"
	// EdgeOrganization holds the string denoting the organization edge name in mutations.
	EdgeOrganization = "organization"
	// Table holds the table name of the internetexchange in the database.
	Table = "internet_exchanges"
	// IxFacilitiesTable is the table that holds the ix_facilities relation/edge.
	IxFacilitiesTable = "ix_facilities"
	// IxFacilitiesInverseTable is the table name for the IxFacility entity.
	// It exists in this package in order to avoid circular dependency with the "ixfacility" package.
	IxFacilitiesInverseTable = "ix_facilities"
	// IxFacilitiesColumn is the table column denoting the ix_facilities relation/edge.
	IxFacilitiesColumn = "ix_id"
	// IxLansTable is the table that holds the ix_lans relation/edge.
	IxLansTable = "ix_lans"
	// IxLansInverseTable is the table name for the IxLan entity.
	// It exists in this package in order to avoid circular dependency with the "ixlan" package.
	IxLansInverseTable = "ix_lans"
	// IxLansColumn is the table column denoting the ix_lans relation/edge.
	IxLansColumn = "ix_id"
	// OrganizationTable is the table that holds the organization relation/edge.
	OrganizationTable = "internet_exchanges"
	// OrganizationInverseTable is the table name for the Organization entity.
	// It exists in this package in order to avoid circular dependency with the "organization" package.
	OrganizationInverseTable = "organizations"
	// OrganizationColumn is the table column denoting the organization relation/edge.
	OrganizationColumn = "org_id"
)

Variables

View Source
var (
	// DefaultNameFold holds the default value on creation for the "name_fold" field.
	DefaultNameFold string
	// DefaultAkaFold holds the default value on creation for the "aka_fold" field.
	DefaultAkaFold string
	// DefaultNameLongFold holds the default value on creation for the "name_long_fold" field.
	DefaultNameLongFold string
	// DefaultCityFold holds the default value on creation for the "city_fold" field.
	DefaultCityFold string
	// DefaultAka holds the default value on creation for the "aka" field.
	DefaultAka string
	// DefaultCity holds the default value on creation for the "city" field.
	DefaultCity string
	// DefaultCountry holds the default value on creation for the "country" field.
	DefaultCountry string
	// DefaultIxfNetCount holds the default value on creation for the "ixf_net_count" field.
	DefaultIxfNetCount int
	// DefaultMedia holds the default value on creation for the "media" field.
	DefaultMedia string
	// DefaultNameLong holds the default value on creation for the "name_long" field.
	DefaultNameLong string
	// DefaultNotes holds the default value on creation for the "notes" field.
	DefaultNotes string
	// DefaultPolicyEmail holds the default value on creation for the "policy_email" field.
	DefaultPolicyEmail string
	// DefaultPolicyPhone holds the default value on creation for the "policy_phone" field.
	DefaultPolicyPhone string
	// DefaultProtoIpv6 holds the default value on creation for the "proto_ipv6" field.
	DefaultProtoIpv6 bool
	// DefaultProtoMulticast holds the default value on creation for the "proto_multicast" field.
	DefaultProtoMulticast bool
	// DefaultProtoUnicast holds the default value on creation for the "proto_unicast" field.
	DefaultProtoUnicast bool
	// DefaultRegionContinent holds the default value on creation for the "region_continent" field.
	DefaultRegionContinent string
	// DefaultSalesEmail holds the default value on creation for the "sales_email" field.
	DefaultSalesEmail string
	// DefaultSalesPhone holds the default value on creation for the "sales_phone" field.
	DefaultSalesPhone string
	// DefaultServiceLevel holds the default value on creation for the "service_level" field.
	DefaultServiceLevel string
	// DefaultTechEmail holds the default value on creation for the "tech_email" field.
	DefaultTechEmail string
	// DefaultTechPhone holds the default value on creation for the "tech_phone" field.
	DefaultTechPhone string
	// DefaultTerms holds the default value on creation for the "terms" field.
	DefaultTerms string
	// DefaultURLStats holds the default value on creation for the "url_stats" field.
	DefaultURLStats string
	// DefaultWebsite holds the default value on creation for the "website" field.
	DefaultWebsite string
	// DefaultNetCount holds the default value on creation for the "net_count" field.
	DefaultNetCount int
	// DefaultFacCount holds the default value on creation for the "fac_count" field.
	DefaultFacCount int
	// DefaultIxfImportRequestStatus holds the default value on creation for the "ixf_import_request_status" field.
	DefaultIxfImportRequestStatus string
	// DefaultStatus holds the default value on creation for the "status" field.
	DefaultStatus string
	// IDValidator is a validator for the "id" field. It is called by the builders before save.
	IDValidator func(int) error
)

Columns holds all SQL columns for internetexchange fields.

Functions

func Aka

Aka applies equality check predicate on the "aka" field. It's identical to AkaEQ.

func AkaContains

func AkaContains(v string) predicate.InternetExchange

AkaContains applies the Contains predicate on the "aka" field.

func AkaContainsFold

func AkaContainsFold(v string) predicate.InternetExchange

AkaContainsFold applies the ContainsFold predicate on the "aka" field.

func AkaEQ

AkaEQ applies the EQ predicate on the "aka" field.

func AkaEqualFold

func AkaEqualFold(v string) predicate.InternetExchange

AkaEqualFold applies the EqualFold predicate on the "aka" field.

func AkaFold added in v1.16.0

AkaFold applies equality check predicate on the "aka_fold" field. It's identical to AkaFoldEQ.

func AkaFoldContains added in v1.16.0

func AkaFoldContains(v string) predicate.InternetExchange

AkaFoldContains applies the Contains predicate on the "aka_fold" field.

func AkaFoldContainsFold added in v1.16.0

func AkaFoldContainsFold(v string) predicate.InternetExchange

AkaFoldContainsFold applies the ContainsFold predicate on the "aka_fold" field.

func AkaFoldEQ added in v1.16.0

func AkaFoldEQ(v string) predicate.InternetExchange

AkaFoldEQ applies the EQ predicate on the "aka_fold" field.

func AkaFoldEqualFold added in v1.16.0

func AkaFoldEqualFold(v string) predicate.InternetExchange

AkaFoldEqualFold applies the EqualFold predicate on the "aka_fold" field.

func AkaFoldGT added in v1.16.0

func AkaFoldGT(v string) predicate.InternetExchange

AkaFoldGT applies the GT predicate on the "aka_fold" field.

func AkaFoldGTE added in v1.16.0

func AkaFoldGTE(v string) predicate.InternetExchange

AkaFoldGTE applies the GTE predicate on the "aka_fold" field.

func AkaFoldHasPrefix added in v1.16.0

func AkaFoldHasPrefix(v string) predicate.InternetExchange

AkaFoldHasPrefix applies the HasPrefix predicate on the "aka_fold" field.

func AkaFoldHasSuffix added in v1.16.0

func AkaFoldHasSuffix(v string) predicate.InternetExchange

AkaFoldHasSuffix applies the HasSuffix predicate on the "aka_fold" field.

func AkaFoldIn added in v1.16.0

func AkaFoldIn(vs ...string) predicate.InternetExchange

AkaFoldIn applies the In predicate on the "aka_fold" field.

func AkaFoldIsNil added in v1.16.0

func AkaFoldIsNil() predicate.InternetExchange

AkaFoldIsNil applies the IsNil predicate on the "aka_fold" field.

func AkaFoldLT added in v1.16.0

func AkaFoldLT(v string) predicate.InternetExchange

AkaFoldLT applies the LT predicate on the "aka_fold" field.

func AkaFoldLTE added in v1.16.0

func AkaFoldLTE(v string) predicate.InternetExchange

AkaFoldLTE applies the LTE predicate on the "aka_fold" field.

func AkaFoldNEQ added in v1.16.0

func AkaFoldNEQ(v string) predicate.InternetExchange

AkaFoldNEQ applies the NEQ predicate on the "aka_fold" field.

func AkaFoldNotIn added in v1.16.0

func AkaFoldNotIn(vs ...string) predicate.InternetExchange

AkaFoldNotIn applies the NotIn predicate on the "aka_fold" field.

func AkaFoldNotNil added in v1.16.0

func AkaFoldNotNil() predicate.InternetExchange

AkaFoldNotNil applies the NotNil predicate on the "aka_fold" field.

func AkaGT

AkaGT applies the GT predicate on the "aka" field.

func AkaGTE

AkaGTE applies the GTE predicate on the "aka" field.

func AkaHasPrefix

func AkaHasPrefix(v string) predicate.InternetExchange

AkaHasPrefix applies the HasPrefix predicate on the "aka" field.

func AkaHasSuffix

func AkaHasSuffix(v string) predicate.InternetExchange

AkaHasSuffix applies the HasSuffix predicate on the "aka" field.

func AkaIn

func AkaIn(vs ...string) predicate.InternetExchange

AkaIn applies the In predicate on the "aka" field.

func AkaIsNil

func AkaIsNil() predicate.InternetExchange

AkaIsNil applies the IsNil predicate on the "aka" field.

func AkaLT

AkaLT applies the LT predicate on the "aka" field.

func AkaLTE

AkaLTE applies the LTE predicate on the "aka" field.

func AkaNEQ

AkaNEQ applies the NEQ predicate on the "aka" field.

func AkaNotIn

func AkaNotIn(vs ...string) predicate.InternetExchange

AkaNotIn applies the NotIn predicate on the "aka" field.

func AkaNotNil

func AkaNotNil() predicate.InternetExchange

AkaNotNil applies the NotNil predicate on the "aka" field.

func And

And groups predicates with the AND operator between them.

func City

City applies equality check predicate on the "city" field. It's identical to CityEQ.

func CityContains

func CityContains(v string) predicate.InternetExchange

CityContains applies the Contains predicate on the "city" field.

func CityContainsFold

func CityContainsFold(v string) predicate.InternetExchange

CityContainsFold applies the ContainsFold predicate on the "city" field.

func CityEQ

CityEQ applies the EQ predicate on the "city" field.

func CityEqualFold

func CityEqualFold(v string) predicate.InternetExchange

CityEqualFold applies the EqualFold predicate on the "city" field.

func CityFold added in v1.16.0

func CityFold(v string) predicate.InternetExchange

CityFold applies equality check predicate on the "city_fold" field. It's identical to CityFoldEQ.

func CityFoldContains added in v1.16.0

func CityFoldContains(v string) predicate.InternetExchange

CityFoldContains applies the Contains predicate on the "city_fold" field.

func CityFoldContainsFold added in v1.16.0

func CityFoldContainsFold(v string) predicate.InternetExchange

CityFoldContainsFold applies the ContainsFold predicate on the "city_fold" field.

func CityFoldEQ added in v1.16.0

func CityFoldEQ(v string) predicate.InternetExchange

CityFoldEQ applies the EQ predicate on the "city_fold" field.

func CityFoldEqualFold added in v1.16.0

func CityFoldEqualFold(v string) predicate.InternetExchange

CityFoldEqualFold applies the EqualFold predicate on the "city_fold" field.

func CityFoldGT added in v1.16.0

func CityFoldGT(v string) predicate.InternetExchange

CityFoldGT applies the GT predicate on the "city_fold" field.

func CityFoldGTE added in v1.16.0

func CityFoldGTE(v string) predicate.InternetExchange

CityFoldGTE applies the GTE predicate on the "city_fold" field.

func CityFoldHasPrefix added in v1.16.0

func CityFoldHasPrefix(v string) predicate.InternetExchange

CityFoldHasPrefix applies the HasPrefix predicate on the "city_fold" field.

func CityFoldHasSuffix added in v1.16.0

func CityFoldHasSuffix(v string) predicate.InternetExchange

CityFoldHasSuffix applies the HasSuffix predicate on the "city_fold" field.

func CityFoldIn added in v1.16.0

func CityFoldIn(vs ...string) predicate.InternetExchange

CityFoldIn applies the In predicate on the "city_fold" field.

func CityFoldIsNil added in v1.16.0

func CityFoldIsNil() predicate.InternetExchange

CityFoldIsNil applies the IsNil predicate on the "city_fold" field.

func CityFoldLT added in v1.16.0

func CityFoldLT(v string) predicate.InternetExchange

CityFoldLT applies the LT predicate on the "city_fold" field.

func CityFoldLTE added in v1.16.0

func CityFoldLTE(v string) predicate.InternetExchange

CityFoldLTE applies the LTE predicate on the "city_fold" field.

func CityFoldNEQ added in v1.16.0

func CityFoldNEQ(v string) predicate.InternetExchange

CityFoldNEQ applies the NEQ predicate on the "city_fold" field.

func CityFoldNotIn added in v1.16.0

func CityFoldNotIn(vs ...string) predicate.InternetExchange

CityFoldNotIn applies the NotIn predicate on the "city_fold" field.

func CityFoldNotNil added in v1.16.0

func CityFoldNotNil() predicate.InternetExchange

CityFoldNotNil applies the NotNil predicate on the "city_fold" field.

func CityGT

CityGT applies the GT predicate on the "city" field.

func CityGTE

CityGTE applies the GTE predicate on the "city" field.

func CityHasPrefix

func CityHasPrefix(v string) predicate.InternetExchange

CityHasPrefix applies the HasPrefix predicate on the "city" field.

func CityHasSuffix

func CityHasSuffix(v string) predicate.InternetExchange

CityHasSuffix applies the HasSuffix predicate on the "city" field.

func CityIn

func CityIn(vs ...string) predicate.InternetExchange

CityIn applies the In predicate on the "city" field.

func CityIsNil added in v1.4.0

func CityIsNil() predicate.InternetExchange

CityIsNil applies the IsNil predicate on the "city" field.

func CityLT

CityLT applies the LT predicate on the "city" field.

func CityLTE

CityLTE applies the LTE predicate on the "city" field.

func CityNEQ

CityNEQ applies the NEQ predicate on the "city" field.

func CityNotIn

func CityNotIn(vs ...string) predicate.InternetExchange

CityNotIn applies the NotIn predicate on the "city" field.

func CityNotNil added in v1.4.0

func CityNotNil() predicate.InternetExchange

CityNotNil applies the NotNil predicate on the "city" field.

func Country

Country applies equality check predicate on the "country" field. It's identical to CountryEQ.

func CountryContains

func CountryContains(v string) predicate.InternetExchange

CountryContains applies the Contains predicate on the "country" field.

func CountryContainsFold

func CountryContainsFold(v string) predicate.InternetExchange

CountryContainsFold applies the ContainsFold predicate on the "country" field.

func CountryEQ

func CountryEQ(v string) predicate.InternetExchange

CountryEQ applies the EQ predicate on the "country" field.

func CountryEqualFold

func CountryEqualFold(v string) predicate.InternetExchange

CountryEqualFold applies the EqualFold predicate on the "country" field.

func CountryGT

func CountryGT(v string) predicate.InternetExchange

CountryGT applies the GT predicate on the "country" field.

func CountryGTE

func CountryGTE(v string) predicate.InternetExchange

CountryGTE applies the GTE predicate on the "country" field.

func CountryHasPrefix

func CountryHasPrefix(v string) predicate.InternetExchange

CountryHasPrefix applies the HasPrefix predicate on the "country" field.

func CountryHasSuffix

func CountryHasSuffix(v string) predicate.InternetExchange

CountryHasSuffix applies the HasSuffix predicate on the "country" field.

func CountryIn

func CountryIn(vs ...string) predicate.InternetExchange

CountryIn applies the In predicate on the "country" field.

func CountryIsNil added in v1.4.0

func CountryIsNil() predicate.InternetExchange

CountryIsNil applies the IsNil predicate on the "country" field.

func CountryLT

func CountryLT(v string) predicate.InternetExchange

CountryLT applies the LT predicate on the "country" field.

func CountryLTE

func CountryLTE(v string) predicate.InternetExchange

CountryLTE applies the LTE predicate on the "country" field.

func CountryNEQ

func CountryNEQ(v string) predicate.InternetExchange

CountryNEQ applies the NEQ predicate on the "country" field.

func CountryNotIn

func CountryNotIn(vs ...string) predicate.InternetExchange

CountryNotIn applies the NotIn predicate on the "country" field.

func CountryNotNil added in v1.4.0

func CountryNotNil() predicate.InternetExchange

CountryNotNil applies the NotNil predicate on the "country" field.

func Created

Created applies equality check predicate on the "created" field. It's identical to CreatedEQ.

func CreatedEQ

func CreatedEQ(v time.Time) predicate.InternetExchange

CreatedEQ applies the EQ predicate on the "created" field.

func CreatedGT

func CreatedGT(v time.Time) predicate.InternetExchange

CreatedGT applies the GT predicate on the "created" field.

func CreatedGTE

func CreatedGTE(v time.Time) predicate.InternetExchange

CreatedGTE applies the GTE predicate on the "created" field.

func CreatedIn

func CreatedIn(vs ...time.Time) predicate.InternetExchange

CreatedIn applies the In predicate on the "created" field.

func CreatedLT

func CreatedLT(v time.Time) predicate.InternetExchange

CreatedLT applies the LT predicate on the "created" field.

func CreatedLTE

func CreatedLTE(v time.Time) predicate.InternetExchange

CreatedLTE applies the LTE predicate on the "created" field.

func CreatedNEQ

func CreatedNEQ(v time.Time) predicate.InternetExchange

CreatedNEQ applies the NEQ predicate on the "created" field.

func CreatedNotIn

func CreatedNotIn(vs ...time.Time) predicate.InternetExchange

CreatedNotIn applies the NotIn predicate on the "created" field.

func FacCount

func FacCount(v int) predicate.InternetExchange

FacCount applies equality check predicate on the "fac_count" field. It's identical to FacCountEQ.

func FacCountEQ

func FacCountEQ(v int) predicate.InternetExchange

FacCountEQ applies the EQ predicate on the "fac_count" field.

func FacCountGT

func FacCountGT(v int) predicate.InternetExchange

FacCountGT applies the GT predicate on the "fac_count" field.

func FacCountGTE

func FacCountGTE(v int) predicate.InternetExchange

FacCountGTE applies the GTE predicate on the "fac_count" field.

func FacCountIn

func FacCountIn(vs ...int) predicate.InternetExchange

FacCountIn applies the In predicate on the "fac_count" field.

func FacCountIsNil

func FacCountIsNil() predicate.InternetExchange

FacCountIsNil applies the IsNil predicate on the "fac_count" field.

func FacCountLT

func FacCountLT(v int) predicate.InternetExchange

FacCountLT applies the LT predicate on the "fac_count" field.

func FacCountLTE

func FacCountLTE(v int) predicate.InternetExchange

FacCountLTE applies the LTE predicate on the "fac_count" field.

func FacCountNEQ

func FacCountNEQ(v int) predicate.InternetExchange

FacCountNEQ applies the NEQ predicate on the "fac_count" field.

func FacCountNotIn

func FacCountNotIn(vs ...int) predicate.InternetExchange

FacCountNotIn applies the NotIn predicate on the "fac_count" field.

func FacCountNotNil

func FacCountNotNil() predicate.InternetExchange

FacCountNotNil applies the NotNil predicate on the "fac_count" field.

func HasIxFacilities

func HasIxFacilities() predicate.InternetExchange

HasIxFacilities applies the HasEdge predicate on the "ix_facilities" edge.

func HasIxFacilitiesWith

func HasIxFacilitiesWith(preds ...predicate.IxFacility) predicate.InternetExchange

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

func HasIxLans

func HasIxLans() predicate.InternetExchange

HasIxLans applies the HasEdge predicate on the "ix_lans" edge.

func HasIxLansWith

func HasIxLansWith(preds ...predicate.IxLan) predicate.InternetExchange

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

func HasOrganization

func HasOrganization() predicate.InternetExchange

HasOrganization applies the HasEdge predicate on the "organization" edge.

func HasOrganizationWith

func HasOrganizationWith(preds ...predicate.Organization) predicate.InternetExchange

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

func ID

ID filters vertices based on their ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.InternetExchange

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.InternetExchange

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.InternetExchange

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func IxfImportRequest

func IxfImportRequest(v string) predicate.InternetExchange

IxfImportRequest applies equality check predicate on the "ixf_import_request" field. It's identical to IxfImportRequestEQ.

func IxfImportRequestContains

func IxfImportRequestContains(v string) predicate.InternetExchange

IxfImportRequestContains applies the Contains predicate on the "ixf_import_request" field.

func IxfImportRequestContainsFold

func IxfImportRequestContainsFold(v string) predicate.InternetExchange

IxfImportRequestContainsFold applies the ContainsFold predicate on the "ixf_import_request" field.

func IxfImportRequestEQ

func IxfImportRequestEQ(v string) predicate.InternetExchange

IxfImportRequestEQ applies the EQ predicate on the "ixf_import_request" field.

func IxfImportRequestEqualFold

func IxfImportRequestEqualFold(v string) predicate.InternetExchange

IxfImportRequestEqualFold applies the EqualFold predicate on the "ixf_import_request" field.

func IxfImportRequestGT

func IxfImportRequestGT(v string) predicate.InternetExchange

IxfImportRequestGT applies the GT predicate on the "ixf_import_request" field.

func IxfImportRequestGTE

func IxfImportRequestGTE(v string) predicate.InternetExchange

IxfImportRequestGTE applies the GTE predicate on the "ixf_import_request" field.

func IxfImportRequestHasPrefix

func IxfImportRequestHasPrefix(v string) predicate.InternetExchange

IxfImportRequestHasPrefix applies the HasPrefix predicate on the "ixf_import_request" field.

func IxfImportRequestHasSuffix

func IxfImportRequestHasSuffix(v string) predicate.InternetExchange

IxfImportRequestHasSuffix applies the HasSuffix predicate on the "ixf_import_request" field.

func IxfImportRequestIn

func IxfImportRequestIn(vs ...string) predicate.InternetExchange

IxfImportRequestIn applies the In predicate on the "ixf_import_request" field.

func IxfImportRequestIsNil

func IxfImportRequestIsNil() predicate.InternetExchange

IxfImportRequestIsNil applies the IsNil predicate on the "ixf_import_request" field.

func IxfImportRequestLT

func IxfImportRequestLT(v string) predicate.InternetExchange

IxfImportRequestLT applies the LT predicate on the "ixf_import_request" field.

func IxfImportRequestLTE

func IxfImportRequestLTE(v string) predicate.InternetExchange

IxfImportRequestLTE applies the LTE predicate on the "ixf_import_request" field.

func IxfImportRequestNEQ

func IxfImportRequestNEQ(v string) predicate.InternetExchange

IxfImportRequestNEQ applies the NEQ predicate on the "ixf_import_request" field.

func IxfImportRequestNotIn

func IxfImportRequestNotIn(vs ...string) predicate.InternetExchange

IxfImportRequestNotIn applies the NotIn predicate on the "ixf_import_request" field.

func IxfImportRequestNotNil

func IxfImportRequestNotNil() predicate.InternetExchange

IxfImportRequestNotNil applies the NotNil predicate on the "ixf_import_request" field.

func IxfImportRequestStatus

func IxfImportRequestStatus(v string) predicate.InternetExchange

IxfImportRequestStatus applies equality check predicate on the "ixf_import_request_status" field. It's identical to IxfImportRequestStatusEQ.

func IxfImportRequestStatusContains

func IxfImportRequestStatusContains(v string) predicate.InternetExchange

IxfImportRequestStatusContains applies the Contains predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusContainsFold

func IxfImportRequestStatusContainsFold(v string) predicate.InternetExchange

IxfImportRequestStatusContainsFold applies the ContainsFold predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusEQ

func IxfImportRequestStatusEQ(v string) predicate.InternetExchange

IxfImportRequestStatusEQ applies the EQ predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusEqualFold

func IxfImportRequestStatusEqualFold(v string) predicate.InternetExchange

IxfImportRequestStatusEqualFold applies the EqualFold predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusGT

func IxfImportRequestStatusGT(v string) predicate.InternetExchange

IxfImportRequestStatusGT applies the GT predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusGTE

func IxfImportRequestStatusGTE(v string) predicate.InternetExchange

IxfImportRequestStatusGTE applies the GTE predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusHasPrefix

func IxfImportRequestStatusHasPrefix(v string) predicate.InternetExchange

IxfImportRequestStatusHasPrefix applies the HasPrefix predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusHasSuffix

func IxfImportRequestStatusHasSuffix(v string) predicate.InternetExchange

IxfImportRequestStatusHasSuffix applies the HasSuffix predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusIn

func IxfImportRequestStatusIn(vs ...string) predicate.InternetExchange

IxfImportRequestStatusIn applies the In predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusIsNil

func IxfImportRequestStatusIsNil() predicate.InternetExchange

IxfImportRequestStatusIsNil applies the IsNil predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusLT

func IxfImportRequestStatusLT(v string) predicate.InternetExchange

IxfImportRequestStatusLT applies the LT predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusLTE

func IxfImportRequestStatusLTE(v string) predicate.InternetExchange

IxfImportRequestStatusLTE applies the LTE predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusNEQ

func IxfImportRequestStatusNEQ(v string) predicate.InternetExchange

IxfImportRequestStatusNEQ applies the NEQ predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusNotIn

func IxfImportRequestStatusNotIn(vs ...string) predicate.InternetExchange

IxfImportRequestStatusNotIn applies the NotIn predicate on the "ixf_import_request_status" field.

func IxfImportRequestStatusNotNil

func IxfImportRequestStatusNotNil() predicate.InternetExchange

IxfImportRequestStatusNotNil applies the NotNil predicate on the "ixf_import_request_status" field.

func IxfLastImport

func IxfLastImport(v time.Time) predicate.InternetExchange

IxfLastImport applies equality check predicate on the "ixf_last_import" field. It's identical to IxfLastImportEQ.

func IxfLastImportEQ

func IxfLastImportEQ(v time.Time) predicate.InternetExchange

IxfLastImportEQ applies the EQ predicate on the "ixf_last_import" field.

func IxfLastImportGT

func IxfLastImportGT(v time.Time) predicate.InternetExchange

IxfLastImportGT applies the GT predicate on the "ixf_last_import" field.

func IxfLastImportGTE

func IxfLastImportGTE(v time.Time) predicate.InternetExchange

IxfLastImportGTE applies the GTE predicate on the "ixf_last_import" field.

func IxfLastImportIn

func IxfLastImportIn(vs ...time.Time) predicate.InternetExchange

IxfLastImportIn applies the In predicate on the "ixf_last_import" field.

func IxfLastImportIsNil

func IxfLastImportIsNil() predicate.InternetExchange

IxfLastImportIsNil applies the IsNil predicate on the "ixf_last_import" field.

func IxfLastImportLT

func IxfLastImportLT(v time.Time) predicate.InternetExchange

IxfLastImportLT applies the LT predicate on the "ixf_last_import" field.

func IxfLastImportLTE

func IxfLastImportLTE(v time.Time) predicate.InternetExchange

IxfLastImportLTE applies the LTE predicate on the "ixf_last_import" field.

func IxfLastImportNEQ

func IxfLastImportNEQ(v time.Time) predicate.InternetExchange

IxfLastImportNEQ applies the NEQ predicate on the "ixf_last_import" field.

func IxfLastImportNotIn

func IxfLastImportNotIn(vs ...time.Time) predicate.InternetExchange

IxfLastImportNotIn applies the NotIn predicate on the "ixf_last_import" field.

func IxfLastImportNotNil

func IxfLastImportNotNil() predicate.InternetExchange

IxfLastImportNotNil applies the NotNil predicate on the "ixf_last_import" field.

func IxfNetCount

func IxfNetCount(v int) predicate.InternetExchange

IxfNetCount applies equality check predicate on the "ixf_net_count" field. It's identical to IxfNetCountEQ.

func IxfNetCountEQ

func IxfNetCountEQ(v int) predicate.InternetExchange

IxfNetCountEQ applies the EQ predicate on the "ixf_net_count" field.

func IxfNetCountGT

func IxfNetCountGT(v int) predicate.InternetExchange

IxfNetCountGT applies the GT predicate on the "ixf_net_count" field.

func IxfNetCountGTE

func IxfNetCountGTE(v int) predicate.InternetExchange

IxfNetCountGTE applies the GTE predicate on the "ixf_net_count" field.

func IxfNetCountIn

func IxfNetCountIn(vs ...int) predicate.InternetExchange

IxfNetCountIn applies the In predicate on the "ixf_net_count" field.

func IxfNetCountIsNil added in v1.4.0

func IxfNetCountIsNil() predicate.InternetExchange

IxfNetCountIsNil applies the IsNil predicate on the "ixf_net_count" field.

func IxfNetCountLT

func IxfNetCountLT(v int) predicate.InternetExchange

IxfNetCountLT applies the LT predicate on the "ixf_net_count" field.

func IxfNetCountLTE

func IxfNetCountLTE(v int) predicate.InternetExchange

IxfNetCountLTE applies the LTE predicate on the "ixf_net_count" field.

func IxfNetCountNEQ

func IxfNetCountNEQ(v int) predicate.InternetExchange

IxfNetCountNEQ applies the NEQ predicate on the "ixf_net_count" field.

func IxfNetCountNotIn

func IxfNetCountNotIn(vs ...int) predicate.InternetExchange

IxfNetCountNotIn applies the NotIn predicate on the "ixf_net_count" field.

func IxfNetCountNotNil added in v1.4.0

func IxfNetCountNotNil() predicate.InternetExchange

IxfNetCountNotNil applies the NotNil predicate on the "ixf_net_count" field.

Logo applies equality check predicate on the "logo" field. It's identical to LogoEQ.

func LogoContains

func LogoContains(v string) predicate.InternetExchange

LogoContains applies the Contains predicate on the "logo" field.

func LogoContainsFold

func LogoContainsFold(v string) predicate.InternetExchange

LogoContainsFold applies the ContainsFold predicate on the "logo" field.

func LogoEQ

LogoEQ applies the EQ predicate on the "logo" field.

func LogoEqualFold

func LogoEqualFold(v string) predicate.InternetExchange

LogoEqualFold applies the EqualFold predicate on the "logo" field.

func LogoGT

LogoGT applies the GT predicate on the "logo" field.

func LogoGTE

LogoGTE applies the GTE predicate on the "logo" field.

func LogoHasPrefix

func LogoHasPrefix(v string) predicate.InternetExchange

LogoHasPrefix applies the HasPrefix predicate on the "logo" field.

func LogoHasSuffix

func LogoHasSuffix(v string) predicate.InternetExchange

LogoHasSuffix applies the HasSuffix predicate on the "logo" field.

func LogoIn

func LogoIn(vs ...string) predicate.InternetExchange

LogoIn applies the In predicate on the "logo" field.

func LogoIsNil

func LogoIsNil() predicate.InternetExchange

LogoIsNil applies the IsNil predicate on the "logo" field.

func LogoLT

LogoLT applies the LT predicate on the "logo" field.

func LogoLTE

LogoLTE applies the LTE predicate on the "logo" field.

func LogoNEQ

LogoNEQ applies the NEQ predicate on the "logo" field.

func LogoNotIn

func LogoNotIn(vs ...string) predicate.InternetExchange

LogoNotIn applies the NotIn predicate on the "logo" field.

func LogoNotNil

func LogoNotNil() predicate.InternetExchange

LogoNotNil applies the NotNil predicate on the "logo" field.

func Media

Media applies equality check predicate on the "media" field. It's identical to MediaEQ.

func MediaContains

func MediaContains(v string) predicate.InternetExchange

MediaContains applies the Contains predicate on the "media" field.

func MediaContainsFold

func MediaContainsFold(v string) predicate.InternetExchange

MediaContainsFold applies the ContainsFold predicate on the "media" field.

func MediaEQ

MediaEQ applies the EQ predicate on the "media" field.

func MediaEqualFold

func MediaEqualFold(v string) predicate.InternetExchange

MediaEqualFold applies the EqualFold predicate on the "media" field.

func MediaGT

MediaGT applies the GT predicate on the "media" field.

func MediaGTE

func MediaGTE(v string) predicate.InternetExchange

MediaGTE applies the GTE predicate on the "media" field.

func MediaHasPrefix

func MediaHasPrefix(v string) predicate.InternetExchange

MediaHasPrefix applies the HasPrefix predicate on the "media" field.

func MediaHasSuffix

func MediaHasSuffix(v string) predicate.InternetExchange

MediaHasSuffix applies the HasSuffix predicate on the "media" field.

func MediaIn

func MediaIn(vs ...string) predicate.InternetExchange

MediaIn applies the In predicate on the "media" field.

func MediaIsNil added in v1.4.0

func MediaIsNil() predicate.InternetExchange

MediaIsNil applies the IsNil predicate on the "media" field.

func MediaLT

MediaLT applies the LT predicate on the "media" field.

func MediaLTE

func MediaLTE(v string) predicate.InternetExchange

MediaLTE applies the LTE predicate on the "media" field.

func MediaNEQ

func MediaNEQ(v string) predicate.InternetExchange

MediaNEQ applies the NEQ predicate on the "media" field.

func MediaNotIn

func MediaNotIn(vs ...string) predicate.InternetExchange

MediaNotIn applies the NotIn predicate on the "media" field.

func MediaNotNil added in v1.4.0

func MediaNotNil() predicate.InternetExchange

MediaNotNil applies the NotNil predicate on the "media" field.

func Name

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

func NameContains

func NameContains(v string) predicate.InternetExchange

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

func NameContainsFold

func NameContainsFold(v string) predicate.InternetExchange

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

func NameEQ

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

func NameEqualFold

func NameEqualFold(v string) predicate.InternetExchange

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

func NameFold added in v1.16.0

func NameFold(v string) predicate.InternetExchange

NameFold applies equality check predicate on the "name_fold" field. It's identical to NameFoldEQ.

func NameFoldContains added in v1.16.0

func NameFoldContains(v string) predicate.InternetExchange

NameFoldContains applies the Contains predicate on the "name_fold" field.

func NameFoldContainsFold added in v1.16.0

func NameFoldContainsFold(v string) predicate.InternetExchange

NameFoldContainsFold applies the ContainsFold predicate on the "name_fold" field.

func NameFoldEQ added in v1.16.0

func NameFoldEQ(v string) predicate.InternetExchange

NameFoldEQ applies the EQ predicate on the "name_fold" field.

func NameFoldEqualFold added in v1.16.0

func NameFoldEqualFold(v string) predicate.InternetExchange

NameFoldEqualFold applies the EqualFold predicate on the "name_fold" field.

func NameFoldGT added in v1.16.0

func NameFoldGT(v string) predicate.InternetExchange

NameFoldGT applies the GT predicate on the "name_fold" field.

func NameFoldGTE added in v1.16.0

func NameFoldGTE(v string) predicate.InternetExchange

NameFoldGTE applies the GTE predicate on the "name_fold" field.

func NameFoldHasPrefix added in v1.16.0

func NameFoldHasPrefix(v string) predicate.InternetExchange

NameFoldHasPrefix applies the HasPrefix predicate on the "name_fold" field.

func NameFoldHasSuffix added in v1.16.0

func NameFoldHasSuffix(v string) predicate.InternetExchange

NameFoldHasSuffix applies the HasSuffix predicate on the "name_fold" field.

func NameFoldIn added in v1.16.0

func NameFoldIn(vs ...string) predicate.InternetExchange

NameFoldIn applies the In predicate on the "name_fold" field.

func NameFoldIsNil added in v1.16.0

func NameFoldIsNil() predicate.InternetExchange

NameFoldIsNil applies the IsNil predicate on the "name_fold" field.

func NameFoldLT added in v1.16.0

func NameFoldLT(v string) predicate.InternetExchange

NameFoldLT applies the LT predicate on the "name_fold" field.

func NameFoldLTE added in v1.16.0

func NameFoldLTE(v string) predicate.InternetExchange

NameFoldLTE applies the LTE predicate on the "name_fold" field.

func NameFoldNEQ added in v1.16.0

func NameFoldNEQ(v string) predicate.InternetExchange

NameFoldNEQ applies the NEQ predicate on the "name_fold" field.

func NameFoldNotIn added in v1.16.0

func NameFoldNotIn(vs ...string) predicate.InternetExchange

NameFoldNotIn applies the NotIn predicate on the "name_fold" field.

func NameFoldNotNil added in v1.16.0

func NameFoldNotNil() predicate.InternetExchange

NameFoldNotNil applies the NotNil predicate on the "name_fold" field.

func NameGT

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

func NameGTE

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.InternetExchange

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.InternetExchange

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

func NameIn

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

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

func NameLT

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

func NameLTE

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

func NameLong

func NameLong(v string) predicate.InternetExchange

NameLong applies equality check predicate on the "name_long" field. It's identical to NameLongEQ.

func NameLongContains

func NameLongContains(v string) predicate.InternetExchange

NameLongContains applies the Contains predicate on the "name_long" field.

func NameLongContainsFold

func NameLongContainsFold(v string) predicate.InternetExchange

NameLongContainsFold applies the ContainsFold predicate on the "name_long" field.

func NameLongEQ

func NameLongEQ(v string) predicate.InternetExchange

NameLongEQ applies the EQ predicate on the "name_long" field.

func NameLongEqualFold

func NameLongEqualFold(v string) predicate.InternetExchange

NameLongEqualFold applies the EqualFold predicate on the "name_long" field.

func NameLongFold added in v1.16.0

func NameLongFold(v string) predicate.InternetExchange

NameLongFold applies equality check predicate on the "name_long_fold" field. It's identical to NameLongFoldEQ.

func NameLongFoldContains added in v1.16.0

func NameLongFoldContains(v string) predicate.InternetExchange

NameLongFoldContains applies the Contains predicate on the "name_long_fold" field.

func NameLongFoldContainsFold added in v1.16.0

func NameLongFoldContainsFold(v string) predicate.InternetExchange

NameLongFoldContainsFold applies the ContainsFold predicate on the "name_long_fold" field.

func NameLongFoldEQ added in v1.16.0

func NameLongFoldEQ(v string) predicate.InternetExchange

NameLongFoldEQ applies the EQ predicate on the "name_long_fold" field.

func NameLongFoldEqualFold added in v1.16.0

func NameLongFoldEqualFold(v string) predicate.InternetExchange

NameLongFoldEqualFold applies the EqualFold predicate on the "name_long_fold" field.

func NameLongFoldGT added in v1.16.0

func NameLongFoldGT(v string) predicate.InternetExchange

NameLongFoldGT applies the GT predicate on the "name_long_fold" field.

func NameLongFoldGTE added in v1.16.0

func NameLongFoldGTE(v string) predicate.InternetExchange

NameLongFoldGTE applies the GTE predicate on the "name_long_fold" field.

func NameLongFoldHasPrefix added in v1.16.0

func NameLongFoldHasPrefix(v string) predicate.InternetExchange

NameLongFoldHasPrefix applies the HasPrefix predicate on the "name_long_fold" field.

func NameLongFoldHasSuffix added in v1.16.0

func NameLongFoldHasSuffix(v string) predicate.InternetExchange

NameLongFoldHasSuffix applies the HasSuffix predicate on the "name_long_fold" field.

func NameLongFoldIn added in v1.16.0

func NameLongFoldIn(vs ...string) predicate.InternetExchange

NameLongFoldIn applies the In predicate on the "name_long_fold" field.

func NameLongFoldIsNil added in v1.16.0

func NameLongFoldIsNil() predicate.InternetExchange

NameLongFoldIsNil applies the IsNil predicate on the "name_long_fold" field.

func NameLongFoldLT added in v1.16.0

func NameLongFoldLT(v string) predicate.InternetExchange

NameLongFoldLT applies the LT predicate on the "name_long_fold" field.

func NameLongFoldLTE added in v1.16.0

func NameLongFoldLTE(v string) predicate.InternetExchange

NameLongFoldLTE applies the LTE predicate on the "name_long_fold" field.

func NameLongFoldNEQ added in v1.16.0

func NameLongFoldNEQ(v string) predicate.InternetExchange

NameLongFoldNEQ applies the NEQ predicate on the "name_long_fold" field.

func NameLongFoldNotIn added in v1.16.0

func NameLongFoldNotIn(vs ...string) predicate.InternetExchange

NameLongFoldNotIn applies the NotIn predicate on the "name_long_fold" field.

func NameLongFoldNotNil added in v1.16.0

func NameLongFoldNotNil() predicate.InternetExchange

NameLongFoldNotNil applies the NotNil predicate on the "name_long_fold" field.

func NameLongGT

func NameLongGT(v string) predicate.InternetExchange

NameLongGT applies the GT predicate on the "name_long" field.

func NameLongGTE

func NameLongGTE(v string) predicate.InternetExchange

NameLongGTE applies the GTE predicate on the "name_long" field.

func NameLongHasPrefix

func NameLongHasPrefix(v string) predicate.InternetExchange

NameLongHasPrefix applies the HasPrefix predicate on the "name_long" field.

func NameLongHasSuffix

func NameLongHasSuffix(v string) predicate.InternetExchange

NameLongHasSuffix applies the HasSuffix predicate on the "name_long" field.

func NameLongIn

func NameLongIn(vs ...string) predicate.InternetExchange

NameLongIn applies the In predicate on the "name_long" field.

func NameLongIsNil

func NameLongIsNil() predicate.InternetExchange

NameLongIsNil applies the IsNil predicate on the "name_long" field.

func NameLongLT

func NameLongLT(v string) predicate.InternetExchange

NameLongLT applies the LT predicate on the "name_long" field.

func NameLongLTE

func NameLongLTE(v string) predicate.InternetExchange

NameLongLTE applies the LTE predicate on the "name_long" field.

func NameLongNEQ

func NameLongNEQ(v string) predicate.InternetExchange

NameLongNEQ applies the NEQ predicate on the "name_long" field.

func NameLongNotIn

func NameLongNotIn(vs ...string) predicate.InternetExchange

NameLongNotIn applies the NotIn predicate on the "name_long" field.

func NameLongNotNil

func NameLongNotNil() predicate.InternetExchange

NameLongNotNil applies the NotNil predicate on the "name_long" field.

func NameNEQ

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

func NameNotIn

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

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

func NetCount

func NetCount(v int) predicate.InternetExchange

NetCount applies equality check predicate on the "net_count" field. It's identical to NetCountEQ.

func NetCountEQ

func NetCountEQ(v int) predicate.InternetExchange

NetCountEQ applies the EQ predicate on the "net_count" field.

func NetCountGT

func NetCountGT(v int) predicate.InternetExchange

NetCountGT applies the GT predicate on the "net_count" field.

func NetCountGTE

func NetCountGTE(v int) predicate.InternetExchange

NetCountGTE applies the GTE predicate on the "net_count" field.

func NetCountIn

func NetCountIn(vs ...int) predicate.InternetExchange

NetCountIn applies the In predicate on the "net_count" field.

func NetCountIsNil

func NetCountIsNil() predicate.InternetExchange

NetCountIsNil applies the IsNil predicate on the "net_count" field.

func NetCountLT

func NetCountLT(v int) predicate.InternetExchange

NetCountLT applies the LT predicate on the "net_count" field.

func NetCountLTE

func NetCountLTE(v int) predicate.InternetExchange

NetCountLTE applies the LTE predicate on the "net_count" field.

func NetCountNEQ

func NetCountNEQ(v int) predicate.InternetExchange

NetCountNEQ applies the NEQ predicate on the "net_count" field.

func NetCountNotIn

func NetCountNotIn(vs ...int) predicate.InternetExchange

NetCountNotIn applies the NotIn predicate on the "net_count" field.

func NetCountNotNil

func NetCountNotNil() predicate.InternetExchange

NetCountNotNil applies the NotNil predicate on the "net_count" field.

func Not

Not applies the not operator on the given predicate.

func Notes

Notes applies equality check predicate on the "notes" field. It's identical to NotesEQ.

func NotesContains

func NotesContains(v string) predicate.InternetExchange

NotesContains applies the Contains predicate on the "notes" field.

func NotesContainsFold

func NotesContainsFold(v string) predicate.InternetExchange

NotesContainsFold applies the ContainsFold predicate on the "notes" field.

func NotesEQ

NotesEQ applies the EQ predicate on the "notes" field.

func NotesEqualFold

func NotesEqualFold(v string) predicate.InternetExchange

NotesEqualFold applies the EqualFold predicate on the "notes" field.

func NotesGT

NotesGT applies the GT predicate on the "notes" field.

func NotesGTE

func NotesGTE(v string) predicate.InternetExchange

NotesGTE applies the GTE predicate on the "notes" field.

func NotesHasPrefix

func NotesHasPrefix(v string) predicate.InternetExchange

NotesHasPrefix applies the HasPrefix predicate on the "notes" field.

func NotesHasSuffix

func NotesHasSuffix(v string) predicate.InternetExchange

NotesHasSuffix applies the HasSuffix predicate on the "notes" field.

func NotesIn

func NotesIn(vs ...string) predicate.InternetExchange

NotesIn applies the In predicate on the "notes" field.

func NotesIsNil

func NotesIsNil() predicate.InternetExchange

NotesIsNil applies the IsNil predicate on the "notes" field.

func NotesLT

NotesLT applies the LT predicate on the "notes" field.

func NotesLTE

func NotesLTE(v string) predicate.InternetExchange

NotesLTE applies the LTE predicate on the "notes" field.

func NotesNEQ

func NotesNEQ(v string) predicate.InternetExchange

NotesNEQ applies the NEQ predicate on the "notes" field.

func NotesNotIn

func NotesNotIn(vs ...string) predicate.InternetExchange

NotesNotIn applies the NotIn predicate on the "notes" field.

func NotesNotNil

func NotesNotNil() predicate.InternetExchange

NotesNotNil applies the NotNil predicate on the "notes" field.

func Or

Or groups predicates with the OR operator between them.

func OrgID

OrgID applies equality check predicate on the "org_id" field. It's identical to OrgIDEQ.

func OrgIDEQ

func OrgIDEQ(v int) predicate.InternetExchange

OrgIDEQ applies the EQ predicate on the "org_id" field.

func OrgIDIn

func OrgIDIn(vs ...int) predicate.InternetExchange

OrgIDIn applies the In predicate on the "org_id" field.

func OrgIDIsNil

func OrgIDIsNil() predicate.InternetExchange

OrgIDIsNil applies the IsNil predicate on the "org_id" field.

func OrgIDNEQ

func OrgIDNEQ(v int) predicate.InternetExchange

OrgIDNEQ applies the NEQ predicate on the "org_id" field.

func OrgIDNotIn

func OrgIDNotIn(vs ...int) predicate.InternetExchange

OrgIDNotIn applies the NotIn predicate on the "org_id" field.

func OrgIDNotNil

func OrgIDNotNil() predicate.InternetExchange

OrgIDNotNil applies the NotNil predicate on the "org_id" field.

func PolicyEmail

func PolicyEmail(v string) predicate.InternetExchange

PolicyEmail applies equality check predicate on the "policy_email" field. It's identical to PolicyEmailEQ.

func PolicyEmailContains

func PolicyEmailContains(v string) predicate.InternetExchange

PolicyEmailContains applies the Contains predicate on the "policy_email" field.

func PolicyEmailContainsFold

func PolicyEmailContainsFold(v string) predicate.InternetExchange

PolicyEmailContainsFold applies the ContainsFold predicate on the "policy_email" field.

func PolicyEmailEQ

func PolicyEmailEQ(v string) predicate.InternetExchange

PolicyEmailEQ applies the EQ predicate on the "policy_email" field.

func PolicyEmailEqualFold

func PolicyEmailEqualFold(v string) predicate.InternetExchange

PolicyEmailEqualFold applies the EqualFold predicate on the "policy_email" field.

func PolicyEmailGT

func PolicyEmailGT(v string) predicate.InternetExchange

PolicyEmailGT applies the GT predicate on the "policy_email" field.

func PolicyEmailGTE

func PolicyEmailGTE(v string) predicate.InternetExchange

PolicyEmailGTE applies the GTE predicate on the "policy_email" field.

func PolicyEmailHasPrefix

func PolicyEmailHasPrefix(v string) predicate.InternetExchange

PolicyEmailHasPrefix applies the HasPrefix predicate on the "policy_email" field.

func PolicyEmailHasSuffix

func PolicyEmailHasSuffix(v string) predicate.InternetExchange

PolicyEmailHasSuffix applies the HasSuffix predicate on the "policy_email" field.

func PolicyEmailIn

func PolicyEmailIn(vs ...string) predicate.InternetExchange

PolicyEmailIn applies the In predicate on the "policy_email" field.

func PolicyEmailIsNil

func PolicyEmailIsNil() predicate.InternetExchange

PolicyEmailIsNil applies the IsNil predicate on the "policy_email" field.

func PolicyEmailLT

func PolicyEmailLT(v string) predicate.InternetExchange

PolicyEmailLT applies the LT predicate on the "policy_email" field.

func PolicyEmailLTE

func PolicyEmailLTE(v string) predicate.InternetExchange

PolicyEmailLTE applies the LTE predicate on the "policy_email" field.

func PolicyEmailNEQ

func PolicyEmailNEQ(v string) predicate.InternetExchange

PolicyEmailNEQ applies the NEQ predicate on the "policy_email" field.

func PolicyEmailNotIn

func PolicyEmailNotIn(vs ...string) predicate.InternetExchange

PolicyEmailNotIn applies the NotIn predicate on the "policy_email" field.

func PolicyEmailNotNil

func PolicyEmailNotNil() predicate.InternetExchange

PolicyEmailNotNil applies the NotNil predicate on the "policy_email" field.

func PolicyPhone

func PolicyPhone(v string) predicate.InternetExchange

PolicyPhone applies equality check predicate on the "policy_phone" field. It's identical to PolicyPhoneEQ.

func PolicyPhoneContains

func PolicyPhoneContains(v string) predicate.InternetExchange

PolicyPhoneContains applies the Contains predicate on the "policy_phone" field.

func PolicyPhoneContainsFold

func PolicyPhoneContainsFold(v string) predicate.InternetExchange

PolicyPhoneContainsFold applies the ContainsFold predicate on the "policy_phone" field.

func PolicyPhoneEQ

func PolicyPhoneEQ(v string) predicate.InternetExchange

PolicyPhoneEQ applies the EQ predicate on the "policy_phone" field.

func PolicyPhoneEqualFold

func PolicyPhoneEqualFold(v string) predicate.InternetExchange

PolicyPhoneEqualFold applies the EqualFold predicate on the "policy_phone" field.

func PolicyPhoneGT

func PolicyPhoneGT(v string) predicate.InternetExchange

PolicyPhoneGT applies the GT predicate on the "policy_phone" field.

func PolicyPhoneGTE

func PolicyPhoneGTE(v string) predicate.InternetExchange

PolicyPhoneGTE applies the GTE predicate on the "policy_phone" field.

func PolicyPhoneHasPrefix

func PolicyPhoneHasPrefix(v string) predicate.InternetExchange

PolicyPhoneHasPrefix applies the HasPrefix predicate on the "policy_phone" field.

func PolicyPhoneHasSuffix

func PolicyPhoneHasSuffix(v string) predicate.InternetExchange

PolicyPhoneHasSuffix applies the HasSuffix predicate on the "policy_phone" field.

func PolicyPhoneIn

func PolicyPhoneIn(vs ...string) predicate.InternetExchange

PolicyPhoneIn applies the In predicate on the "policy_phone" field.

func PolicyPhoneIsNil

func PolicyPhoneIsNil() predicate.InternetExchange

PolicyPhoneIsNil applies the IsNil predicate on the "policy_phone" field.

func PolicyPhoneLT

func PolicyPhoneLT(v string) predicate.InternetExchange

PolicyPhoneLT applies the LT predicate on the "policy_phone" field.

func PolicyPhoneLTE

func PolicyPhoneLTE(v string) predicate.InternetExchange

PolicyPhoneLTE applies the LTE predicate on the "policy_phone" field.

func PolicyPhoneNEQ

func PolicyPhoneNEQ(v string) predicate.InternetExchange

PolicyPhoneNEQ applies the NEQ predicate on the "policy_phone" field.

func PolicyPhoneNotIn

func PolicyPhoneNotIn(vs ...string) predicate.InternetExchange

PolicyPhoneNotIn applies the NotIn predicate on the "policy_phone" field.

func PolicyPhoneNotNil

func PolicyPhoneNotNil() predicate.InternetExchange

PolicyPhoneNotNil applies the NotNil predicate on the "policy_phone" field.

func ProtoIpv6

func ProtoIpv6(v bool) predicate.InternetExchange

ProtoIpv6 applies equality check predicate on the "proto_ipv6" field. It's identical to ProtoIpv6EQ.

func ProtoIpv6EQ

func ProtoIpv6EQ(v bool) predicate.InternetExchange

ProtoIpv6EQ applies the EQ predicate on the "proto_ipv6" field.

func ProtoIpv6NEQ

func ProtoIpv6NEQ(v bool) predicate.InternetExchange

ProtoIpv6NEQ applies the NEQ predicate on the "proto_ipv6" field.

func ProtoMulticast

func ProtoMulticast(v bool) predicate.InternetExchange

ProtoMulticast applies equality check predicate on the "proto_multicast" field. It's identical to ProtoMulticastEQ.

func ProtoMulticastEQ

func ProtoMulticastEQ(v bool) predicate.InternetExchange

ProtoMulticastEQ applies the EQ predicate on the "proto_multicast" field.

func ProtoMulticastNEQ

func ProtoMulticastNEQ(v bool) predicate.InternetExchange

ProtoMulticastNEQ applies the NEQ predicate on the "proto_multicast" field.

func ProtoUnicast

func ProtoUnicast(v bool) predicate.InternetExchange

ProtoUnicast applies equality check predicate on the "proto_unicast" field. It's identical to ProtoUnicastEQ.

func ProtoUnicastEQ

func ProtoUnicastEQ(v bool) predicate.InternetExchange

ProtoUnicastEQ applies the EQ predicate on the "proto_unicast" field.

func ProtoUnicastNEQ

func ProtoUnicastNEQ(v bool) predicate.InternetExchange

ProtoUnicastNEQ applies the NEQ predicate on the "proto_unicast" field.

func RegionContinent

func RegionContinent(v string) predicate.InternetExchange

RegionContinent applies equality check predicate on the "region_continent" field. It's identical to RegionContinentEQ.

func RegionContinentContains

func RegionContinentContains(v string) predicate.InternetExchange

RegionContinentContains applies the Contains predicate on the "region_continent" field.

func RegionContinentContainsFold

func RegionContinentContainsFold(v string) predicate.InternetExchange

RegionContinentContainsFold applies the ContainsFold predicate on the "region_continent" field.

func RegionContinentEQ

func RegionContinentEQ(v string) predicate.InternetExchange

RegionContinentEQ applies the EQ predicate on the "region_continent" field.

func RegionContinentEqualFold

func RegionContinentEqualFold(v string) predicate.InternetExchange

RegionContinentEqualFold applies the EqualFold predicate on the "region_continent" field.

func RegionContinentGT

func RegionContinentGT(v string) predicate.InternetExchange

RegionContinentGT applies the GT predicate on the "region_continent" field.

func RegionContinentGTE

func RegionContinentGTE(v string) predicate.InternetExchange

RegionContinentGTE applies the GTE predicate on the "region_continent" field.

func RegionContinentHasPrefix

func RegionContinentHasPrefix(v string) predicate.InternetExchange

RegionContinentHasPrefix applies the HasPrefix predicate on the "region_continent" field.

func RegionContinentHasSuffix

func RegionContinentHasSuffix(v string) predicate.InternetExchange

RegionContinentHasSuffix applies the HasSuffix predicate on the "region_continent" field.

func RegionContinentIn

func RegionContinentIn(vs ...string) predicate.InternetExchange

RegionContinentIn applies the In predicate on the "region_continent" field.

func RegionContinentIsNil added in v1.4.0

func RegionContinentIsNil() predicate.InternetExchange

RegionContinentIsNil applies the IsNil predicate on the "region_continent" field.

func RegionContinentLT

func RegionContinentLT(v string) predicate.InternetExchange

RegionContinentLT applies the LT predicate on the "region_continent" field.

func RegionContinentLTE

func RegionContinentLTE(v string) predicate.InternetExchange

RegionContinentLTE applies the LTE predicate on the "region_continent" field.

func RegionContinentNEQ

func RegionContinentNEQ(v string) predicate.InternetExchange

RegionContinentNEQ applies the NEQ predicate on the "region_continent" field.

func RegionContinentNotIn

func RegionContinentNotIn(vs ...string) predicate.InternetExchange

RegionContinentNotIn applies the NotIn predicate on the "region_continent" field.

func RegionContinentNotNil added in v1.4.0

func RegionContinentNotNil() predicate.InternetExchange

RegionContinentNotNil applies the NotNil predicate on the "region_continent" field.

func SalesEmail

func SalesEmail(v string) predicate.InternetExchange

SalesEmail applies equality check predicate on the "sales_email" field. It's identical to SalesEmailEQ.

func SalesEmailContains

func SalesEmailContains(v string) predicate.InternetExchange

SalesEmailContains applies the Contains predicate on the "sales_email" field.

func SalesEmailContainsFold

func SalesEmailContainsFold(v string) predicate.InternetExchange

SalesEmailContainsFold applies the ContainsFold predicate on the "sales_email" field.

func SalesEmailEQ

func SalesEmailEQ(v string) predicate.InternetExchange

SalesEmailEQ applies the EQ predicate on the "sales_email" field.

func SalesEmailEqualFold

func SalesEmailEqualFold(v string) predicate.InternetExchange

SalesEmailEqualFold applies the EqualFold predicate on the "sales_email" field.

func SalesEmailGT

func SalesEmailGT(v string) predicate.InternetExchange

SalesEmailGT applies the GT predicate on the "sales_email" field.

func SalesEmailGTE

func SalesEmailGTE(v string) predicate.InternetExchange

SalesEmailGTE applies the GTE predicate on the "sales_email" field.

func SalesEmailHasPrefix

func SalesEmailHasPrefix(v string) predicate.InternetExchange

SalesEmailHasPrefix applies the HasPrefix predicate on the "sales_email" field.

func SalesEmailHasSuffix

func SalesEmailHasSuffix(v string) predicate.InternetExchange

SalesEmailHasSuffix applies the HasSuffix predicate on the "sales_email" field.

func SalesEmailIn

func SalesEmailIn(vs ...string) predicate.InternetExchange

SalesEmailIn applies the In predicate on the "sales_email" field.

func SalesEmailIsNil

func SalesEmailIsNil() predicate.InternetExchange

SalesEmailIsNil applies the IsNil predicate on the "sales_email" field.

func SalesEmailLT

func SalesEmailLT(v string) predicate.InternetExchange

SalesEmailLT applies the LT predicate on the "sales_email" field.

func SalesEmailLTE

func SalesEmailLTE(v string) predicate.InternetExchange

SalesEmailLTE applies the LTE predicate on the "sales_email" field.

func SalesEmailNEQ

func SalesEmailNEQ(v string) predicate.InternetExchange

SalesEmailNEQ applies the NEQ predicate on the "sales_email" field.

func SalesEmailNotIn

func SalesEmailNotIn(vs ...string) predicate.InternetExchange

SalesEmailNotIn applies the NotIn predicate on the "sales_email" field.

func SalesEmailNotNil

func SalesEmailNotNil() predicate.InternetExchange

SalesEmailNotNil applies the NotNil predicate on the "sales_email" field.

func SalesPhone

func SalesPhone(v string) predicate.InternetExchange

SalesPhone applies equality check predicate on the "sales_phone" field. It's identical to SalesPhoneEQ.

func SalesPhoneContains

func SalesPhoneContains(v string) predicate.InternetExchange

SalesPhoneContains applies the Contains predicate on the "sales_phone" field.

func SalesPhoneContainsFold

func SalesPhoneContainsFold(v string) predicate.InternetExchange

SalesPhoneContainsFold applies the ContainsFold predicate on the "sales_phone" field.

func SalesPhoneEQ

func SalesPhoneEQ(v string) predicate.InternetExchange

SalesPhoneEQ applies the EQ predicate on the "sales_phone" field.

func SalesPhoneEqualFold

func SalesPhoneEqualFold(v string) predicate.InternetExchange

SalesPhoneEqualFold applies the EqualFold predicate on the "sales_phone" field.

func SalesPhoneGT

func SalesPhoneGT(v string) predicate.InternetExchange

SalesPhoneGT applies the GT predicate on the "sales_phone" field.

func SalesPhoneGTE

func SalesPhoneGTE(v string) predicate.InternetExchange

SalesPhoneGTE applies the GTE predicate on the "sales_phone" field.

func SalesPhoneHasPrefix

func SalesPhoneHasPrefix(v string) predicate.InternetExchange

SalesPhoneHasPrefix applies the HasPrefix predicate on the "sales_phone" field.

func SalesPhoneHasSuffix

func SalesPhoneHasSuffix(v string) predicate.InternetExchange

SalesPhoneHasSuffix applies the HasSuffix predicate on the "sales_phone" field.

func SalesPhoneIn

func SalesPhoneIn(vs ...string) predicate.InternetExchange

SalesPhoneIn applies the In predicate on the "sales_phone" field.

func SalesPhoneIsNil

func SalesPhoneIsNil() predicate.InternetExchange

SalesPhoneIsNil applies the IsNil predicate on the "sales_phone" field.

func SalesPhoneLT

func SalesPhoneLT(v string) predicate.InternetExchange

SalesPhoneLT applies the LT predicate on the "sales_phone" field.

func SalesPhoneLTE

func SalesPhoneLTE(v string) predicate.InternetExchange

SalesPhoneLTE applies the LTE predicate on the "sales_phone" field.

func SalesPhoneNEQ

func SalesPhoneNEQ(v string) predicate.InternetExchange

SalesPhoneNEQ applies the NEQ predicate on the "sales_phone" field.

func SalesPhoneNotIn

func SalesPhoneNotIn(vs ...string) predicate.InternetExchange

SalesPhoneNotIn applies the NotIn predicate on the "sales_phone" field.

func SalesPhoneNotNil

func SalesPhoneNotNil() predicate.InternetExchange

SalesPhoneNotNil applies the NotNil predicate on the "sales_phone" field.

func ServiceLevel

func ServiceLevel(v string) predicate.InternetExchange

ServiceLevel applies equality check predicate on the "service_level" field. It's identical to ServiceLevelEQ.

func ServiceLevelContains

func ServiceLevelContains(v string) predicate.InternetExchange

ServiceLevelContains applies the Contains predicate on the "service_level" field.

func ServiceLevelContainsFold

func ServiceLevelContainsFold(v string) predicate.InternetExchange

ServiceLevelContainsFold applies the ContainsFold predicate on the "service_level" field.

func ServiceLevelEQ

func ServiceLevelEQ(v string) predicate.InternetExchange

ServiceLevelEQ applies the EQ predicate on the "service_level" field.

func ServiceLevelEqualFold

func ServiceLevelEqualFold(v string) predicate.InternetExchange

ServiceLevelEqualFold applies the EqualFold predicate on the "service_level" field.

func ServiceLevelGT

func ServiceLevelGT(v string) predicate.InternetExchange

ServiceLevelGT applies the GT predicate on the "service_level" field.

func ServiceLevelGTE

func ServiceLevelGTE(v string) predicate.InternetExchange

ServiceLevelGTE applies the GTE predicate on the "service_level" field.

func ServiceLevelHasPrefix

func ServiceLevelHasPrefix(v string) predicate.InternetExchange

ServiceLevelHasPrefix applies the HasPrefix predicate on the "service_level" field.

func ServiceLevelHasSuffix

func ServiceLevelHasSuffix(v string) predicate.InternetExchange

ServiceLevelHasSuffix applies the HasSuffix predicate on the "service_level" field.

func ServiceLevelIn

func ServiceLevelIn(vs ...string) predicate.InternetExchange

ServiceLevelIn applies the In predicate on the "service_level" field.

func ServiceLevelIsNil

func ServiceLevelIsNil() predicate.InternetExchange

ServiceLevelIsNil applies the IsNil predicate on the "service_level" field.

func ServiceLevelLT

func ServiceLevelLT(v string) predicate.InternetExchange

ServiceLevelLT applies the LT predicate on the "service_level" field.

func ServiceLevelLTE

func ServiceLevelLTE(v string) predicate.InternetExchange

ServiceLevelLTE applies the LTE predicate on the "service_level" field.

func ServiceLevelNEQ

func ServiceLevelNEQ(v string) predicate.InternetExchange

ServiceLevelNEQ applies the NEQ predicate on the "service_level" field.

func ServiceLevelNotIn

func ServiceLevelNotIn(vs ...string) predicate.InternetExchange

ServiceLevelNotIn applies the NotIn predicate on the "service_level" field.

func ServiceLevelNotNil

func ServiceLevelNotNil() predicate.InternetExchange

ServiceLevelNotNil applies the NotNil predicate on the "service_level" field.

func SocialMediaIsNil

func SocialMediaIsNil() predicate.InternetExchange

SocialMediaIsNil applies the IsNil predicate on the "social_media" field.

func SocialMediaNotNil

func SocialMediaNotNil() predicate.InternetExchange

SocialMediaNotNil applies the NotNil predicate on the "social_media" field.

func Status

Status applies equality check predicate on the "status" field. It's identical to StatusEQ.

func StatusContains

func StatusContains(v string) predicate.InternetExchange

StatusContains applies the Contains predicate on the "status" field.

func StatusContainsFold

func StatusContainsFold(v string) predicate.InternetExchange

StatusContainsFold applies the ContainsFold predicate on the "status" field.

func StatusDashboard

func StatusDashboard(v string) predicate.InternetExchange

StatusDashboard applies equality check predicate on the "status_dashboard" field. It's identical to StatusDashboardEQ.

func StatusDashboardContains

func StatusDashboardContains(v string) predicate.InternetExchange

StatusDashboardContains applies the Contains predicate on the "status_dashboard" field.

func StatusDashboardContainsFold

func StatusDashboardContainsFold(v string) predicate.InternetExchange

StatusDashboardContainsFold applies the ContainsFold predicate on the "status_dashboard" field.

func StatusDashboardEQ

func StatusDashboardEQ(v string) predicate.InternetExchange

StatusDashboardEQ applies the EQ predicate on the "status_dashboard" field.

func StatusDashboardEqualFold

func StatusDashboardEqualFold(v string) predicate.InternetExchange

StatusDashboardEqualFold applies the EqualFold predicate on the "status_dashboard" field.

func StatusDashboardGT

func StatusDashboardGT(v string) predicate.InternetExchange

StatusDashboardGT applies the GT predicate on the "status_dashboard" field.

func StatusDashboardGTE

func StatusDashboardGTE(v string) predicate.InternetExchange

StatusDashboardGTE applies the GTE predicate on the "status_dashboard" field.

func StatusDashboardHasPrefix

func StatusDashboardHasPrefix(v string) predicate.InternetExchange

StatusDashboardHasPrefix applies the HasPrefix predicate on the "status_dashboard" field.

func StatusDashboardHasSuffix

func StatusDashboardHasSuffix(v string) predicate.InternetExchange

StatusDashboardHasSuffix applies the HasSuffix predicate on the "status_dashboard" field.

func StatusDashboardIn

func StatusDashboardIn(vs ...string) predicate.InternetExchange

StatusDashboardIn applies the In predicate on the "status_dashboard" field.

func StatusDashboardIsNil

func StatusDashboardIsNil() predicate.InternetExchange

StatusDashboardIsNil applies the IsNil predicate on the "status_dashboard" field.

func StatusDashboardLT

func StatusDashboardLT(v string) predicate.InternetExchange

StatusDashboardLT applies the LT predicate on the "status_dashboard" field.

func StatusDashboardLTE

func StatusDashboardLTE(v string) predicate.InternetExchange

StatusDashboardLTE applies the LTE predicate on the "status_dashboard" field.

func StatusDashboardNEQ

func StatusDashboardNEQ(v string) predicate.InternetExchange

StatusDashboardNEQ applies the NEQ predicate on the "status_dashboard" field.

func StatusDashboardNotIn

func StatusDashboardNotIn(vs ...string) predicate.InternetExchange

StatusDashboardNotIn applies the NotIn predicate on the "status_dashboard" field.

func StatusDashboardNotNil

func StatusDashboardNotNil() predicate.InternetExchange

StatusDashboardNotNil applies the NotNil predicate on the "status_dashboard" field.

func StatusEQ

func StatusEQ(v string) predicate.InternetExchange

StatusEQ applies the EQ predicate on the "status" field.

func StatusEqualFold

func StatusEqualFold(v string) predicate.InternetExchange

StatusEqualFold applies the EqualFold predicate on the "status" field.

func StatusGT

func StatusGT(v string) predicate.InternetExchange

StatusGT applies the GT predicate on the "status" field.

func StatusGTE

func StatusGTE(v string) predicate.InternetExchange

StatusGTE applies the GTE predicate on the "status" field.

func StatusHasPrefix

func StatusHasPrefix(v string) predicate.InternetExchange

StatusHasPrefix applies the HasPrefix predicate on the "status" field.

func StatusHasSuffix

func StatusHasSuffix(v string) predicate.InternetExchange

StatusHasSuffix applies the HasSuffix predicate on the "status" field.

func StatusIn

func StatusIn(vs ...string) predicate.InternetExchange

StatusIn applies the In predicate on the "status" field.

func StatusLT

func StatusLT(v string) predicate.InternetExchange

StatusLT applies the LT predicate on the "status" field.

func StatusLTE

func StatusLTE(v string) predicate.InternetExchange

StatusLTE applies the LTE predicate on the "status" field.

func StatusNEQ

func StatusNEQ(v string) predicate.InternetExchange

StatusNEQ applies the NEQ predicate on the "status" field.

func StatusNotIn

func StatusNotIn(vs ...string) predicate.InternetExchange

StatusNotIn applies the NotIn predicate on the "status" field.

func TechEmail

func TechEmail(v string) predicate.InternetExchange

TechEmail applies equality check predicate on the "tech_email" field. It's identical to TechEmailEQ.

func TechEmailContains

func TechEmailContains(v string) predicate.InternetExchange

TechEmailContains applies the Contains predicate on the "tech_email" field.

func TechEmailContainsFold

func TechEmailContainsFold(v string) predicate.InternetExchange

TechEmailContainsFold applies the ContainsFold predicate on the "tech_email" field.

func TechEmailEQ

func TechEmailEQ(v string) predicate.InternetExchange

TechEmailEQ applies the EQ predicate on the "tech_email" field.

func TechEmailEqualFold

func TechEmailEqualFold(v string) predicate.InternetExchange

TechEmailEqualFold applies the EqualFold predicate on the "tech_email" field.

func TechEmailGT

func TechEmailGT(v string) predicate.InternetExchange

TechEmailGT applies the GT predicate on the "tech_email" field.

func TechEmailGTE

func TechEmailGTE(v string) predicate.InternetExchange

TechEmailGTE applies the GTE predicate on the "tech_email" field.

func TechEmailHasPrefix

func TechEmailHasPrefix(v string) predicate.InternetExchange

TechEmailHasPrefix applies the HasPrefix predicate on the "tech_email" field.

func TechEmailHasSuffix

func TechEmailHasSuffix(v string) predicate.InternetExchange

TechEmailHasSuffix applies the HasSuffix predicate on the "tech_email" field.

func TechEmailIn

func TechEmailIn(vs ...string) predicate.InternetExchange

TechEmailIn applies the In predicate on the "tech_email" field.

func TechEmailIsNil

func TechEmailIsNil() predicate.InternetExchange

TechEmailIsNil applies the IsNil predicate on the "tech_email" field.

func TechEmailLT

func TechEmailLT(v string) predicate.InternetExchange

TechEmailLT applies the LT predicate on the "tech_email" field.

func TechEmailLTE

func TechEmailLTE(v string) predicate.InternetExchange

TechEmailLTE applies the LTE predicate on the "tech_email" field.

func TechEmailNEQ

func TechEmailNEQ(v string) predicate.InternetExchange

TechEmailNEQ applies the NEQ predicate on the "tech_email" field.

func TechEmailNotIn

func TechEmailNotIn(vs ...string) predicate.InternetExchange

TechEmailNotIn applies the NotIn predicate on the "tech_email" field.

func TechEmailNotNil

func TechEmailNotNil() predicate.InternetExchange

TechEmailNotNil applies the NotNil predicate on the "tech_email" field.

func TechPhone

func TechPhone(v string) predicate.InternetExchange

TechPhone applies equality check predicate on the "tech_phone" field. It's identical to TechPhoneEQ.

func TechPhoneContains

func TechPhoneContains(v string) predicate.InternetExchange

TechPhoneContains applies the Contains predicate on the "tech_phone" field.

func TechPhoneContainsFold

func TechPhoneContainsFold(v string) predicate.InternetExchange

TechPhoneContainsFold applies the ContainsFold predicate on the "tech_phone" field.

func TechPhoneEQ

func TechPhoneEQ(v string) predicate.InternetExchange

TechPhoneEQ applies the EQ predicate on the "tech_phone" field.

func TechPhoneEqualFold

func TechPhoneEqualFold(v string) predicate.InternetExchange

TechPhoneEqualFold applies the EqualFold predicate on the "tech_phone" field.

func TechPhoneGT

func TechPhoneGT(v string) predicate.InternetExchange

TechPhoneGT applies the GT predicate on the "tech_phone" field.

func TechPhoneGTE

func TechPhoneGTE(v string) predicate.InternetExchange

TechPhoneGTE applies the GTE predicate on the "tech_phone" field.

func TechPhoneHasPrefix

func TechPhoneHasPrefix(v string) predicate.InternetExchange

TechPhoneHasPrefix applies the HasPrefix predicate on the "tech_phone" field.

func TechPhoneHasSuffix

func TechPhoneHasSuffix(v string) predicate.InternetExchange

TechPhoneHasSuffix applies the HasSuffix predicate on the "tech_phone" field.

func TechPhoneIn

func TechPhoneIn(vs ...string) predicate.InternetExchange

TechPhoneIn applies the In predicate on the "tech_phone" field.

func TechPhoneIsNil

func TechPhoneIsNil() predicate.InternetExchange

TechPhoneIsNil applies the IsNil predicate on the "tech_phone" field.

func TechPhoneLT

func TechPhoneLT(v string) predicate.InternetExchange

TechPhoneLT applies the LT predicate on the "tech_phone" field.

func TechPhoneLTE

func TechPhoneLTE(v string) predicate.InternetExchange

TechPhoneLTE applies the LTE predicate on the "tech_phone" field.

func TechPhoneNEQ

func TechPhoneNEQ(v string) predicate.InternetExchange

TechPhoneNEQ applies the NEQ predicate on the "tech_phone" field.

func TechPhoneNotIn

func TechPhoneNotIn(vs ...string) predicate.InternetExchange

TechPhoneNotIn applies the NotIn predicate on the "tech_phone" field.

func TechPhoneNotNil

func TechPhoneNotNil() predicate.InternetExchange

TechPhoneNotNil applies the NotNil predicate on the "tech_phone" field.

func Terms

Terms applies equality check predicate on the "terms" field. It's identical to TermsEQ.

func TermsContains

func TermsContains(v string) predicate.InternetExchange

TermsContains applies the Contains predicate on the "terms" field.

func TermsContainsFold

func TermsContainsFold(v string) predicate.InternetExchange

TermsContainsFold applies the ContainsFold predicate on the "terms" field.

func TermsEQ

TermsEQ applies the EQ predicate on the "terms" field.

func TermsEqualFold

func TermsEqualFold(v string) predicate.InternetExchange

TermsEqualFold applies the EqualFold predicate on the "terms" field.

func TermsGT

TermsGT applies the GT predicate on the "terms" field.

func TermsGTE

func TermsGTE(v string) predicate.InternetExchange

TermsGTE applies the GTE predicate on the "terms" field.

func TermsHasPrefix

func TermsHasPrefix(v string) predicate.InternetExchange

TermsHasPrefix applies the HasPrefix predicate on the "terms" field.

func TermsHasSuffix

func TermsHasSuffix(v string) predicate.InternetExchange

TermsHasSuffix applies the HasSuffix predicate on the "terms" field.

func TermsIn

func TermsIn(vs ...string) predicate.InternetExchange

TermsIn applies the In predicate on the "terms" field.

func TermsIsNil

func TermsIsNil() predicate.InternetExchange

TermsIsNil applies the IsNil predicate on the "terms" field.

func TermsLT

TermsLT applies the LT predicate on the "terms" field.

func TermsLTE

func TermsLTE(v string) predicate.InternetExchange

TermsLTE applies the LTE predicate on the "terms" field.

func TermsNEQ

func TermsNEQ(v string) predicate.InternetExchange

TermsNEQ applies the NEQ predicate on the "terms" field.

func TermsNotIn

func TermsNotIn(vs ...string) predicate.InternetExchange

TermsNotIn applies the NotIn predicate on the "terms" field.

func TermsNotNil

func TermsNotNil() predicate.InternetExchange

TermsNotNil applies the NotNil predicate on the "terms" field.

func URLStats

func URLStats(v string) predicate.InternetExchange

URLStats applies equality check predicate on the "url_stats" field. It's identical to URLStatsEQ.

func URLStatsContains

func URLStatsContains(v string) predicate.InternetExchange

URLStatsContains applies the Contains predicate on the "url_stats" field.

func URLStatsContainsFold

func URLStatsContainsFold(v string) predicate.InternetExchange

URLStatsContainsFold applies the ContainsFold predicate on the "url_stats" field.

func URLStatsEQ

func URLStatsEQ(v string) predicate.InternetExchange

URLStatsEQ applies the EQ predicate on the "url_stats" field.

func URLStatsEqualFold

func URLStatsEqualFold(v string) predicate.InternetExchange

URLStatsEqualFold applies the EqualFold predicate on the "url_stats" field.

func URLStatsGT

func URLStatsGT(v string) predicate.InternetExchange

URLStatsGT applies the GT predicate on the "url_stats" field.

func URLStatsGTE

func URLStatsGTE(v string) predicate.InternetExchange

URLStatsGTE applies the GTE predicate on the "url_stats" field.

func URLStatsHasPrefix

func URLStatsHasPrefix(v string) predicate.InternetExchange

URLStatsHasPrefix applies the HasPrefix predicate on the "url_stats" field.

func URLStatsHasSuffix

func URLStatsHasSuffix(v string) predicate.InternetExchange

URLStatsHasSuffix applies the HasSuffix predicate on the "url_stats" field.

func URLStatsIn

func URLStatsIn(vs ...string) predicate.InternetExchange

URLStatsIn applies the In predicate on the "url_stats" field.

func URLStatsIsNil

func URLStatsIsNil() predicate.InternetExchange

URLStatsIsNil applies the IsNil predicate on the "url_stats" field.

func URLStatsLT

func URLStatsLT(v string) predicate.InternetExchange

URLStatsLT applies the LT predicate on the "url_stats" field.

func URLStatsLTE

func URLStatsLTE(v string) predicate.InternetExchange

URLStatsLTE applies the LTE predicate on the "url_stats" field.

func URLStatsNEQ

func URLStatsNEQ(v string) predicate.InternetExchange

URLStatsNEQ applies the NEQ predicate on the "url_stats" field.

func URLStatsNotIn

func URLStatsNotIn(vs ...string) predicate.InternetExchange

URLStatsNotIn applies the NotIn predicate on the "url_stats" field.

func URLStatsNotNil

func URLStatsNotNil() predicate.InternetExchange

URLStatsNotNil applies the NotNil predicate on the "url_stats" field.

func Updated

Updated applies equality check predicate on the "updated" field. It's identical to UpdatedEQ.

func UpdatedEQ

func UpdatedEQ(v time.Time) predicate.InternetExchange

UpdatedEQ applies the EQ predicate on the "updated" field.

func UpdatedGT

func UpdatedGT(v time.Time) predicate.InternetExchange

UpdatedGT applies the GT predicate on the "updated" field.

func UpdatedGTE

func UpdatedGTE(v time.Time) predicate.InternetExchange

UpdatedGTE applies the GTE predicate on the "updated" field.

func UpdatedIn

func UpdatedIn(vs ...time.Time) predicate.InternetExchange

UpdatedIn applies the In predicate on the "updated" field.

func UpdatedLT

func UpdatedLT(v time.Time) predicate.InternetExchange

UpdatedLT applies the LT predicate on the "updated" field.

func UpdatedLTE

func UpdatedLTE(v time.Time) predicate.InternetExchange

UpdatedLTE applies the LTE predicate on the "updated" field.

func UpdatedNEQ

func UpdatedNEQ(v time.Time) predicate.InternetExchange

UpdatedNEQ applies the NEQ predicate on the "updated" field.

func UpdatedNotIn

func UpdatedNotIn(vs ...time.Time) predicate.InternetExchange

UpdatedNotIn applies the NotIn predicate on the "updated" field.

func ValidColumn

func ValidColumn(column string) bool

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

func Website

Website applies equality check predicate on the "website" field. It's identical to WebsiteEQ.

func WebsiteContains

func WebsiteContains(v string) predicate.InternetExchange

WebsiteContains applies the Contains predicate on the "website" field.

func WebsiteContainsFold

func WebsiteContainsFold(v string) predicate.InternetExchange

WebsiteContainsFold applies the ContainsFold predicate on the "website" field.

func WebsiteEQ

func WebsiteEQ(v string) predicate.InternetExchange

WebsiteEQ applies the EQ predicate on the "website" field.

func WebsiteEqualFold

func WebsiteEqualFold(v string) predicate.InternetExchange

WebsiteEqualFold applies the EqualFold predicate on the "website" field.

func WebsiteGT

func WebsiteGT(v string) predicate.InternetExchange

WebsiteGT applies the GT predicate on the "website" field.

func WebsiteGTE

func WebsiteGTE(v string) predicate.InternetExchange

WebsiteGTE applies the GTE predicate on the "website" field.

func WebsiteHasPrefix

func WebsiteHasPrefix(v string) predicate.InternetExchange

WebsiteHasPrefix applies the HasPrefix predicate on the "website" field.

func WebsiteHasSuffix

func WebsiteHasSuffix(v string) predicate.InternetExchange

WebsiteHasSuffix applies the HasSuffix predicate on the "website" field.

func WebsiteIn

func WebsiteIn(vs ...string) predicate.InternetExchange

WebsiteIn applies the In predicate on the "website" field.

func WebsiteIsNil

func WebsiteIsNil() predicate.InternetExchange

WebsiteIsNil applies the IsNil predicate on the "website" field.

func WebsiteLT

func WebsiteLT(v string) predicate.InternetExchange

WebsiteLT applies the LT predicate on the "website" field.

func WebsiteLTE

func WebsiteLTE(v string) predicate.InternetExchange

WebsiteLTE applies the LTE predicate on the "website" field.

func WebsiteNEQ

func WebsiteNEQ(v string) predicate.InternetExchange

WebsiteNEQ applies the NEQ predicate on the "website" field.

func WebsiteNotIn

func WebsiteNotIn(vs ...string) predicate.InternetExchange

WebsiteNotIn applies the NotIn predicate on the "website" field.

func WebsiteNotNil

func WebsiteNotNil() predicate.InternetExchange

WebsiteNotNil applies the NotNil predicate on the "website" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the InternetExchange queries.

func ByAka

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

ByAka orders the results by the aka field.

func ByAkaFold added in v1.16.0

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

ByAkaFold orders the results by the aka_fold field.

func ByCity

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

ByCity orders the results by the city field.

func ByCityFold added in v1.16.0

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

ByCityFold orders the results by the city_fold field.

func ByCountry

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

ByCountry orders the results by the country field.

func ByCreated

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

ByCreated orders the results by the created field.

func ByFacCount

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

ByFacCount orders the results by the fac_count field.

func ByID

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

ByID orders the results by the id field.

func ByIxFacilities

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

ByIxFacilities orders the results by ix_facilities terms.

func ByIxFacilitiesCount

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

ByIxFacilitiesCount orders the results by ix_facilities count.

func ByIxLans

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

ByIxLans orders the results by ix_lans terms.

func ByIxLansCount

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

ByIxLansCount orders the results by ix_lans count.

func ByIxfImportRequest

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

ByIxfImportRequest orders the results by the ixf_import_request field.

func ByIxfImportRequestStatus

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

ByIxfImportRequestStatus orders the results by the ixf_import_request_status field.

func ByIxfLastImport

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

ByIxfLastImport orders the results by the ixf_last_import field.

func ByIxfNetCount

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

ByIxfNetCount orders the results by the ixf_net_count field.

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

ByLogo orders the results by the logo field.

func ByMedia

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

ByMedia orders the results by the media field.

func ByName

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

ByName orders the results by the name field.

func ByNameFold added in v1.16.0

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

ByNameFold orders the results by the name_fold field.

func ByNameLong

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

ByNameLong orders the results by the name_long field.

func ByNameLongFold added in v1.16.0

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

ByNameLongFold orders the results by the name_long_fold field.

func ByNetCount

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

ByNetCount orders the results by the net_count field.

func ByNotes

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

ByNotes orders the results by the notes field.

func ByOrgID

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

ByOrgID orders the results by the org_id field.

func ByOrganizationField

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

ByOrganizationField orders the results by organization field.

func ByPolicyEmail

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

ByPolicyEmail orders the results by the policy_email field.

func ByPolicyPhone

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

ByPolicyPhone orders the results by the policy_phone field.

func ByProtoIpv6

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

ByProtoIpv6 orders the results by the proto_ipv6 field.

func ByProtoMulticast

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

ByProtoMulticast orders the results by the proto_multicast field.

func ByProtoUnicast

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

ByProtoUnicast orders the results by the proto_unicast field.

func ByRegionContinent

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

ByRegionContinent orders the results by the region_continent field.

func BySalesEmail

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

BySalesEmail orders the results by the sales_email field.

func BySalesPhone

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

BySalesPhone orders the results by the sales_phone field.

func ByServiceLevel

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

ByServiceLevel orders the results by the service_level field.

func ByStatus

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

ByStatus orders the results by the status field.

func ByStatusDashboard

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

ByStatusDashboard orders the results by the status_dashboard field.

func ByTechEmail

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

ByTechEmail orders the results by the tech_email field.

func ByTechPhone

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

ByTechPhone orders the results by the tech_phone field.

func ByTerms

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

ByTerms orders the results by the terms field.

func ByURLStats

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

ByURLStats orders the results by the url_stats field.

func ByUpdated

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

ByUpdated orders the results by the updated field.

func ByWebsite

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

ByWebsite orders the results by the website field.

Jump to

Keyboard shortcuts

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