changeset 35:b47614a9d23d

fix cut and paste error.
author casties
date Wed, 03 Feb 2016 18:40:30 +0100
parents e19d4c5e10a1
children e8dc6a4c6773
files app/query-mode.ts app/query.service.ts
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/app/query-mode.ts	Wed Feb 03 16:18:46 2016 +0100
+++ b/app/query-mode.ts	Wed Feb 03 18:40:30 2016 +0100
@@ -9,6 +9,7 @@
     {id: 'att_contains_norm', label: 'Attribute (contains normalized)'},
     {id: 'att_num_range', label: 'Attribute (number range)'},    
     {id: 'relation_is', label: 'Relation type is'},
+    {id: 'id_is', label: 'Object ID is'}
 ];
 
 export var FIRST_QUERY_MODES: QueryMode[] = [
--- a/app/query.service.ts	Wed Feb 03 16:18:46 2016 +0100
+++ b/app/query.service.ts	Wed Feb 03 18:40:30 2016 +0100
@@ -13,8 +13,8 @@
 @Injectable()
 export class QueryService {
         
-    //public neo4jBaseUrl = 'https://ismi-dev.mpiwg-berlin.mpg.de/neo4j-ismi/db/data';
-    public neo4jBaseUrl = 'http://localhost:7474/db/data';
+    public neo4jBaseUrl = 'https://ismi-dev.mpiwg-berlin.mpg.de/neo4j-ismi/db/data';
+    //public neo4jBaseUrl = 'http://localhost:7474/db/data';
     public neo4jAuthentication = {'user': 'neo4j', 'password': 'neo5j'};
     public typeAttribute = '_type';
     public excludedAttributes = {};