Arnab
06/20/2018, 4:40 PMprisma=# \d
Did not find any relations.
I have set up the following types and inserted one object of type `Speaker`:
type Speaker {
id: ID! @unique
firstname: String!
lastname: String!
email: String
}
type Talk {
id: ID! @unique
speaker: Speaker!
description: String
title: String
}