view app/query-mode.ts @ 23:f7a7014abf5c

normalization service implementation.
author casties
date Tue, 26 Jan 2016 16:28:51 +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'}
];