Anyone has any experience with <https://github.com...
# orm-help
b
Anyone has any experience with https://github.com/prisma/http-link-dataloader ? Is it still being maintained?
h
Hi, Prisma client internally uses that. In the near future we might add alias based batching to it
b
Thanks! So could it be used to build a batched schema stitching api gateway?
What do you mean by alias based batching?
h
It batches requests to the API so I don't think you should have any problem using it as a client but not server side implications
b
So you advise against using it in a server-side service?
h
You can definitely use it on server (Prisma does it)
b
Thank you! I am going to try and use it!
Okay I've looked into it
And I have a couple of ideas / questions
When do you plan to add support for "aliased based" batching?
And what about adding a mode where you can transform many "oneQuery(id: "<id>")" queries into a manyQuery(id: ["<id1>", "<id2>", "<id3>"])
h
I can't give an ETA, but if you can work on this that would be awesome. This project is not the topmost priority right now, please understand
b
And if things are named "properly" (using the prisma style) it could even be applied automatically!
Okay, I understand. What do you think about this last proposal?
h
We automatically do that in the prisma core ie server
b
And could it be used on the layer we (users of prisma) put on top of prisma?
h
Are you talking about the package or the query optimization
b
Yes, the query optimization