-
thijsheijden authoredthijsheijden authored
interface.go 271 B
package query
import "git.science.uu.nl/graphpolaris/query-conversion/entity"
// A Converter converts an incoming message in our JSON format to a format like AQL or Cypher
type Converter interface {
ConvertQuery(JSONQuery *entity.IncomingQueryJSON) (*string, error)
}