Ian VanSchooten
Ian VanSchooten
@samselikoff do you see any glaring issues with this plan? It seems reasonable to me.
@samselikoff what do you think about making @cah-briangantzler a collaborator? He's doing more work on this package than anyone else at this point, and while I'm happy to keep reviewing...
I have no idea if I've done it correctly, but my approach seems to be working for me so far (caveat: I don't have fancy models or factories, but they...
Hi, can you please add some details about why this change is necessary?
Thanks for taking a crack at this, @wagenet. I'd love to get the types cleaned up, but if I recall correctly, this PR had some failing type tests. If you're...
I've just hit this as well. It seems that the request doesn't have queryParams initially (can observe using `console.log(JSON.stringify(request))`, but it _does_ get added eventually, as you can see if...
For now, I am working around this issue using: ``` const url = new URL(request.url); const params = new URLSearchParams(url.searchParams); return params.get('skipMirage') === 'true'; ``` I think that is a...
No, I only have `models`, `factories`, `serializers`, `environment`, and `routes`.
FWIW, there have been a few attempts at it so far: https://github.com/miragejs/miragejs/pull/525 https://github.com/miragejs/miragejs/pull/797 https://github.com/miragejs/miragejs/pull/1019 Maybe they can provide some clues as to how to go about it.
Hi there, have you tried typing your models as `Model.extend`, without the `Partial`? You'll need to provide default values for any static properties. Also, I find that I need to...