errors.go

1package graphqlidentity
2
3import "errors"
4
5// ErrNotAuthenticated is returned to the client if the user requests an action requiring authentication, and they are not authenticated.
6var ErrNotAuthenticated = errors.New("not authenticated or read-only")