Hello to y'all. I successfully set up the prisma s...
# orm-help
a
Hello to y'all. I successfully set up the prisma server for developing locally on my computer according to the "Local Prisma Setup" on the Prisma website. I can can perform a basic query and mutation and my data is persisted in the postgres database running in a docker container. However, once I connect to the database server as a prisma user, I don't see the data I'm persisting anywhere. I've searched all databases on the server but I can't seem to find the data. Any ideas on how to retrieve or see this data on the terminal? I really need a solution for this issue. If you have an idea, kindly assist. @Harshit
h
hi prisma doesn't use the default public schema to store your data.
to see the data do
\dn
grab your schema name(will be according to your service url) default is
default$default
SET search_path TO default$default;
now run \dt
a
Thanks, I now see the table relation named Event. But I don't seem to find the data I persisted. You know how I can retrieve it?