orange-orm 5.3.6 → 5.4.0-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -754,14 +754,14 @@ const db = map.sqlite('demo.db');
754
754
  getRows();
755
755
 
756
756
  async function getRows() {
757
- const orders = await db.order.getMany([
757
+ const orders = await db.order.getMany({
758
+ where: () => [
758
759
  {id: 1},
759
760
  {id: 2}
760
- ],
761
- {
762
- customer: true,
763
- deliveryAddress: true,
764
- lines: true
761
+ ],
762
+ customer: true,
763
+ deliveryAddress: true,
764
+ lines: true
765
765
  });
766
766
  }
767
767
  ```