You can discuss the latest 1.7 release here :sligh...
# orm-help
n
You can discuss the latest 1.7 release here 🙂 https://prisma.slack.com/archives/C0MQJ62NL/p1524593175000578
parrotwave6 1
👍 1
Let us know if you have any questions 😊
l
I've tried so, so hard to avoid dealing with Docker. 😢 I guess that time is over. Can anyone recommend a basic tutorial?
n
prisma init
docker-compose up -d
is basically the same as former
prisma local start
🙂
w
Is the end goal to make Prisma even more flexible and less abstracted to appeal more developer?
n
I just tried upgrading via yarn and 1.7 is only listing beta versions - any advice?
n
are any of these changes breaking?
n
@nhuesmann can confirm, looking into it right now. Thanks! 🙂
n
Yep!
n
@weakky with this release we tried to simplify the biggest hurdles and confusions that were brought up from the community. Two big factors were problems with the Docker setup and confusion around server/service/stage.
👍 2
@noahdavis, the changes in
prisma.yml
will need to be adjusted in your setup, but the CLI helps you with that adjustment with your first
prisma deploy
n
awesome. Thanks Nilan 🙂
n
@nhuesmann
1.7.0
is published now:
npm install prisma
n
@nilan 🙌 and confirmed!
b
on the server/service/stage and architecture, I am still confused to run prisma is it 2 servers..
1 graphql server that is exposed as the main app api to world/web and a backend internal to VPC type service that is the Prisma server ? can they be combined into one?
can we just use prisma as an ORM between GraphQL server and the SQL DB... ?
n
those are all great questions, thanks @Ben! 🙂 Indeed, the Prisma server and the GraphQL Server are two distinct entities. I recommend a read of the introduction chapter of our documentation: https://www.prisma.io/docs/reference/introduction/what-is-prisma-apohpae9ju
b
ok thanks I will check it out. Without reading fully perhaps you could answer a few other basic questions before I can spend a lot of time with this....
are SQL params binded so DB can cache queries properly (like join-monster doesn't do this and its bad)
n
Sure 🙂 Please start a new conversation in #general, or here: https://www.graph.cool/forum/c/questions
b
do all security filters and paging get limited at db level so prisma server isn't brining in more than it needs or some of that happeing in memory
ok
j
I cannot recall but I think
prisma init
before
1.7
let us initialize with boilerplates and examples. Is this not the case anymore?
n
That's correct! You can use graphql create to instantiate a boilerplate project