Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lolopinto committed Aug 2, 2022
1 parent fef4457 commit 64508b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsent/cmd/generateschema/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ func FieldObjectCall(f *input.Field) string {
appendBoolean(o, f.Unique, "unique")
appendBoolean(o, f.Nullable, "nullable")
appendBoolean(o, f.Index, "index")
appendBoolean(o, f.Private, "private")
appendBoolean(o, f.Private != nil, "private")
appendBoolean(o, f.HideFromGraphQL, "hideFromGraphQL")
appendBoolean(o, f.DefaultToViewerOnCreate, "defaultToViewerOnCreate")

Expand Down

0 comments on commit 64508b4

Please sign in to comment.