view app/query-step.ts @ 36:e8dc6a4c6773

only show possible incoming/outgoing relation types.
author casties
date Thu, 11 Feb 2016 17:06:40 +0100
parents 34cd764e234b
children
line wrap: on
line source

import {QueryMode} from './query-mode';

export class QueryStep {
    public mode: QueryMode;
    
    public params: any;
    
    public resultInfo: string;
    
    constructor (mode: QueryMode, params: any) {
        this.mode = mode;
        this.params = params;
    }
}