One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| import asyncio | |
| from functools import wraps | |
| def dec(fn): | |
| @wraps(fn) | |
| async def wrapper(*args, **kwargs): | |
| print(fn, args, kwargs) # <function foo at 0x10952d598> () {} | |
| await asyncio.sleep(5) |
| import { buildSchema, graphql } from "graphql"; | |
| // Construct a schema, using GraphQL schema language | |
| let graphqlSchema = buildSchema(` | |
| type Query { | |
| recipes: [Recipe] | |
| recipes_by_pk(id: Int!): Recipe | |
| } | |
| type Recipe { | |
| id: ID! |