We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d27dfa commit 158c821Copy full SHA for 158c821
README.md
@@ -1,3 +1,27 @@
1
# GraphQL Binding Example
2
3
GraphQL Binding for an example Prisma Service
4
+
5
+The schema that this binding represents is shown below:
6
7
+```graphql
8
+type Query {
9
+ user(id: ID!): User
10
+ users: [User!]!
11
+}
12
13
+type Mutation {
14
+ createUser(name: String!): User!
15
+ updateUser(id: ID!, name: String!): User
16
+ deleteUser(id: ID!): User
17
18
19
+type Subscription {
20
+ userCreated: User!
21
22
23
+type User {
24
+ id: ID!
25
+ name: String!
26
27
+```
0 commit comments