aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/resolvers/errors.go
blob: 2a8024e0a1f460fbbe7662427fc8660627225c2c (plain) (blame)
1
2
3
4
5
6
package resolvers

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")