Skip to content

Commit 158c821

Browse files
committed
feat(binding): binding example beginnings
1 parent 8d27dfa commit 158c821

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
11
# GraphQL Binding Example
22

33
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

Comments
 (0)