githubissue

package
v0.0.0-...-b385652 Latest Latest
Warning

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

Go to latest
Published: Dec 18, 2021 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the githubissue type in the database.
	Label = "git_hub_issue"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldGithubID holds the string denoting the github_id field in the database.
	FieldGithubID = "github_id"
	// FieldNumber holds the string denoting the number field in the database.
	FieldNumber = "number"
	// FieldTitle holds the string denoting the title field in the database.
	FieldTitle = "title"
	// FieldBody holds the string denoting the body field in the database.
	FieldBody = "body"
	// FieldHTMLURL holds the string denoting the html_url field in the database.
	FieldHTMLURL = "html_url"
	// FieldState holds the string denoting the state field in the database.
	FieldState = "state"
	// FieldLocked holds the string denoting the locked field in the database.
	FieldLocked = "locked"
	// FieldActiveLockReason holds the string denoting the active_lock_reason field in the database.
	FieldActiveLockReason = "active_lock_reason"
	// FieldCommentsCount holds the string denoting the comments_count field in the database.
	FieldCommentsCount = "comments_count"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldClosedAt holds the string denoting the closed_at field in the database.
	FieldClosedAt = "closed_at"
	// FieldAuthorAssociation holds the string denoting the author_association field in the database.
	FieldAuthorAssociation = "author_association"
	// EdgeAssignees holds the string denoting the assignees edge name in mutations.
	EdgeAssignees = "assignees"
	// EdgeAuthor holds the string denoting the author edge name in mutations.
	EdgeAuthor = "author"
	// EdgeClosedBy holds the string denoting the closed_by edge name in mutations.
	EdgeClosedBy = "closed_by"
	// AssigneesLabel holds the string label denoting the assignees edge type in the database.
	AssigneesLabel = "git_hub_issue_assignees"
	// AuthorInverseLabel holds the string label denoting the author inverse edge type in the database.
	AuthorInverseLabel = "git_hub_user_created_issues"
	// ClosedByInverseLabel holds the string label denoting the closed_by inverse edge type in the database.
	ClosedByInverseLabel = "git_hub_user_closed_issues"
)

Variables

View Source
var (
	// GithubIDValidator is a validator for the "github_id" field. It is called by the builders before save.
	GithubIDValidator func(int) error
	// NumberValidator is a validator for the "number" field. It is called by the builders before save.
	NumberValidator func(int) error
	// TitleValidator is a validator for the "title" field. It is called by the builders before save.
	TitleValidator func(string) error
	// DefaultLocked holds the default value on creation for the "locked" field.
	DefaultLocked bool
	// CommentsCountValidator is a validator for the "comments_count" field. It is called by the builders before save.
	CommentsCountValidator func(int) error
	// CreatedAtValidator is a validator for the "created_at" field. It is called by the builders before save.
	CreatedAtValidator func(string) error
	// UpdatedAtValidator is a validator for the "updated_at" field. It is called by the builders before save.
	UpdatedAtValidator func(string) error
	// ClosedAtValidator is a validator for the "closed_at" field. It is called by the builders before save.
	ClosedAtValidator func(string) error
	// IDValidator is a validator for the "id" field. It is called by the builders before save.
	IDValidator func(string) error
)

Functions

func ActiveLockReason

func ActiveLockReason(v string) predicate.GitHubIssue

ActiveLockReason applies equality check predicate on the "active_lock_reason" field. It's identical to ActiveLockReasonEQ.

func ActiveLockReasonContains

func ActiveLockReasonContains(v string) predicate.GitHubIssue

ActiveLockReasonContains applies the Contains predicate on the "active_lock_reason" field.

func ActiveLockReasonEQ

func ActiveLockReasonEQ(v string) predicate.GitHubIssue

ActiveLockReasonEQ applies the EQ predicate on the "active_lock_reason" field.

func ActiveLockReasonGT

func ActiveLockReasonGT(v string) predicate.GitHubIssue

ActiveLockReasonGT applies the GT predicate on the "active_lock_reason" field.

func ActiveLockReasonGTE

func ActiveLockReasonGTE(v string) predicate.GitHubIssue

ActiveLockReasonGTE applies the GTE predicate on the "active_lock_reason" field.

func ActiveLockReasonHasPrefix

func ActiveLockReasonHasPrefix(v string) predicate.GitHubIssue

ActiveLockReasonHasPrefix applies the HasPrefix predicate on the "active_lock_reason" field.

func ActiveLockReasonHasSuffix

func ActiveLockReasonHasSuffix(v string) predicate.GitHubIssue

ActiveLockReasonHasSuffix applies the HasSuffix predicate on the "active_lock_reason" field.

func ActiveLockReasonIn

func ActiveLockReasonIn(vs ...string) predicate.GitHubIssue

ActiveLockReasonIn applies the In predicate on the "active_lock_reason" field.

func ActiveLockReasonLT

func ActiveLockReasonLT(v string) predicate.GitHubIssue

ActiveLockReasonLT applies the LT predicate on the "active_lock_reason" field.

func ActiveLockReasonLTE

func ActiveLockReasonLTE(v string) predicate.GitHubIssue

ActiveLockReasonLTE applies the LTE predicate on the "active_lock_reason" field.

func ActiveLockReasonNEQ

func ActiveLockReasonNEQ(v string) predicate.GitHubIssue

ActiveLockReasonNEQ applies the NEQ predicate on the "active_lock_reason" field.

func ActiveLockReasonNotIn

func ActiveLockReasonNotIn(vs ...string) predicate.GitHubIssue

ActiveLockReasonNotIn applies the NotIn predicate on the "active_lock_reason" field.

func And

func And(predicates ...predicate.GitHubIssue) predicate.GitHubIssue

And groups predicates with the AND operator between them.

func AuthorAssociation

func AuthorAssociation(v string) predicate.GitHubIssue

AuthorAssociation applies equality check predicate on the "author_association" field. It's identical to AuthorAssociationEQ.

func AuthorAssociationContains

func AuthorAssociationContains(v string) predicate.GitHubIssue

AuthorAssociationContains applies the Contains predicate on the "author_association" field.

func AuthorAssociationEQ

func AuthorAssociationEQ(v string) predicate.GitHubIssue

AuthorAssociationEQ applies the EQ predicate on the "author_association" field.

func AuthorAssociationGT

func AuthorAssociationGT(v string) predicate.GitHubIssue

AuthorAssociationGT applies the GT predicate on the "author_association" field.

func AuthorAssociationGTE

func AuthorAssociationGTE(v string) predicate.GitHubIssue

AuthorAssociationGTE applies the GTE predicate on the "author_association" field.

func AuthorAssociationHasPrefix

func AuthorAssociationHasPrefix(v string) predicate.GitHubIssue

AuthorAssociationHasPrefix applies the HasPrefix predicate on the "author_association" field.

func AuthorAssociationHasSuffix

func AuthorAssociationHasSuffix(v string) predicate.GitHubIssue

AuthorAssociationHasSuffix applies the HasSuffix predicate on the "author_association" field.

func AuthorAssociationIn

func AuthorAssociationIn(vs ...string) predicate.GitHubIssue

AuthorAssociationIn applies the In predicate on the "author_association" field.

func AuthorAssociationLT

func AuthorAssociationLT(v string) predicate.GitHubIssue

AuthorAssociationLT applies the LT predicate on the "author_association" field.

func AuthorAssociationLTE

func AuthorAssociationLTE(v string) predicate.GitHubIssue

AuthorAssociationLTE applies the LTE predicate on the "author_association" field.

func AuthorAssociationNEQ

func AuthorAssociationNEQ(v string) predicate.GitHubIssue

AuthorAssociationNEQ applies the NEQ predicate on the "author_association" field.

func AuthorAssociationNotIn

func AuthorAssociationNotIn(vs ...string) predicate.GitHubIssue

AuthorAssociationNotIn applies the NotIn predicate on the "author_association" field.

func Body

Body applies equality check predicate on the "body" field. It's identical to BodyEQ.

func BodyContains

func BodyContains(v string) predicate.GitHubIssue

BodyContains applies the Contains predicate on the "body" field.

func BodyEQ

func BodyEQ(v string) predicate.GitHubIssue

BodyEQ applies the EQ predicate on the "body" field.

func BodyGT

func BodyGT(v string) predicate.GitHubIssue

BodyGT applies the GT predicate on the "body" field.

func BodyGTE

func BodyGTE(v string) predicate.GitHubIssue

BodyGTE applies the GTE predicate on the "body" field.

func BodyHasPrefix

func BodyHasPrefix(v string) predicate.GitHubIssue

BodyHasPrefix applies the HasPrefix predicate on the "body" field.

func BodyHasSuffix

func BodyHasSuffix(v string) predicate.GitHubIssue

BodyHasSuffix applies the HasSuffix predicate on the "body" field.

func BodyIn

func BodyIn(vs ...string) predicate.GitHubIssue

BodyIn applies the In predicate on the "body" field.

func BodyLT

func BodyLT(v string) predicate.GitHubIssue

BodyLT applies the LT predicate on the "body" field.

func BodyLTE

func BodyLTE(v string) predicate.GitHubIssue

BodyLTE applies the LTE predicate on the "body" field.

func BodyNEQ

func BodyNEQ(v string) predicate.GitHubIssue

BodyNEQ applies the NEQ predicate on the "body" field.

func BodyNotIn

func BodyNotIn(vs ...string) predicate.GitHubIssue

BodyNotIn applies the NotIn predicate on the "body" field.

func ClosedAt

func ClosedAt(v string) predicate.GitHubIssue

ClosedAt applies equality check predicate on the "closed_at" field. It's identical to ClosedAtEQ.

func ClosedAtContains

func ClosedAtContains(v string) predicate.GitHubIssue

ClosedAtContains applies the Contains predicate on the "closed_at" field.

func ClosedAtEQ

func ClosedAtEQ(v string) predicate.GitHubIssue

ClosedAtEQ applies the EQ predicate on the "closed_at" field.

func ClosedAtGT

func ClosedAtGT(v string) predicate.GitHubIssue

ClosedAtGT applies the GT predicate on the "closed_at" field.

func ClosedAtGTE

func ClosedAtGTE(v string) predicate.GitHubIssue

ClosedAtGTE applies the GTE predicate on the "closed_at" field.

func ClosedAtHasPrefix

func ClosedAtHasPrefix(v string) predicate.GitHubIssue

ClosedAtHasPrefix applies the HasPrefix predicate on the "closed_at" field.

func ClosedAtHasSuffix

func ClosedAtHasSuffix(v string) predicate.GitHubIssue

ClosedAtHasSuffix applies the HasSuffix predicate on the "closed_at" field.

func ClosedAtIn

func ClosedAtIn(vs ...string) predicate.GitHubIssue

ClosedAtIn applies the In predicate on the "closed_at" field.

func ClosedAtLT

func ClosedAtLT(v string) predicate.GitHubIssue

ClosedAtLT applies the LT predicate on the "closed_at" field.

func ClosedAtLTE

func ClosedAtLTE(v string) predicate.GitHubIssue

ClosedAtLTE applies the LTE predicate on the "closed_at" field.

func ClosedAtNEQ

func ClosedAtNEQ(v string) predicate.GitHubIssue

ClosedAtNEQ applies the NEQ predicate on the "closed_at" field.

func ClosedAtNotIn

func ClosedAtNotIn(vs ...string) predicate.GitHubIssue

ClosedAtNotIn applies the NotIn predicate on the "closed_at" field.

func CommentsCount

func CommentsCount(v int) predicate.GitHubIssue

CommentsCount applies equality check predicate on the "comments_count" field. It's identical to CommentsCountEQ.

func CommentsCountEQ

func CommentsCountEQ(v int) predicate.GitHubIssue

CommentsCountEQ applies the EQ predicate on the "comments_count" field.

func CommentsCountGT

func CommentsCountGT(v int) predicate.GitHubIssue

CommentsCountGT applies the GT predicate on the "comments_count" field.

func CommentsCountGTE

func CommentsCountGTE(v int) predicate.GitHubIssue

CommentsCountGTE applies the GTE predicate on the "comments_count" field.

func CommentsCountIn

func CommentsCountIn(vs ...int) predicate.GitHubIssue

CommentsCountIn applies the In predicate on the "comments_count" field.

func CommentsCountLT

func CommentsCountLT(v int) predicate.GitHubIssue

CommentsCountLT applies the LT predicate on the "comments_count" field.

func CommentsCountLTE

func CommentsCountLTE(v int) predicate.GitHubIssue

CommentsCountLTE applies the LTE predicate on the "comments_count" field.

func CommentsCountNEQ

func CommentsCountNEQ(v int) predicate.GitHubIssue

CommentsCountNEQ applies the NEQ predicate on the "comments_count" field.

func CommentsCountNotIn

func CommentsCountNotIn(vs ...int) predicate.GitHubIssue

CommentsCountNotIn applies the NotIn predicate on the "comments_count" field.

func CreatedAt

func CreatedAt(v string) predicate.GitHubIssue

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

func CreatedAtContains

func CreatedAtContains(v string) predicate.GitHubIssue

CreatedAtContains applies the Contains predicate on the "created_at" field.

func CreatedAtEQ

func CreatedAtEQ(v string) predicate.GitHubIssue

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

func CreatedAtGT

func CreatedAtGT(v string) predicate.GitHubIssue

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

func CreatedAtGTE

func CreatedAtGTE(v string) predicate.GitHubIssue

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

func CreatedAtHasPrefix

func CreatedAtHasPrefix(v string) predicate.GitHubIssue

CreatedAtHasPrefix applies the HasPrefix predicate on the "created_at" field.

func CreatedAtHasSuffix

func CreatedAtHasSuffix(v string) predicate.GitHubIssue

CreatedAtHasSuffix applies the HasSuffix predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...string) predicate.GitHubIssue

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

func CreatedAtLT

func CreatedAtLT(v string) predicate.GitHubIssue

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

func CreatedAtLTE

func CreatedAtLTE(v string) predicate.GitHubIssue

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

func CreatedAtNEQ

func CreatedAtNEQ(v string) predicate.GitHubIssue

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

func CreatedAtNotIn

func CreatedAtNotIn(vs ...string) predicate.GitHubIssue

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

func GithubID

func GithubID(v int) predicate.GitHubIssue

GithubID applies equality check predicate on the "github_id" field. It's identical to GithubIDEQ.

func GithubIDEQ

func GithubIDEQ(v int) predicate.GitHubIssue

GithubIDEQ applies the EQ predicate on the "github_id" field.

func GithubIDGT

func GithubIDGT(v int) predicate.GitHubIssue

GithubIDGT applies the GT predicate on the "github_id" field.

func GithubIDGTE

func GithubIDGTE(v int) predicate.GitHubIssue

GithubIDGTE applies the GTE predicate on the "github_id" field.

func GithubIDIn

func GithubIDIn(vs ...int) predicate.GitHubIssue

GithubIDIn applies the In predicate on the "github_id" field.

func GithubIDLT

func GithubIDLT(v int) predicate.GitHubIssue

GithubIDLT applies the LT predicate on the "github_id" field.

func GithubIDLTE

func GithubIDLTE(v int) predicate.GitHubIssue

GithubIDLTE applies the LTE predicate on the "github_id" field.

func GithubIDNEQ

func GithubIDNEQ(v int) predicate.GitHubIssue

GithubIDNEQ applies the NEQ predicate on the "github_id" field.

func GithubIDNotIn

func GithubIDNotIn(vs ...int) predicate.GitHubIssue

GithubIDNotIn applies the NotIn predicate on the "github_id" field.

func HTMLURL

func HTMLURL(v string) predicate.GitHubIssue

HTMLURL applies equality check predicate on the "html_url" field. It's identical to HTMLURLEQ.

func HTMLURLContains

func HTMLURLContains(v string) predicate.GitHubIssue

HTMLURLContains applies the Contains predicate on the "html_url" field.

func HTMLURLEQ

func HTMLURLEQ(v string) predicate.GitHubIssue

HTMLURLEQ applies the EQ predicate on the "html_url" field.

func HTMLURLGT

func HTMLURLGT(v string) predicate.GitHubIssue

HTMLURLGT applies the GT predicate on the "html_url" field.

func HTMLURLGTE

func HTMLURLGTE(v string) predicate.GitHubIssue

HTMLURLGTE applies the GTE predicate on the "html_url" field.

func HTMLURLHasPrefix

func HTMLURLHasPrefix(v string) predicate.GitHubIssue

HTMLURLHasPrefix applies the HasPrefix predicate on the "html_url" field.

func HTMLURLHasSuffix

func HTMLURLHasSuffix(v string) predicate.GitHubIssue

HTMLURLHasSuffix applies the HasSuffix predicate on the "html_url" field.

func HTMLURLIn

func HTMLURLIn(vs ...string) predicate.GitHubIssue

HTMLURLIn applies the In predicate on the "html_url" field.

func HTMLURLLT

func HTMLURLLT(v string) predicate.GitHubIssue

HTMLURLLT applies the LT predicate on the "html_url" field.

func HTMLURLLTE

func HTMLURLLTE(v string) predicate.GitHubIssue

HTMLURLLTE applies the LTE predicate on the "html_url" field.

func HTMLURLNEQ

func HTMLURLNEQ(v string) predicate.GitHubIssue

HTMLURLNEQ applies the NEQ predicate on the "html_url" field.

func HTMLURLNotIn

func HTMLURLNotIn(vs ...string) predicate.GitHubIssue

HTMLURLNotIn applies the NotIn predicate on the "html_url" field.

func HasAssignees

func HasAssignees() predicate.GitHubIssue

HasAssignees applies the HasEdge predicate on the "assignees" edge.

func HasAssigneesWith

func HasAssigneesWith(preds ...predicate.GitHubUser) predicate.GitHubIssue

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

func HasAuthor

func HasAuthor() predicate.GitHubIssue

HasAuthor applies the HasEdge predicate on the "author" edge.

func HasAuthorWith

func HasAuthorWith(preds ...predicate.GitHubUser) predicate.GitHubIssue

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

func HasClosedBy

func HasClosedBy() predicate.GitHubIssue

HasClosedBy applies the HasEdge predicate on the "closed_by" edge.

func HasClosedByWith

func HasClosedByWith(preds ...predicate.GitHubUser) predicate.GitHubIssue

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

func ID

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id string) predicate.GitHubIssue

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id string) predicate.GitHubIssue

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.GitHubIssue

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...string) predicate.GitHubIssue

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.GitHubIssue

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.GitHubIssue

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.GitHubIssue

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...string) predicate.GitHubIssue

IDNotIn applies the NotIn predicate on the ID field.

func Locked

func Locked(v bool) predicate.GitHubIssue

Locked applies equality check predicate on the "locked" field. It's identical to LockedEQ.

func LockedEQ

func LockedEQ(v bool) predicate.GitHubIssue

LockedEQ applies the EQ predicate on the "locked" field.

func LockedNEQ

func LockedNEQ(v bool) predicate.GitHubIssue

LockedNEQ applies the NEQ predicate on the "locked" field.

func Not

Not applies the not operator on the given predicate.

func Number

func Number(v int) predicate.GitHubIssue

Number applies equality check predicate on the "number" field. It's identical to NumberEQ.

func NumberEQ

func NumberEQ(v int) predicate.GitHubIssue

NumberEQ applies the EQ predicate on the "number" field.

func NumberGT

func NumberGT(v int) predicate.GitHubIssue

NumberGT applies the GT predicate on the "number" field.

func NumberGTE

func NumberGTE(v int) predicate.GitHubIssue

NumberGTE applies the GTE predicate on the "number" field.

func NumberIn

func NumberIn(vs ...int) predicate.GitHubIssue

NumberIn applies the In predicate on the "number" field.

func NumberLT

func NumberLT(v int) predicate.GitHubIssue

NumberLT applies the LT predicate on the "number" field.

func NumberLTE

func NumberLTE(v int) predicate.GitHubIssue

NumberLTE applies the LTE predicate on the "number" field.

func NumberNEQ

func NumberNEQ(v int) predicate.GitHubIssue

NumberNEQ applies the NEQ predicate on the "number" field.

func NumberNotIn

func NumberNotIn(vs ...int) predicate.GitHubIssue

NumberNotIn applies the NotIn predicate on the "number" field.

func Or

func Or(predicates ...predicate.GitHubIssue) predicate.GitHubIssue

Or groups predicates with the OR operator between them.

func StateEQ

func StateEQ(v State) predicate.GitHubIssue

StateEQ applies the EQ predicate on the "state" field.

func StateIn

func StateIn(vs ...State) predicate.GitHubIssue

StateIn applies the In predicate on the "state" field.

func StateNEQ

func StateNEQ(v State) predicate.GitHubIssue

StateNEQ applies the NEQ predicate on the "state" field.

func StateNotIn

func StateNotIn(vs ...State) predicate.GitHubIssue

StateNotIn applies the NotIn predicate on the "state" field.

func StateValidator

func StateValidator(s State) error

StateValidator is a validator for the "state" field enum values. It is called by the builders before save.

func Title

func Title(v string) predicate.GitHubIssue

Title applies equality check predicate on the "title" field. It's identical to TitleEQ.

func TitleContains

func TitleContains(v string) predicate.GitHubIssue

TitleContains applies the Contains predicate on the "title" field.

func TitleEQ

func TitleEQ(v string) predicate.GitHubIssue

TitleEQ applies the EQ predicate on the "title" field.

func TitleGT

func TitleGT(v string) predicate.GitHubIssue

TitleGT applies the GT predicate on the "title" field.

func TitleGTE

func TitleGTE(v string) predicate.GitHubIssue

TitleGTE applies the GTE predicate on the "title" field.

func TitleHasPrefix

func TitleHasPrefix(v string) predicate.GitHubIssue

TitleHasPrefix applies the HasPrefix predicate on the "title" field.

func TitleHasSuffix

func TitleHasSuffix(v string) predicate.GitHubIssue

TitleHasSuffix applies the HasSuffix predicate on the "title" field.

func TitleIn

func TitleIn(vs ...string) predicate.GitHubIssue

TitleIn applies the In predicate on the "title" field.

func TitleLT

func TitleLT(v string) predicate.GitHubIssue

TitleLT applies the LT predicate on the "title" field.

func TitleLTE

func TitleLTE(v string) predicate.GitHubIssue

TitleLTE applies the LTE predicate on the "title" field.

func TitleNEQ

func TitleNEQ(v string) predicate.GitHubIssue

TitleNEQ applies the NEQ predicate on the "title" field.

func TitleNotIn

func TitleNotIn(vs ...string) predicate.GitHubIssue

TitleNotIn applies the NotIn predicate on the "title" field.

func UpdatedAt

func UpdatedAt(v string) predicate.GitHubIssue

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

func UpdatedAtContains

func UpdatedAtContains(v string) predicate.GitHubIssue

UpdatedAtContains applies the Contains predicate on the "updated_at" field.

func UpdatedAtEQ

func UpdatedAtEQ(v string) predicate.GitHubIssue

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

func UpdatedAtGT

func UpdatedAtGT(v string) predicate.GitHubIssue

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

func UpdatedAtGTE

func UpdatedAtGTE(v string) predicate.GitHubIssue

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

func UpdatedAtHasPrefix

func UpdatedAtHasPrefix(v string) predicate.GitHubIssue

UpdatedAtHasPrefix applies the HasPrefix predicate on the "updated_at" field.

func UpdatedAtHasSuffix

func UpdatedAtHasSuffix(v string) predicate.GitHubIssue

UpdatedAtHasSuffix applies the HasSuffix predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...string) predicate.GitHubIssue

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

func UpdatedAtLT

func UpdatedAtLT(v string) predicate.GitHubIssue

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

func UpdatedAtLTE

func UpdatedAtLTE(v string) predicate.GitHubIssue

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v string) predicate.GitHubIssue

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

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...string) predicate.GitHubIssue

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

Types

type State

type State string

State defines the type for the "state" enum field.

const (
	StateOpen   State = "open"
	StateClosed State = "closed"
)

State values.

func (State) String

func (s State) String() string

Jump to

Keyboard shortcuts

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