You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the enum is "aborted " this will cause an error. "aborted" is the accepted value. Would like to enhance so that trailing white spaces are allowed, if possible.
When calling the schema, err := graphql.NewSchema(schemaConfig) enums that have a trailing white space cause error.
Names must match /^[_a-zA-Z][_a-zA-Z0-9]*$/ but "aborted " does not.
The text was updated successfully, but these errors were encountered:
If the enum is
"aborted "
this will cause an error."aborted"
is the accepted value. Would like to enhance so that trailing white spaces are allowed, if possible.When calling the
schema, err := graphql.NewSchema(schemaConfig)
enums that have a trailing white space cause error.The text was updated successfully, but these errors were encountered: