We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Do we need to add null pointer handling in graphql/scalers.go ?
func coerceString(value interface{}) interface{} { if v, ok := value.(*string); ok { return *v } return fmt.Sprintf("%v", value) }