comparison app/query-mode.ts @ 15:f84ff6781e57

added att_num_range query type.
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Thu, 21 Jan 2016 17:26:22 +0100
parents 6989cd00e8d7
children 4c046f3244ec
comparison
equal deleted inserted replaced
14:7dc7ea95ca26 15:f84ff6781e57
3 label: string; 3 label: string;
4 } 4 }
5 5
6 export var QUERY_MODES: QueryMode[] = [ 6 export var QUERY_MODES: QueryMode[] = [
7 {id: 'type_is', label:'Object type is'}, 7 {id: 'type_is', label:'Object type is'},
8 {id: 'att_contains', label: 'Attribute'}, 8 {id: 'att_contains', label: 'Attribute (contains)'},
9 {id: 'att_contains_norm', label: 'Attribute (normalized)'}, 9 {id: 'att_contains_norm', label: 'Attribute (contains normalized)'},
10 {id: 'att_num_range', label: 'Attribute (number range)'},
10 {id: 'relation_is', label: 'Relation type is'} 11 {id: 'relation_is', label: 'Relation type is'}
11 ]; 12 ];
12 13