Skip to content
Snippets Groups Projects
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)
}