OINO TS
    Preparing search index...

    Class OINODbSqlFilter

    Class for recursively parsing of filters and printing them as SQL conditions. Supports three types of statements

    • comparison: (field)-lt|le|eq|ge|gt|like(value)
    • negation: -not(filter)
    • conjunction/disjunction: (filter)-and|or(filter) Supported conditions are comparisons (<, <=, =, >=, >) and substring match (LIKE).
    Index

    Constructors

    Methods

    Constructors

    Methods

    • Constructor for OINODbSqlFilter as parser of http parameter.

      Supports three types of statements:

      • comparison: (field)-lt|le|eq|ge|gt|like(value)
      • negation: -not(filter)
      • conjunction/disjunction: (filter)-and|or(filter)

      Parameters

      • filterString: string

        string representation of filter from HTTP-request

      Returns OINODbSqlFilter