diff --git a/aql/convertQuery.go b/aql/convertQuery.go
index 1e6c635e7742acf5e62a7be420c6d0897a789953..9e17331b05bea5e565b0b63b8c4ea67fd84b55a5 100644
--- a/aql/convertQuery.go
+++ b/aql/convertQuery.go
@@ -15,29 +15,29 @@ ConvertQuery converts an IncomingQueryJSON object into AQL
 func (s *Service) ConvertQuery(JSONQuery *entity.IncomingQueryJSON) (*string, error) {
 
 	// Check to make sure all indexes exist
-	// How many entities are there
-	numEntities := len(JSONQuery.Entities) - 1
-	// How many relations there are
-	numRelations := len(JSONQuery.Relations) - 1
+	// The largest possible id for an entity
+	largestEntityID := len(JSONQuery.Entities) - 1
+	// The largest possible id for a relation
+	largestRelationID := len(JSONQuery.Relations) - 1
 
 	// Make sure no entity should be returned that is outside the range of that list
 	for _, e := range JSONQuery.Return.Entities {
 		// If this entity references an entity that is outside the range
-		if e > numEntities || e < 0 {
+		if e > largestEntityID || e < 0 {
 			return nil, errors.New("non-existing entity referenced in return")
 		}
 	}
 
 	// Make sure that no relation mentions a non-existing entity
 	for _, r := range JSONQuery.Relations {
-		if r.EntityFrom > numEntities || r.EntityTo > numEntities {
+		if r.EntityFrom > largestEntityID || r.EntityTo > largestEntityID {
 			return nil, errors.New("non-exisiting entity referenced in relation")
 		}
 	}
 
 	// Make sure no non-existing relation is tried to be returned
 	for _, r := range JSONQuery.Return.Relations {
-		if r > numRelations || r < 0 {
+		if r > largestRelationID || r < 0 {
 			return nil, errors.New("non-existing relation referenced in return")
 		}
 	}
@@ -253,7 +253,7 @@ func createRelationLetWithFromEntity(relation *entity.QueryRelationStruct, name
 
 		// Add a WITH statement if the collection of entityTo is not yet included
 		if (*entities)[(*relation).EntityFrom].Type != (*entities)[(*relation).EntityTo].Type {
-			header = fmt.Sprintf("WITH %v\n %v", (*entities)[(*relation).EntityTo].Type, header)
+			header = fmt.Sprintf("%v\n\tWITH %v", header, (*entities)[(*relation).EntityTo].Type)
 		}
 	}