blob: 5ec58b32e8b289eba82d00ec9fa12ef42f8a5171 (
plain) (
tree)
|
|
package graphqlidentity
import "errors"
// ErrNotAuthenticated is returned to the client if the user requests an action requiring authentication, and they are not authenticated.
var ErrNotAuthenticated = errors.New("not authenticated or read-only")
|