Will Squire

Results 18 issues of Will Squire

In the example `id: In(ids as string[])` is used to query the database, however I don't believe this guarantees the order of the IDs? Although I could be wrong. EDIT:...

In your examples, I believe this: ```ts return new DataLoader(keys => this.accountService.findByIds(keys) ) ``` Can be this: ```ts return new DataLoader(this.accountService.findByIds) ``` If it's helpful.

I'm using `embed_migrations!()` and `embedded_migrations::run()` to run pending migrations on startup, but I've hit a wall that's tricky to solve. In a nutshell I'd like to seed the database with...

enhancement

Creating a dynamic page from a `document` loses all typing. Querying `document(hydrateRelationships: true)` just returns JSON, rather than strict types. In strapi, this keeps the types and I would do...

Using the infinite loader implementation, if I scroll to the end of the list and then change something to retrieve a newly filtered or sorted list, then it may or...

released

Expected the following config would result in `decoding="async"` being added to all images: ``` default: { decoding: "async", densities: [1,2,3], webp: true, }, ``` This didn't happen. Also `densities` didn't...

`invoices.retrieveUpcoming` returns `Stripe.Invoice`, but the upcoming invoice doesn't return an `id`. `id` should either be optional or this should be a seperate type.

future
type definition

Reading through the documentation I can't work out if this has a pooling mechanism for requests and executes in roder or not. I.e. if the connection goes offline, does it...

Using this inside of Kubernetes returns `Forbidden` without any other detail, both locally and on the server cluster. Works inside docker/docker compose. Other services accessing external APIs work. All services...

I get the following for `new Sitemapper({ url: 'https://www.google.com/sitemap.xml' })`: ```sh Error: The `onCancel` handler was attached after the promise settled. ```