We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8850ba7 commit 93dc19cCopy full SHA for 93dc19c
internal/inflection/singular.go
@@ -43,5 +43,10 @@ func Singular(s SingularParams) string {
43
if strings.ToLower(s.Name) == "waves" {
44
return "wave"
45
}
46
+
47
+ if strings.ToLower(s.Name) == "metadata" {
48
+ return "metadata"
49
+ }
50
51
return upstream.Singular(s.Name)
52
internal/reserved.go
@@ -59,6 +59,8 @@ func IsReserved(s string) bool {
59
return true
60
case "var":
61
62
+ case "q":
63
+ return true
64
default:
65
return false
66
0 commit comments