Connected to the prisma database with prisma user ...
# orm-help
a
Connected to the prisma database with prisma user but the select statements won't retrieve the data in there. Anyone with an idea on how to go about it? I'm using postgres 10.5 with container(docker) @Harshit
h
Is there any data there yet?
Also put a ; at the end
a
Alright
Yes, there is some data
I have successfully made atleast three mutations. I can even do queries in the GraphQL playground on localhost:4000
That's the error I'm now getting
@Harshit
h
Try
default$default.Event
a
Similar error😕
@Harshit
@Harshit isn't it strange for the tables not to Exist?
h
\dt default$default.
please show me the output of this
m
postgres lowercases everything in your query unless you escape it properly
🙌 1
try
Select * From “Event”
or maybe
Select * From “default$default”.“Event”
drove me mad at first as well 😄
a
@Harshit
h
Please try Marcus' solution
Select * From “default$default”.“Event”;
a
On it
😅 @marcus You deserve a medal. 😂
🙌 3
@Harshit thanks, you did it for me again!
😊 1
h
If you can please use a GUI to make this easy
a
Yeah, I'll right away use the ones you recommend earlier