# HG changeset patch # User casties # Date 1454521230 -3600 # Node ID b47614a9d23dcc5e19d269040bdf019d825e3fe6 # Parent e19d4c5e10a196347bc69ceda331294e4778d437 fix cut and paste error. diff -r e19d4c5e10a1 -r b47614a9d23d app/query-mode.ts --- 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[] = [ diff -r e19d4c5e10a1 -r b47614a9d23d app/query.service.ts --- 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 = {};