Quick question :slightly_smiling_face: What’s the ...
# prisma-whats-new
h
Quick question 🙂 What’s the difference between something like
Copy code
extend type Query {
  feedback(userId: String!, feedback: String!)
}
and
Copy code
query update($node_id: ID, $user_id: ID) {
  SomeJournalEntryExists(filter: { id: $node_id, user: { id: $user_id } })
}
The first is syntax from the resolver examples for the GC CLI resolvers, and the latter is auto generated from when we ejected the project to the CLI.