``` type Test implements Node { content: String!...
# prisma-whats-new
u
Copy code
type Test implements Node {
  content: String!
}
Copy code
type Test implements Node {
  content: String!
  createdAt: DateTime!
  id: ID! @isUnique
  updatedAt: DateTime!
}
Copy code
_allTestsMeta(filter: TestFilterorderBy: TestOrderByskip: Intafter: Stringbefore: Stringfirst: Intlast: Int): _QueryMeta!
allTests(filter: TestFilterorderBy: TestOrderByskip: Intafter: Stringbefore: Stringfirst: Intlast: Int): [Test!]!
Test(id: ID): Test
a
What is the 'how' part you want to know?
u
For example, “Test” creates “allTest”. In particular, there are many Mutations. Is there any material that understands this regularity? Can I only know these on Playground?
I’m afraid that English is not good.
a
You can open the DOCS tab in the Playground to see those, or you can export the schema from the Playground. That contains all generated queries and mutations too.
u
Thank you.
😎 1