Simple Query
Simple Query against Products Master Data Table.
Provide table from
.tables()in.source().
Code
def qapi = api.queryApi()
def p = qapi.tables().products()
return qapi.source(p, [p.sku(), p.label], p.sku().equal("10000001"))
.stream { it.collect { it } }Result
sku | label |
|---|---|
10000001 | Spare part 10000001 |
See Also
Found an issue in documentation? Write to us.