Scott Twiname
Scott Twiname
## Description Immutable mode is a runtime setting that could be set when first running a project (like how historical is set). This would limit entities on the DB to...
## Background Currently historical indexing works by having a hidden column on tables with the block height range. This doesn't work for multichain where each chains blocks are produced independently....
Currently .env is only supported in ts manifests. Support should be extended to mapping handlers and when building the project it should resolve the appropriate variables. This requires updating the...
# Description Updates codegen and store interfaces to make getByField(s) methods require specifying the limit. This is a breaking change at the type level only. NOTE some tests are failing...
# Description Provides an option to disable the cache for the store. ## Details * Define/update and interfaces to provide abstractions to the Model, Metadata and POI interfaces as well...
The store cache offers a lot of performance increase but it also adds a lot of complexity, to simplify running and be able to diagnose any issues related to the...
### Background Currently all entities need to have `id: ID` to follow the graphql spec. Internally with postgres this creates a TEXT primary key column. This can have some limitations...
## Description Some store methods have paging and limit responses to 100 items by default. This can be adjusted with the `--query-limit` flag. But the interface of these functions has...
https://github.com/denoland/deno/pull/26101 added support for specifying the `import` permission on web workers but the types were not updated to match the change.