comparison app/query-mode.ts @ 32:4c046f3244ec

new 'id_is' query type. new '_type' attribute.
author casties
date Tue, 02 Feb 2016 19:20:44 +0100
parents f84ff6781e57
children e19d4c5e10a1
comparison
equal deleted inserted replaced
31:4926885f8a99 32:4c046f3244ec
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 (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 {id: 'id_is', label: 'Object ID is'}
12 ]; 13 ];
13 14