We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Southclaws/storyden'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// Code generated by ent, DO NOT EDIT.
package ent
import (
"context"
"fmt"
"math"
"entgo.io/ent"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
"github.com/Southclaws/storyden/internal/ent/account"
"github.com/Southclaws/storyden/internal/ent/post"
"github.com/Southclaws/storyden/internal/ent/predicate"
"github.com/Southclaws/storyden/internal/ent/react"
"github.com/rs/xid"
)
// ReactQuery is the builder for querying React entities.
type ReactQuery struct {
config
ctx *QueryContext
order []react.OrderOption
inters []Interceptor
predicates []predicate.React
withAccount *AccountQuery
withPost *PostQuery
modifiers []func(*sql.Selector)
// intermediate query (i.e. traversal path).
sql *sql.Selector
path func(context.Context) (*sql.Selector, error)
}
// Where adds a new predicate for the ReactQuery builder.
func (rq *ReactQuery) Where(ps ...predicate.React) *ReactQuery {
rq.predicates = append(rq.predicates, ps...)
return rq
}
// Limit the number of records to be returned by this query.
func (rq *ReactQuery) Limit(limit int) *ReactQuery {
rq.ctx.Limit = &limit
return rq
}
// Offset to start from.
func (rq *ReactQuery) Offset(offset int) *ReactQuery {
rq.ctx.Offset = &offset
return rq
}
// Unique configures the query builder to filter duplicate records on query.
// By default, unique is set to true, and can be disabled using this method.
func (rq *ReactQuery) Unique(unique bool) *ReactQuery {
rq.ctx.Unique = &unique
return rq
}
// Order specifies how the records should be ordered.
func (rq *ReactQuery) Order(o ...react.OrderOption) *ReactQuery {
rq.order = append(rq.order, o...)
return rq
}
// QueryAccount chains the current query on the "account" edge.
func (rq *ReactQuery) QueryAccount() *AccountQuery {
query := (&AccountClient{config: rq.config}).Query()
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
if err := rq.prepareQuery(ctx); err != nil {
return nil, err
}
selector := rq.sqlQuery(ctx)
if err := selector.Err(); err != nil {
return nil, err
}
step := sqlgraph.NewStep(
sqlgraph.From(react.Table, react.FieldID, selector),
sqlgraph.To(account.Table, account.FieldID),
sqlgraph.Edge(sqlgraph.M2O, true, react.AccountTable, react.AccountColumn),
)
fromU = sqlgraph.SetNeighbors(rq.driver.Dialect(), step)
return fromU, nil
}
return query
}
// QueryPost chains the current query on the "Post" edge.
func (rq *ReactQuery) QueryPost() *PostQuery {
query := (&PostClient{config: rq.config}).Query()
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
if err := rq.prepareQuery(ctx); err != nil {
return nil, err
}
selector := rq.sqlQuery(ctx)
if err := selector.Err(); err != nil {
return nil, err
}
step := sqlgraph.NewStep(
sqlgraph.From(react.Table, react.FieldID, selector),
sqlgraph.To(post.Table, post.FieldID),
sqlgraph.Edge(sqlgraph.M2O, true, react.PostTable, react.PostColumn),
)
fromU = sqlgraph.SetNeighbors(rq.driver.Dialect(), step)
return fromU, nil
}
return query
}
// First returns the first React entity from the query.
// Returns a *NotFoundError when no React was found.
func (rq *ReactQuery) First(ctx context.Context) (*React, error) {
nodes, err := rq.Limit(1).All(setContextOp(ctx, rq.ctx, ent.OpQueryFirst))
if err != nil {
return nil, err
}
if len(nodes) == 0 {
return nil, &NotFoundError{react.Label}
}
return nodes[0], nil
}
// FirstX is like First, but panics if an error occurs.
func (rq *ReactQuery) FirstX(ctx context.Context) *React {
node, err := rq.First(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return node
}
// FirstID returns the first React ID from the query.
// Returns a *NotFoundError when no React ID was found.
func (rq *ReactQuery) FirstID(ctx context.Context) (id xid.ID, err error) {
var ids []xid.ID
if ids, err = rq.Limit(1).IDs(setContextOp(ctx, rq.ctx, ent.OpQueryFirstID)); err != nil {
return
}
if len(ids) == 0 {
err = &NotFoundError{react.Label}
return
}
return ids[0], nil
}
// FirstIDX is like FirstID, but panics if an error occurs.
func (rq *ReactQuery) FirstIDX(ctx context.Context) xid.ID {
id, err := rq.FirstID(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return id
}
// Only returns a single React entity found by the query, ensuring it only returns one.
// Returns a *NotSingularError when more than one React entity is found.
// Returns a *NotFoundError when no React entities are found.
func (rq *ReactQuery) Only(ctx context.Context) (*React, error) {
nodes, err := rq.Limit(2).All(setContextOp(ctx, rq.ctx, ent.OpQueryOnly))
if err != nil {
return nil, err
}
switch len(nodes) {
case 1:
return nodes[0], nil
case 0:
return nil, &NotFoundError{react.Label}
default:
return nil, &NotSingularError{react.Label}
}
}
// OnlyX is like Only, but panics if an error occurs.
func (rq *ReactQuery) OnlyX(ctx context.Context) *React {
node, err := rq.Only(ctx)
if err != nil {
panic(err)
}
return node
}
// OnlyID is like Only, but returns the only React ID in the query.
// Returns a *NotSingularError when more than one React ID is found.
// Returns a *NotFoundError when no entities are found.
func (rq *ReactQuery) OnlyID(ctx context.Context) (id xid.ID, err error) {
var ids []xid.ID
if ids, err = rq.Limit(2).IDs(setContextOp(ctx, rq.ctx, ent.OpQueryOnlyID)); err != nil {
return
}
switch len(ids) {
case 1:
id = ids[0]
case 0:
err = &NotFoundError{react.Label}
default:
err = &NotSingularError{react.Label}
}
return
}
// OnlyIDX is like OnlyID, but panics if an error occurs.
func (rq *ReactQuery) OnlyIDX(ctx context.Context) xid.ID {
id, err := rq.OnlyID(ctx)
if err != nil {
panic(err)
}
return id
}
// All executes the query and returns a list of Reacts.
func (rq *ReactQuery) All(ctx context.Context) ([]*React, error) {
ctx = setContextOp(ctx, rq.ctx, ent.OpQueryAll)
if err := rq.prepareQuery(ctx); err != nil {
return nil, err
}
qr := querierAll[[]*React, *ReactQuery]()
return withInterceptors[[]*React](ctx, rq, qr, rq.inters)
}
// AllX is like All, but panics if an error occurs.
func (rq *ReactQuery) AllX(ctx context.Context) []*React {
nodes, err := rq.All(ctx)
if err != nil {
panic(err)
}
return nodes
}
// IDs executes the query and returns a list of React IDs.
func (rq *ReactQuery) IDs(ctx context.Context) (ids []xid.ID, err error) {
if rq.ctx.Unique == nil && rq.path != nil {
rq.Unique(true)
}
ctx = setContextOp(ctx, rq.ctx, ent.OpQueryIDs)
if err = rq.Select(react.FieldID).Scan(ctx, &ids); err != nil {
return nil, err
}
return ids, nil
}
// IDsX is like IDs, but panics if an error occurs.
func (rq *ReactQuery) IDsX(ctx context.Context) []xid.ID {
ids, err := rq.IDs(ctx)
if err != nil {
panic(err)
}
return ids
}
// Count returns the count of the given query.
func (rq *ReactQuery) Count(ctx context.Context) (int, error) {
ctx = setContextOp(ctx, rq.ctx, ent.OpQueryCount)
if err := rq.prepareQuery(ctx); err != nil {
return 0, err
}
return withInterceptors[int](ctx, rq, querierCount[*ReactQuery](), rq.inters)
}
// CountX is like Count, but panics if an error occurs.
func (rq *ReactQuery) CountX(ctx context.Context) int {
count, err := rq.Count(ctx)
if err != nil {
panic(err)
}
return count
}
// Exist returns true if the query has elements in the graph.
func (rq *ReactQuery) Exist(ctx context.Context) (bool, error) {
ctx = setContextOp(ctx, rq.ctx, ent.OpQueryExist)
switch _, err := rq.FirstID(ctx); {
case IsNotFound(err):
return false, nil
case err != nil:
return false, fmt.Errorf("ent: check existence: %w", err)
default:
return true, nil
}
}
// ExistX is like Exist, but panics if an error occurs.
func (rq *ReactQuery) ExistX(ctx context.Context) bool {
exist, err := rq.Exist(ctx)
if err != nil {
panic(err)
}
return exist
}
// Clone returns a duplicate of the ReactQuery builder, including all associated steps. It can be
// used to prepare common query builders and use them differently after the clone is made.
func (rq *ReactQuery) Clone() *ReactQuery {
if rq == nil {
return nil
}
return &ReactQuery{
config: rq.config,
ctx: rq.ctx.Clone(),
order: append([]react.OrderOption{}, rq.order...),
inters: append([]Interceptor{}, rq.inters...),
predicates: append([]predicate.React{}, rq.predicates...),
withAccount: rq.withAccount.Clone(),
withPost: rq.withPost.Clone(),
// clone intermediate query.
sql: rq.sql.Clone(),
path: rq.path,
modifiers: append([]func(*sql.Selector){}, rq.modifiers...),
}
}
// WithAccount tells the query-builder to eager-load the nodes that are connected to
// the "account" edge. The optional arguments are used to configure the query builder of the edge.
func (rq *ReactQuery) WithAccount(opts ...func(*AccountQuery)) *ReactQuery {
query := (&AccountClient{config: rq.config}).Query()
for _, opt := range opts {
opt(query)
}
rq.withAccount = query
return rq
}
// WithPost tells the query-builder to eager-load the nodes that are connected to
// the "Post" edge. The optional arguments are used to configure the query builder of the edge.
func (rq *ReactQuery) WithPost(opts ...func(*PostQuery)) *ReactQuery {
query := (&PostClient{config: rq.config}).Query()
for _, opt := range opts {
opt(query)
}
rq.withPost = query
return rq
}
// GroupBy is used to group vertices by one or more fields/columns.
// It is often used with aggregate functions, like: count, max, mean, min, sum.
//
// Example:
//
// var v []struct {
// CreatedAt time.Time `json:"created_at,omitempty"`
// Count int `json:"count,omitempty"`
// }
//
// client.React.Query().
// GroupBy(react.FieldCreatedAt).
// Aggregate(ent.Count()).
// Scan(ctx, &v)
func (rq *ReactQuery) GroupBy(field string, fields ...string) *ReactGroupBy {
rq.ctx.Fields = append([]string{field}, fields...)
grbuild := &ReactGroupBy{build: rq}
grbuild.flds = &rq.ctx.Fields
grbuild.label = react.Label
grbuild.scan = grbuild.Scan
return grbuild
}
// Select allows the selection one or more fields/columns for the given query,
// instead of selecting all fields in the entity.
//
// Example:
//
// var v []struct {
// CreatedAt time.Time `json:"created_at,omitempty"`
// }
//
// client.React.Query().
// Select(react.FieldCreatedAt).
// Scan(ctx, &v)
func (rq *ReactQuery) Select(fields ...string) *ReactSelect {
rq.ctx.Fields = append(rq.ctx.Fields, fields...)
sbuild := &ReactSelect{ReactQuery: rq}
sbuild.label = react.Label
sbuild.flds, sbuild.scan = &rq.ctx.Fields, sbuild.Scan
return sbuild
}
// Aggregate returns a ReactSelect configured with the given aggregations.
func (rq *ReactQuery) Aggregate(fns ...AggregateFunc) *ReactSelect {
return rq.Select().Aggregate(fns...)
}
func (rq *ReactQuery) prepareQuery(ctx context.Context) error {
for _, inter := range rq.inters {
if inter == nil {
return fmt.Errorf("ent: uninitialized interceptor (forgotten import ent/runtime?)")
}
if trv, ok := inter.(Traverser); ok {
if err := trv.Traverse(ctx, rq); err != nil {
return err
}
}
}
for _, f := range rq.ctx.Fields {
if !react.ValidColumn(f) {
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
}
}
if rq.path != nil {
prev, err := rq.path(ctx)
if err != nil {
return err
}
rq.sql = prev
}
return nil
}
func (rq *ReactQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*React, error) {
var (
nodes = []*React{}
_spec = rq.querySpec()
loadedTypes = [2]bool{
rq.withAccount != nil,
rq.withPost != nil,
}
)
_spec.ScanValues = func(columns []string) ([]any, error) {
return (*React).scanValues(nil, columns)
}
_spec.Assign = func(columns []string, values []any) error {
node := &React{config: rq.config}
nodes = append(nodes, node)
node.Edges.loadedTypes = loadedTypes
return node.assignValues(columns, values)
}
if len(rq.modifiers) > 0 {
_spec.Modifiers = rq.modifiers
}
for i := range hooks {
hooks[i](ctx, _spec)
}
if err := sqlgraph.QueryNodes(ctx, rq.driver, _spec); err != nil {
return nil, err
}
if len(nodes) == 0 {
return nodes, nil
}
if query := rq.withAccount; query != nil {
if err := rq.loadAccount(ctx, query, nodes, nil,
func(n *React, e *Account) { n.Edges.Account = e }); err != nil {
return nil, err
}
}
if query := rq.withPost; query != nil {
if err := rq.loadPost(ctx, query, nodes, nil,
func(n *React, e *Post) { n.Edges.Post = e }); err != nil {
return nil, err
}
}
return nodes, nil
}
func (rq *ReactQuery) loadAccount(ctx context.Context, query *AccountQuery, nodes []*React, init func(*React), assign func(*React, *Account)) error {
ids := make([]xid.ID, 0, len(nodes))
nodeids := make(map[xid.ID][]*React)
for i := range nodes {
fk := nodes[i].AccountID
if _, ok := nodeids[fk]; !ok {
ids = append(ids, fk)
}
nodeids[fk] = append(nodeids[fk], nodes[i])
}
if len(ids) == 0 {
return nil
}
query.Where(account.IDIn(ids...))
neighbors, err := query.All(ctx)
if err != nil {
return err
}
for _, n := range neighbors {
nodes, ok := nodeids[n.ID]
if !ok {
return fmt.Errorf(`unexpected foreign-key "account_id" returned %v`, n.ID)
}
for i := range nodes {
assign(nodes[i], n)
}
}
return nil
}
func (rq *ReactQuery) loadPost(ctx context.Context, query *PostQuery, nodes []*React, init func(*React), assign func(*React, *Post)) error {
ids := make([]xid.ID, 0, len(nodes))
nodeids := make(map[xid.ID][]*React)
for i := range nodes {
fk := nodes[i].PostID
if _, ok := nodeids[fk]; !ok {
ids = append(ids, fk)
}
nodeids[fk] = append(nodeids[fk], nodes[i])
}
if len(ids) == 0 {
return nil
}
query.Where(post.IDIn(ids...))
neighbors, err := query.All(ctx)
if err != nil {
return err
}
for _, n := range neighbors {
nodes, ok := nodeids[n.ID]
if !ok {
return fmt.Errorf(`unexpected foreign-key "post_id" returned %v`, n.ID)
}
for i := range nodes {
assign(nodes[i], n)
}
}
return nil
}
func (rq *ReactQuery) sqlCount(ctx context.Context) (int, error) {
_spec := rq.querySpec()
if len(rq.modifiers) > 0 {
_spec.Modifiers = rq.modifiers
}
_spec.Node.Columns = rq.ctx.Fields
if len(rq.ctx.Fields) > 0 {
_spec.Unique = rq.ctx.Unique != nil && *rq.ctx.Unique
}
return sqlgraph.CountNodes(ctx, rq.driver, _spec)
}
func (rq *ReactQuery) querySpec() *sqlgraph.QuerySpec {
_spec := sqlgraph.NewQuerySpec(react.Table, react.Columns, sqlgraph.NewFieldSpec(react.FieldID, field.TypeString))
_spec.From = rq.sql
if unique := rq.ctx.Unique; unique != nil {
_spec.Unique = *unique
} else if rq.path != nil {
_spec.Unique = true
}
if fields := rq.ctx.Fields; len(fields) > 0 {
_spec.Node.Columns = make([]string, 0, len(fields))
_spec.Node.Columns = append(_spec.Node.Columns, react.FieldID)
for i := range fields {
if fields[i] != react.FieldID {
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
}
}
if rq.withAccount != nil {
_spec.Node.AddColumnOnce(react.FieldAccountID)
}
if rq.withPost != nil {
_spec.Node.AddColumnOnce(react.FieldPostID)
}
}
if ps := rq.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
if limit := rq.ctx.Limit; limit != nil {
_spec.Limit = *limit
}
if offset := rq.ctx.Offset; offset != nil {
_spec.Offset = *offset
}
if ps := rq.order; len(ps) > 0 {
_spec.Order = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
return _spec
}
func (rq *ReactQuery) sqlQuery(ctx context.Context) *sql.Selector {
builder := sql.Dialect(rq.driver.Dialect())
t1 := builder.Table(react.Table)
columns := rq.ctx.Fields
if len(columns) == 0 {
columns = react.Columns
}
selector := builder.Select(t1.Columns(columns...)...).From(t1)
if rq.sql != nil {
selector = rq.sql
selector.Select(selector.Columns(columns...)...)
}
if rq.ctx.Unique != nil && *rq.ctx.Unique {
selector.Distinct()
}
for _, m := range rq.modifiers {
m(selector)
}
for _, p := range rq.predicates {
p(selector)
}
for _, p := range rq.order {
p(selector)
}
if offset := rq.ctx.Offset; offset != nil {
// limit is mandatory for offset clause. We start
// with default value, and override it below if needed.
selector.Offset(*offset).Limit(math.MaxInt32)
}
if limit := rq.ctx.Limit; limit != nil {
selector.Limit(*limit)
}
return selector
}
// Modify adds a query modifier for attaching custom logic to queries.
func (rq *ReactQuery) Modify(modifiers ...func(s *sql.Selector)) *ReactSelect {
rq.modifiers = append(rq.modifiers, modifiers...)
return rq.Select()
}
// ReactGroupBy is the group-by builder for React entities.
type ReactGroupBy struct {
selector
build *ReactQuery
}
// Aggregate adds the given aggregation functions to the group-by query.
func (rgb *ReactGroupBy) Aggregate(fns ...AggregateFunc) *ReactGroupBy {
rgb.fns = append(rgb.fns, fns...)
return rgb
}
// Scan applies the selector query and scans the result into the given value.
func (rgb *ReactGroupBy) Scan(ctx context.Context, v any) error {
ctx = setContextOp(ctx, rgb.build.ctx, ent.OpQueryGroupBy)
if err := rgb.build.prepareQuery(ctx); err != nil {
return err
}
return scanWithInterceptors[*ReactQuery, *ReactGroupBy](ctx, rgb.build, rgb, rgb.build.inters, v)
}
func (rgb *ReactGroupBy) sqlScan(ctx context.Context, root *ReactQuery, v any) error {
selector := root.sqlQuery(ctx).Select()
aggregation := make([]string, 0, len(rgb.fns))
for _, fn := range rgb.fns {
aggregation = append(aggregation, fn(selector))
}
if len(selector.SelectedColumns()) == 0 {
columns := make([]string, 0, len(*rgb.flds)+len(rgb.fns))
for _, f := range *rgb.flds {
columns = append(columns, selector.C(f))
}
columns = append(columns, aggregation...)
selector.Select(columns...)
}
selector.GroupBy(selector.Columns(*rgb.flds...)...)
if err := selector.Err(); err != nil {
return err
}
rows := &sql.Rows{}
query, args := selector.Query()
if err := rgb.build.driver.Query(ctx, query, args, rows); err != nil {
return err
}
defer rows.Close()
return sql.ScanSlice(rows, v)
}
// ReactSelect is the builder for selecting fields of React entities.
type ReactSelect struct {
*ReactQuery
selector
}
// Aggregate adds the given aggregation functions to the selector query.
func (rs *ReactSelect) Aggregate(fns ...AggregateFunc) *ReactSelect {
rs.fns = append(rs.fns, fns...)
return rs
}
// Scan applies the selector query and scans the result into the given value.
func (rs *ReactSelect) Scan(ctx context.Context, v any) error {
ctx = setContextOp(ctx, rs.ctx, ent.OpQuerySelect)
if err := rs.prepareQuery(ctx); err != nil {
return err
}
return scanWithInterceptors[*ReactQuery, *ReactSelect](ctx, rs.ReactQuery, rs, rs.inters, v)
}
func (rs *ReactSelect) sqlScan(ctx context.Context, root *ReactQuery, v any) error {
selector := root.sqlQuery(ctx)
aggregation := make([]string, 0, len(rs.fns))
for _, fn := range rs.fns {
aggregation = append(aggregation, fn(selector))
}
switch n := len(*rs.selector.flds); {
case n == 0 && len(aggregation) > 0:
selector.Select(aggregation...)
case n != 0 && len(aggregation) > 0:
selector.AppendSelect(aggregation...)
}
rows := &sql.Rows{}
query, args := selector.Query()
if err := rs.driver.Query(ctx, query, args, rows); err != nil {
return err
}
defer rows.Close()
return sql.ScanSlice(rows, v)
}
// Modify adds a query modifier for attaching custom logic to queries.
func (rs *ReactSelect) Modify(modifiers ...func(s *sql.Selector)) *ReactSelect {
rs.modifiers = append(rs.modifiers, modifiers...)
return rs
}