comparison app/query-mode.ts @ 34:e19d4c5e10a1

restricted selectable options for first query step.
author casties
date Wed, 03 Feb 2016 16:18:46 +0100
parents 4c046f3244ec
children b47614a9d23d
comparison
equal deleted inserted replaced
33:739eb38ec2a2 34:e19d4c5e10a1
7 {id: 'type_is', label:'Object type is'}, 7 {id: 'type_is', label:'Object type is'},
8 {id: 'att_contains', label: 'Attribute (contains)'}, 8 {id: 'att_contains', label: 'Attribute (contains)'},
9 {id: 'att_contains_norm', label: 'Attribute (contains normalized)'}, 9 {id: 'att_contains_norm', label: 'Attribute (contains normalized)'},
10 {id: 'att_num_range', label: 'Attribute (number range)'}, 10 {id: 'att_num_range', label: 'Attribute (number range)'},
11 {id: 'relation_is', label: 'Relation type is'}, 11 {id: 'relation_is', label: 'Relation type is'},
12 ];
13
14 export var FIRST_QUERY_MODES: QueryMode[] = [
15 {id: 'type_is', label:'Object type is'},
12 {id: 'id_is', label: 'Object ID is'} 16 {id: 'id_is', label: 'Object ID is'}
13 ]; 17 ];
14