From 73119c95541242bfe3dbd402efb8195cb96a2ebf Mon Sep 17 00:00:00 2001 From: Joris <joris.l@hotmail.com> Date: Wed, 24 Nov 2021 12:14:10 +0100 Subject: [PATCH] hotfix nr3 --- aql/convertQuery.go | 3 ++- aql/convertQueryBenchmark_test.go | 2 +- aql/convertQuery_test.go | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/aql/convertQuery.go b/aql/convertQuery.go index b85757c..ef30f5e 100644 --- a/aql/convertQuery.go +++ b/aql/convertQuery.go @@ -37,7 +37,8 @@ import "git.science.uu.nl/graphpolaris/query-conversion/entity" // } // } func (s *Service) ConvertQuery(JSONQuery *entity.IncomingQueryJSON) (*string, error) { - return &"", nil + str := "hi" + return &str, nil } // // Make sure that no relation mentions a non-existing entity diff --git a/aql/convertQueryBenchmark_test.go b/aql/convertQueryBenchmark_test.go index 9a60725..88ac0e5 100644 --- a/aql/convertQueryBenchmark_test.go +++ b/aql/convertQueryBenchmark_test.go @@ -3,7 +3,7 @@ // © Copyright Utrecht University (Department of Information and Computing Sciences) // */ -// package aql +package aql // import ( // "encoding/json" diff --git a/aql/convertQuery_test.go b/aql/convertQuery_test.go index 105f900..830e9f8 100644 --- a/aql/convertQuery_test.go +++ b/aql/convertQuery_test.go @@ -3,7 +3,7 @@ // © Copyright Utrecht University (Department of Information and Computing Sciences) // */ -// package aql +package aql // import ( // "encoding/json" -- GitLab