Does the Prisma JS client/ORM/data mapper use the ...
# orm-help
s
Does the Prisma JS client/ORM/data mapper use the HTTP protocol to communicate with the Prisma Data Platform? If so, is it possible to forego the Prisma JS client/ORM/data mapper and use the HTTP API directly? I can't find any documentation on it
j
Fundamentally that is not supported - this is not a public API to be consumed and used.
But of course no one will be able to stop you from looking at the source code of Prisma Client JS and understand how it works, then build your own Client to use the same protocol.
👌 1
Just be aware, this might break with any Prisma release as there are not stability guarantees as there are with Prisma Client's API.