I think i figured it out - just copy/paste this fr...
# prisma-whats-new
w
I think i figured it out - just copy/paste this from the generated file?
Copy code
itemsConnection(
    where: ItemWhereInput
    orderBy: ItemOrderByInput
    skip: Int
    after: String
    before: String
    first: Int
    last: Int
  ): ItemConnection!
n
hey - yep that's it 🙂
w
yessss
is there anyway to import this without the copy/paste? like expose it to query
n
If you really want to expose it 1-1, that's the best way. Oftentimes you want to change the way the query is exposed, then you would define your own type (instead of
ItemConnection!
) that transforms the query structure