I’m using prisma and I have this types ``` type Us...
# prisma-whats-new
p
I’m using prisma and I have this types
Copy code
type User {
  id: ID!
  email: String!
  location: Location!
}

type Location {
  id: ID!
  lat: Float!
  lng: Float!
  user: User
  street: String
  postalCode: String
  city: City
}

type City {
  id: ID!
  name: String!
  country: Country!
  locations: [Location!]!
  areas: [Area!]!
}