looker-open-source / pylookml

A pythonic api for automatic lookml
https://pylookml.readthedocs.io/en/latest/introduction.html
MIT License
44 stars 22 forks source link

New filters syntax #34

Closed russlooker closed 3 years ago

russlooker commented 3 years ago

new default filters syntax requires change in the underlying lkml library for parsing and needs to be written as default syntax by pyLookML's renderer

filters: { 
       field:identifier 
       value:"string" 
     } 
filters: { 
      field:identifier2 
      value:"string2" 
    }

becomes

filters: [
     identifier: "string", 
     identifier2:"string2"
    ]
russlooker commented 3 years ago

fixed in version 3.0.0