Versions in this module Expand all Collapse all v0 v0.14.0 Jun 2, 2021 v0.13.0 Jun 2, 2021 Changes in this version + type FieldFunc func(ctx context.Context, next graphql.Resolver) (res interface{}, err error) + func (f FieldFunc) ExtensionName() string + func (f FieldFunc) InterceptField(ctx context.Context, next graphql.Resolver) (res interface{}, err error) + func (f FieldFunc) Validate(schema graphql.ExecutableSchema) error + type OperationFunc func(ctx context.Context, next graphql.OperationHandler) graphql.ResponseHandler + func (r OperationFunc) ExtensionName() string + func (r OperationFunc) InterceptOperation(ctx context.Context, next graphql.OperationHandler) graphql.ResponseHandler + func (r OperationFunc) Validate(schema graphql.ExecutableSchema) error + type ResponseFunc func(ctx context.Context, next graphql.ResponseHandler) *graphql.Response + func (r ResponseFunc) ExtensionName() string + func (r ResponseFunc) InterceptResponse(ctx context.Context, next graphql.ResponseHandler) *graphql.Response + func (r ResponseFunc) Validate(schema graphql.ExecutableSchema) error + type Server struct + func New(es graphql.ExecutableSchema) *Server + func NewDefaultServer(es graphql.ExecutableSchema) *Server + func (s *Server) AddTransport(transport graphql.Transport) + func (s *Server) AroundFields(f graphql.FieldMiddleware) + func (s *Server) AroundOperations(f graphql.OperationMiddleware) + func (s *Server) AroundResponses(f graphql.ResponseMiddleware) + func (s *Server) Handler() fasthttp.RequestHandler + func (s *Server) SetErrorPresenter(f graphql.ErrorPresenterFunc) + func (s *Server) SetQueryCache(cache graphql.Cache) + func (s *Server) SetRecoverFunc(f graphql.RecoverFunc) + func (s *Server) Use(extension graphql.HandlerExtension)