Versions in this module Expand all Collapse all v0 v0.1.2 Feb 10, 2021 Changes in this version + func NewExecutableSchema(cfg Config) graphql.ExecutableSchema + type ComplexityRoot struct + App struct{ ... } + Chart struct{ ... } + Dependency struct{ ... } + Maintainer struct{ ... } + Mutation struct{ ... } + Query struct{ ... } + Release struct{ ... } + Timestamps struct{ ... } + type Config struct + Complexity ComplexityRoot + Directives DirectiveRoot + Resolvers ResolverRoot + type DirectiveRoot struct + type MutationResolver interface + InstallApp func(ctx context.Context, input model.AppInput) (*model.App, error) + RollbackApp func(ctx context.Context, input model.AppRef) (*model.App, error) + UninstallApp func(ctx context.Context, input model.AppRef) (*string, error) + UpdateApp func(ctx context.Context, input model.AppInput) (*model.App, error) + type QueryResolver interface + GetApp func(ctx context.Context, input model.AppRef) (*model.App, error) + GetHistory func(ctx context.Context, input model.HistoryFilter) ([]*model.App, error) + SearchApps func(ctx context.Context, input model.AppFilter) ([]*model.App, error) + SearchCharts func(ctx context.Context, input model.ChartFilter) ([]*model.Chart, error) + type ResolverRoot interface + Mutation func() MutationResolver + Query func() QueryResolver