Mercurial > hg > ng2-query-ismi
view app/query-mode.ts @ 17:f6af2c8347de
send multiple cypher queries in one request.
author | Robert Casties <casties@mpiwg-berlin.mpg.de> |
---|---|
date | Thu, 21 Jan 2016 19:30:57 +0100 |
parents | f84ff6781e57 |
children | 4c046f3244ec |
line wrap: on
line source
export interface QueryMode { id: string; label: string; } export var QUERY_MODES: QueryMode[] = [ {id: 'type_is', label:'Object type is'}, {id: 'att_contains', label: 'Attribute (contains)'}, {id: 'att_contains_norm', label: 'Attribute (contains normalized)'}, {id: 'att_num_range', label: 'Attribute (number range)'}, {id: 'relation_is', label: 'Relation type is'} ];