https://github.com/graphql-binding/graphql-binding-example-service
GraphQL Bindings GraphQL server for examples
https://github.com/graphql-binding/graphql-binding-example-service
Last synced: 12 months ago
JSON representation
GraphQL Bindings GraphQL server for examples
- Host: GitHub
- URL: https://github.com/graphql-binding/graphql-binding-example-service
- Owner: graphql-binding
- Created: 2018-08-07T19:16:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-17T16:24:59.000Z (over 7 years ago)
- Last Synced: 2025-03-18T09:48:30.087Z (about 1 year ago)
- Language: JavaScript
- Size: 61.5 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# GraphQL Binding Example
GraphQL Binding for an example Prisma Service
The schema that this binding represents is shown below:
```graphql
type Query {
user(id: ID!): User
users: [User!]!
}
type Mutation {
createUser(name: String!): User!
updateUser(id: ID!, name: String!): User
deleteUser(id: ID!): User
}
type Subscription {
userCreated: User!
}
type User {
id: ID!
name: String!
}
```