const shippingMethods2 = await this.dbService.db .selectFrom('ShippingMethod') .where(sql.val(DBStore.PUBLIC), '=', sql`ANY(${sql.ref('stores')})`) .where('minAmount', '>=', 0) .where('minWeight', '>=', 0) .selectAll() .execute();