Skip to content
Snippets Groups Projects
Commit 80dcfea4 authored by Leonardo Christino's avatar Leonardo Christino
Browse files

Re-enable machine learning backend

parent 8895381d
No related branches found
No related tags found
No related merge requests found
Pipeline #126920 failed
......@@ -17,11 +17,19 @@ type IncomingQueryJSON struct {
// Entities []QueryEntityStruct `json:"entities"`
// Relations []QueryRelationStruct `json:"relations"`
// GroupBys []QueryGroupByStruct `json:"groupBys"`
// MachineLearning []QueryMLStruct `json:"machineLearning"`
MachineLearning []QueryMLStruct `json:"machineLearning"`
// Modifiers []QueryModifierStruct
// Prefix string
}
/*
QueryMLStruct holds info for machinelearning
*/
type QueryMLStruct struct {
Type string
Parameters []string
}
type QueryStruct struct {
ID string `json:"id"`
Node NodeStruct `json:"node"`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment