graphql-engine/cli/commands/metadata_export.go

58 lines
1.6 KiB
Go
Raw Normal View History

2018-06-24 16:40:48 +03:00
package commands
import (
"github.com/hasura/graphql-engine/cli"
"github.com/pkg/errors"
2018-06-24 16:40:48 +03:00
"github.com/spf13/cobra"
)
const longHelpMetadataExportCmd = `Export Hasura metadata and save it in the` + " ``/metadata``" + ` directory.
The output is a bunch of yaml files which captures all the metadata required
by the GraphQL engine. This includes info about tables that are tracked,
permission rules, relationships and event triggers that are defined
on those tables`
func newMetadataExportCmd(ec *cli.ExecutionContext) *cobra.Command {
opts := &MetadataExportOptions{
2018-06-24 16:40:48 +03:00
EC: ec,
ActionType: "export",
2018-06-24 16:40:48 +03:00
}
metadataExportCmd := &cobra.Command{
Use: "export",
Short: "Export Hasura GraphQL engine metadata from the database",
Example: ` # Export metadata and save it in migrations/metadata.yaml file:
hasura metadata export
# Use with admin secret:
hasura metadata export --admin-secret "<admin-secret>"
# Export metadata to another instance specified by the flag:
hasura metadata export --endpoint "<endpoint>"`,
2018-06-24 16:40:48 +03:00
SilenceUsage: true,
RunE: func(cmd *cobra.Command, args []string) error {
opts.EC.Spin("Exporting metadata...")
err := opts.Run()
opts.EC.Spinner.Stop()
if err != nil {
return errors.Wrap(err, "failed to export metadata")
}
opts.EC.Logger.Info("Metadata exported")
return nil
2018-06-24 16:40:48 +03:00
},
Long: longHelpMetadataExportCmd,
2018-06-24 16:40:48 +03:00
}
return metadataExportCmd
}
type MetadataExportOptions struct {
2018-06-24 16:40:48 +03:00
EC *cli.ExecutionContext
ActionType string
2018-06-24 16:40:48 +03:00
}
func (o *MetadataExportOptions) Run() error {
return executeMetadata(o.ActionType, o.EC)
2018-06-24 16:40:48 +03:00
}