Matteo Ferrando
Matteo Ferrando
The `fetchAll` method doesn't document a `withRelated` option, yet the [`fetchPage`](http://bookshelfjs.org/index.html#Model-instance-fetchPage) method documents that it sends the `withRelated` option to `fetchAll`. Does `fetchAll` accept the `withRelated` option or not?
We have a DB of many schemas and different targets. Each target has a `uri` option like (reduced version of sqitch.conf): ``` [target "central"] uri = db:pg://central@localhost:5432/db plan_file = central/central.plan...
The example of setoid uses equality between the elements of the array but it assumes there's an equality operator (`==`) between the elements of the setoid. I would do the...
# TODO - [ ] add secrets
**Context** Sometimes a step is important in the DAG but does not really generate data in the data warehouse. How can we introduce them in fal?
**Describe the bug** I'm trying to set up a fal script to send a message to slack if a source fails a freshness test (using the functionality added in [this...
**Describe the bug** When a FalDbt object is instantiated, it touches some data information on dbt's side, like the profile.yml that was read. We need to encapsulate this per instance....
I have a dataframe with date values and when writing it with `write_to_model` (same for `write_to_source`) it fails not knowing what to do with it. I tried some `dtype` values...
**Is your feature request related to a problem? Please describe.** The fal runtime offers great easy usages like access to dbt functions (e.g. `ref`, `source`), automatically reading dbt profiles, etc....
If we write in the yml file: ```yaml models: - name: other_model meta: fal: scripts: after: - fal_scripts/complete_other_model.py ``` Then to select said script it should be (with any graph...