MCPcopy Create free account
hub / github.com/bytebase/bytebase / And

Method And

backend/common/qb/qb.go:123–125  ·  view source on GitHub ↗

And adds an AND condition.

(text string, params ...any)

Source from the content-addressed store, hash-verified

121
122// And adds an AND condition.
123func (q *Query) And(text string, params ...any) *Query {
124 return q.Join(" AND ", text, params...)
125}
126
127// Or adds an OR condition.
128func (q *Query) Or(text string, params ...any) *Query {

Callers 15

ListReleasesMethod · 0.80
ListChangelogsMethod · 0.80
ListWorkspacesByEmailMethod · 0.80
ListServiceAccountsMethod · 0.80
ListIssueCommentMethod · 0.80
listUserImplFunction · 0.80
ListDatabasesMethod · 0.80
BatchUpdateDatabasesMethod · 0.80
GetListDatabaseFilterFunction · 0.80
GetExportArchiveMethod · 0.80
ListWorkSheetsMethod · 0.80

Calls 1

JoinMethod · 0.95