Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aaronwlee/oak-graphql
A simple graphql middleware for oak deno framework.
https://github.com/aaronwlee/oak-graphql
deno graphql graphql-middleware
Last synced: 3 months ago
JSON representation
A simple graphql middleware for oak deno framework.
- Host: GitHub
- URL: https://github.com/aaronwlee/oak-graphql
- Owner: aaronwlee
- License: other
- Created: 2020-05-25T05:22:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-01T10:13:55.000Z (over 1 year ago)
- Last Synced: 2024-04-20T19:44:49.587Z (7 months ago)
- Topics: deno, graphql, graphql-middleware
- Language: TypeScript
- Homepage:
- Size: 166 KB
- Stars: 122
- Watchers: 8
- Forks: 23
- Open Issues: 10
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
- awesome-list - oak-graphql
README
# Read Me
Hello, it's Aaron.
Firstly, I'd like to say thanks for using and loving ```oak-graphql.```Unfortunately, it is nearly impossible to maintain ```oak-graphql.``` because I'm currently serving in the military. It means ```oak-graphql.``` is no longer supported by the author at least until 2022 Nov.
Thus, I need some help! If someone wants to maintain it, please don't hesitate to give me an email.
I want someone can have permission who update and push it to ```deno.land/x```.I hope y'all are doing well in this bad situation.
Regards
Aaron Wooseok Lee
18-July-2021
[email protected]# Oak-GraphQL
[![nest badge](https://nest.land/badge.svg)](https://nest.land/package/oak-graphql)A simple graphql middleware for oak deno framework.
![alt text](https://github.com/aaronwlee/oak_graphql/blob/master/playground.JPG?raw=true "Oak-GraphQL")
! Make sure your playground endpoint indicates same as your URL http://localhost:8080/graphql
![alt text](https://github.com/aaronwlee/oak_graphql/blob/master/mustsame.JPG?raw=true "Oak-GraphQL")
## Simple run
deno run --allow-net --unstable index.ts## Simple example index.ts
```tsimport { Application, Router } from "https://deno.land/x/[email protected]/mod.ts";
import { applyGraphQL, gql, GQLError } from "https://deno.land/x/oak_graphql/mod.ts";const app = new Application();
// Logger
app.use(async (ctx, next) => {
await next();
const rt = ctx.response.headers.get("X-Response-Time");
console.log(`${ctx.request.method} ${ctx.request.url} - ${rt}`);
});// Timing
app.use(async (ctx, next) => {
const start = Date.now();
await next();
const ms = Date.now() - start;
ctx.response.headers.set("X-Response-Time", `${ms}ms`);
});const types = gql`
type User {
firstName: String
lastName: String
}input UserInput {
firstName: String
lastName: String
}type ResolveType {
done: Boolean
}type Query {
getUser(id: String): User
}type Mutation {
setUser(input: UserInput!): ResolveType!
}
`;const resolvers = {
Query: {
getUser: (parent: any, { id }: any, context: any, info: any) => {
console.log("id", id, context);
if(context.user === "Aaron") {
throw new GQLError({ type: "auth error in context" })
}
return {
firstName: "wooseok",
lastName: "lee",
};
},
},
Mutation: {
setUser: (parent: any, { input: { firstName, lastName } }: any, context: any, info: any) => {
console.log("input:", firstName, lastName);
return {
done: true,
};
},
},
};const GraphQLService = await applyGraphQL({
Router,
typeDefs: types,
resolvers: resolvers,
context: (ctx) => {
// this line is for passing a user context for the auth
return { user: "Aaron" };
}
})app.use(GraphQLService.routes(), GraphQLService.allowedMethods());
console.log("Server start at http://localhost:8080");
await app.listen({ port: 8080 });```
## TODO
- [ ] Add cache
- [ ] Enable the upload
- [ ] Enable the JSON scalar## Method
### gql
> [GraphQL-tag](https://github.com/apollographql/graphql-tag)
Parsing GraphQL queries
- `gql` A JavaScript template literal tag that parses GraphQL query strings into the standard GraphQL AST.### GQLError
An error handler
> Example
```ts
throw new GQLError("string");
or
throw new GQLError({type: "General error", detail: "somthing critical!"});
```### applyGraphQL
A Generator which based Attain Router class creates some middlewares for supporting the GraphQL.
> Options
- Router: oak Router module
Due to the version incompatible issue mentioned by (avalero)[https://github.com/avalero], I've decoupled the Router. Thanks :)
- path?: string
A target path that handles the GraphQL post request (__*optional__: default as `/graphql`)
- typeDefs: any
generated type tags by the `gql`
- resolvers: any
An object that handles the queries and mutations
```ts
const resolvers = {
Query: {
getUser: (parent: any, {id}: any, context: any, info: any) => {
// ...query handling function here
},
},
Mutation: {
addUser: (parent: any, {firstName, lastName}: any, context: any, info: any) => {
// ...add user codes here
},
}
}
```
> The resolvers will be received these four parameters
> - parent: The return value of the resolver for this field's parent
> - args: An object that contains all GraphQL arguments provided for this field.
> - context: An object shared across all resolvers that are executing for a particular operation.
> - info: Contains information about the operation's execution state, including the field name, the path to the field from the root, and more.
- context?: (ctx) => any
Send any objects to each resolver (__*optional__)
- usePlayground?: boolean;
enable the playground at get method (__*optional__: default as `true`)