Patrick DeVivo
Patrick DeVivo
I've been encountering this issue as well (a need for "dynamic" queries where fields are only known at runtime). I recently started [this project](https://github.com/mergestat/fluentgraphql) as a way to help address...
curious about this issue as I'm running into a similar need. any updates here from the kallax maintainers?
@mberrueta any update here?
Hi @mberrueta, do we know if this has been resolved?
@jasmingacic @t0mk any thoughts on how this should be implemented? We could potentially add a `QueryParams` field to the `ListOptions` struct, which is a list of query params that get...
@amenowanna for visibility. Seems like the API reporting an error incorrectly
I'd like to voice support for this feature, as it's something that would be very useful generally, and also for a specific use case I have in mind (regularly executing...
I just encountered the same issue, and "resolved" it for now by supplying the following [override](https://docs.sqlc.dev/en/stable/reference/config.html#per-column-type-overrides): ```yaml overrides: - column: "table_name.column_name" go_type: "database/sql.NullString" ```
No problem! Not a "noob" question at all 😃 . Here's the quick answer: ```sql SELECT * FROM github_org_repos('mergestat') repo, github_issues('mergestat', repo.name) ``` That should iterate over all repos belonging...
This has been included in the [`v0.5.7` release](https://github.com/mergestat/mergestat/releases/tag/v0.5.7)