mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +03:00
36 lines
654 B
Go
36 lines
654 B
Go
package database
|
|
|
|
import (
|
|
"github.com/hasura/graphql-engine/cli/metadata/types"
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
type MetadataDriver interface {
|
|
SetMetadataPlugins(types.MetadataPlugins)
|
|
|
|
EnableCheckMetadataConsistency(bool)
|
|
|
|
ExportMetadata() (map[string][]byte, error)
|
|
|
|
ResetMetadata() error
|
|
|
|
ReloadMetadata() error
|
|
|
|
GetInconsistentMetadata() (bool, []InconsistentMetadataInterface, error)
|
|
|
|
DropInconsistentMetadata() error
|
|
|
|
BuildMetadata() (yaml.MapSlice, error)
|
|
|
|
ApplyMetadata() error
|
|
|
|
Query(data interface{}) error
|
|
}
|
|
|
|
type InconsistentMetadataInterface interface {
|
|
GetType() string
|
|
GetName() string
|
|
GetDescription() string
|
|
GetReason() string
|
|
}
|