Gitiles
Code Review
Sign In
code.v1.dodo.cloud
/
pcloud
/
1c09e60e3a4d9d33cd4d2c2270b6f3a3076c3abb
/
.
/
core
/
api
/
schema
/
schema.go
blob: fed08e15f90583e3825573b3bbf2b1a3b8656217 [
file
] [
log
] [
blame
]
package schema
import (
"github.com/vektah/gqlparser/ast"
)
type GraphQLClient interface {
Schema() *ast.Schema
SetSchema(schema string) error
AddSchema(schema string) error
RunQuery(query string) (string, error)
}