An open API service indexing awesome lists of open source software.

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

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!
}
```