regarding `graphql-import`, is there an extra cost...
# orm-help
p
regarding
graphql-import
, is there an extra cost to importing all types (
import * from "./generated/prisma.graphql"
) vs selectively importing specific types?
t
Nope, * only takes types which are used
👍 1
p
thanks tim!