Brett Willis

Results 21 comments of Brett Willis

@kishorenc you're right, `filter_by` doesn't support prefix match either. What I was seeing as "prefix match" was actually matching a complete word/token, because there was a token word/separator (I was...

Understood. It would be great to add to your backlog, thank you! In the meantime, I work around this by duplicating/splitting out into all the different tokens required to support...

Side question: There seems to be a very low request rate quota on this `/accounts:update` API. I can't find it explicitly stated but it feels like 10 req/second, as per...

Hi all, please see this branch in my fork https://github.com/brettwillis/fastify-plugin/tree/fix-typings-repros, and find the directories named: - types-repro-commonjs-new (this PR with CommonJS setup) - types-repro-commonjs-old (current typings with CommonJS setup) -...

@climba03003 apologies for the delay, it's pretty busy on my end. I've added tests for the the different import styles, but I'm unsure how to go about invoking with different...

Ok, that sounds reasonable. So then the action required here is to move the `` into the default/fallback content of the `indicator` slot. Current code is: ${this.icon != null ?...

Proposed configuration API, add a `populate` field to relation attributes: ```JavaScript { attributes: { owner: { model: "owner", autoPopulate: true, // Not to be confused with existing config for REST...

How to handle or support "deep" populating? Consider if the `owner` model has a `photo` relation, and we want the photo's `url` populated on the original object, and customise the...

@rrubio thanks, it would be great to have your support! The end goal is getting the tests to pass. Most of the failures are related to #23 and #15, which...