Documentation ¶
Index ¶
- type DBTX
- type GetProjectRow
- type Project
- type Queries
- func (q *Queries) DeleteProject(ctx context.Context, externalPrimaryIdentifier string) (int64, error)
- func (q *Queries) GetProject(ctx context.Context, externalPrimaryIdentifier string) (GetProjectRow, error)
- func (q *Queries) SuggestProjects(ctx context.Context, toTsquery string) ([]SuggestProjectsRow, error)
- func (q *Queries) UpsertProject(ctx context.Context, arg UpsertProjectParams) error
- func (q *Queries) WithTx(tx pgx.Tx) *Queries
- type SuggestProjectsRow
- type UpsertProjectParams
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetProjectRow ¶
type GetProjectRow struct { Pk int64 ExternalPrimaryIdentifier string ExternalIdentifiers models.ExternalIdentifiers Name models.TranslatedString Description models.TranslatedString FoundingDate pgtype.Text DissolutionDate pgtype.Text Acronym models.Acronym EuGrantCall pgtype.Text EuFundingProgramme pgtype.Text CreatedAt pgtype.Timestamptz UpdatedAt pgtype.Timestamptz }
type Project ¶
type Project struct { Pk int64 ExternalPrimaryIdentifier string ExternalIdentifiers models.ExternalIdentifiers Name models.TranslatedString Description models.TranslatedString FoundingDate pgtype.Text DissolutionDate pgtype.Text Acronym models.Acronym EuGrantCall pgtype.Text EuFundingProgramme pgtype.Text CreatedAt pgtype.Timestamptz UpdatedAt pgtype.Timestamptz Ts interface{} }
type Queries ¶
type Queries struct {
// contains filtered or unexported fields
}
func (*Queries) DeleteProject ¶
func (*Queries) GetProject ¶
func (*Queries) SuggestProjects ¶
func (*Queries) UpsertProject ¶
func (q *Queries) UpsertProject(ctx context.Context, arg UpsertProjectParams) error
type SuggestProjectsRow ¶
type SuggestProjectsRow struct { Pk int64 ExternalPrimaryIdentifier string ExternalIdentifiers models.ExternalIdentifiers Name models.TranslatedString Description models.TranslatedString FoundingDate pgtype.Text DissolutionDate pgtype.Text Acronym models.Acronym EuGrantCall pgtype.Text EuFundingProgramme pgtype.Text CreatedAt pgtype.Timestamptz UpdatedAt pgtype.Timestamptz }
type UpsertProjectParams ¶
type UpsertProjectParams struct { ExternalPrimaryIdentifier string ExternalIdentifiers models.ExternalIdentifiers Name models.TranslatedString Description models.TranslatedString FoundingDate pgtype.Text DissolutionDate pgtype.Text Acronym models.Acronym EuGrantCall pgtype.Text EuFundingProgramme pgtype.Text }
Click to show internal directories.
Click to hide internal directories.