method
Value.StringValue
func (value Value) StringValue() (
string,
bool,
)Read the string payload when this value has string kind.
Example
title, ok := ctx.Data["title"].StringValue()
if !ok {
return nil
}Related types
ValueA scalar, object, list, or populated document value.