dzhelezov

Results 32 comments of dzhelezov

Hi! Yes, the `index.ts` already includes the implementations: `orphanedTypes: [EventImpl, ExtrinsicOnlyEventImpl]` Also, if I just remove one of the fields in `IEvent`, the output schema looks as it should, so...

Hi, congrats on getting close to V3! Here are a few nice-to-haves that we had to work around ourselves while using warthog. - Upgrade pg/pgtools lib. The current version makes...

> @dzhelezov thanks for the feedback! Will take all of this into consideration. For the BigInt support, have you seen this example in the examples folder? > > https://github.com/goldcaddy77/warthog/blob/main/examples/02-complex-example/src/modules/user/user.model.ts#L99-L100 >...

I'm also curious if there are plans to support cross-relation filters as described by OpenCRUD https://www.opencrud.org/#sec-Cross-relation-filters ? We rolled our own quick-and-dirty implementation but it's not very scalable atm.

Simply import `User` from say https://github.com/goldcaddy77/warthog/blob/main/examples/01-simple-model/src/user.model.ts and try to save it: ``` import { User } from '01-simple-model/dist/user.model' import { getManager } from 'typeorm' async function createUser() { const u...

@bedeho Can you provide more input/context on this issue?

How do we guarantee that the resulting query node is deterministic and all the instances have exactly the same data? With ipfs this is sort of true due to its...

This will be fixed once hydra_v1 is rebased into master

Probably you should enable subscriptions in Warthog also. The (generated) query-node does expose the processor stats via a GraphQL subscription, so perhaps it may be helpful to have a look...

@metmirr Is it implemented in v3?