entc/gen: less sophisticated naming logic (#774)

Closed #772
This commit is contained in:
Ariel Mashraki
2020-09-17 09:19:55 +03:00
committed by GitHub
parent 235973cc2d
commit 17abe2d60f
225 changed files with 5542 additions and 1679 deletions

View File

@@ -90,23 +90,23 @@ func (nq *NodeQuery) QueryNext() *NodeQuery {
// First returns the first Node entity in the query. Returns *NotFoundError when no node was found.
func (nq *NodeQuery) First(ctx context.Context) (*Node, error) {
ns, err := nq.Limit(1).All(ctx)
nodes, err := nq.Limit(1).All(ctx)
if err != nil {
return nil, err
}
if len(ns) == 0 {
if len(nodes) == 0 {
return nil, &NotFoundError{node.Label}
}
return ns[0], nil
return nodes[0], nil
}
// FirstX is like First, but panics if an error occurs.
func (nq *NodeQuery) FirstX(ctx context.Context) *Node {
n, err := nq.First(ctx)
node, err := nq.First(ctx)
if err != nil && !IsNotFound(err) {
panic(err)
}
return n
return node
}
// FirstID returns the first Node id in the query. Returns *NotFoundError when no id was found.
@@ -133,13 +133,13 @@ func (nq *NodeQuery) FirstXID(ctx context.Context) string {
// Only returns the only Node entity in the query, returns an error if not exactly one entity was returned.
func (nq *NodeQuery) Only(ctx context.Context) (*Node, error) {
ns, err := nq.Limit(2).All(ctx)
nodes, err := nq.Limit(2).All(ctx)
if err != nil {
return nil, err
}
switch len(ns) {
switch len(nodes) {
case 1:
return ns[0], nil
return nodes[0], nil
case 0:
return nil, &NotFoundError{node.Label}
default:
@@ -149,11 +149,11 @@ func (nq *NodeQuery) Only(ctx context.Context) (*Node, error) {
// OnlyX is like Only, but panics if an error occurs.
func (nq *NodeQuery) OnlyX(ctx context.Context) *Node {
n, err := nq.Only(ctx)
node, err := nq.Only(ctx)
if err != nil {
panic(err)
}
return n
return node
}
// OnlyID returns the only Node id in the query, returns an error if not exactly one id was returned.
@@ -192,11 +192,11 @@ func (nq *NodeQuery) All(ctx context.Context) ([]*Node, error) {
// AllX is like All, but panics if an error occurs.
func (nq *NodeQuery) AllX(ctx context.Context) []*Node {
ns, err := nq.All(ctx)
nodes, err := nq.All(ctx)
if err != nil {
panic(err)
}
return ns
return nodes
}
// IDs executes the query and returns a list of Node ids.