graphql-engine/cli/commands/metadata_inconsistency_status.go
Rob Dominguez 880182c805 docs: improve Long values for CLI
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7399
GitOrigin-RevId: 6e848f6eae2e5418c386f814623c122646db12c7
2022-12-30 03:52:33 +00:00

42 lines
1.3 KiB
Go

package commands
import (
"fmt"
"github.com/hasura/graphql-engine/cli/v2"
"github.com/hasura/graphql-engine/cli/v2/internal/errors"
"github.com/hasura/graphql-engine/cli/v2/internal/projectmetadata"
"github.com/spf13/cobra"
)
func newMetadataInconsistencyStatusCmd(ec *cli.ExecutionContext) *cobra.Command {
opts := &metadataInconsistencyListOptions{
EC: ec,
}
metadataInconsistencyStatusCmd := &cobra.Command{
Use: "status",
Short: "Check if the Hasura Metadata is inconsistent or not",
Long: "At times, when developing, the Hasura Metadata can become inconsistent. This command can be used to check if the Metadata is inconsistent or not.",
SilenceUsage: true,
RunE: func(cmd *cobra.Command, args []string) error {
op := genOpName(cmd, "RunE")
opts.EC.Spin("reading metadata status...")
err := opts.read(projectmetadata.NewHandlerFromEC(ec))
opts.EC.Spinner.Stop()
if err != nil {
return errors.E(op, fmt.Errorf("failed to read metadata status: %w", err))
}
if opts.isConsistent {
opts.EC.Logger.Println("metadata is consistent")
} else {
return errors.E(op, "metadata is inconsistent, use 'hasura metadata ic list' command to see the inconsistent objects")
}
return nil
},
}
return metadataInconsistencyStatusCmd
}