Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagegroovy
def qapi = api.queryApi()

def p = qapi.tables().products()

return qapi.source(p, [p.sku(), p.label], p.sku().equal("MB-0001"))
        .stream { it.collect { it } }

...