Results 140 comments of David Lutterkort

It's choking on the `''`; the `simple` lens that parses that wants to have a 'word' there, i.e. something that matches `/[A-Za-z0-9_.-]+/` Is having quotes there something that only happens...

That is actually possible already: you can say `(Sys.getenv "MYVARIABLE")` to read an environment variable.

This looks good. A few small comments: * the table should be called `data_source$` since `$` is legal in PG identifiers and can't clash with names coming from GraphQL (otherwise...

Another option for migration would be to do it during `start_subgraph_deployment`: if the `data_sources` table does not exist yet, create it and populate it from the current table. It might...

That's why I suggested to do it in `start_subgraph_deployment` since you know indexing isn't happening at that point. Yes, it will slow down startup; you are right that it'll be...

I think we should go even one step further: nothing outside of `chain/ethereum` should be using `H256`

The main headache with import/export is defining a good format for transferring the data; it would be desirable to make that format usable for both dump/restore and for substreams. That...

It's a limitation in how we deal with ids for interfaces: we insist that once an id has been used, it's only ever used for the type it was initially...

@mihoward21 how important is it that you have a `User` and a `Split` with the same id? You could work around this issue by using different ids, and having an...

The main reason why `graphman` doesn't work that way is authentication: with the CLI tool, authn is punted to the config file where you proved that you can get to...