An Apollo GraphQL server built on top of Calendly's V2 REST API.
Try it out at https://calendgraph.herokuapp.com
# install dependencies
npm install
# build application
npm run build
# start application
npm start
Once the app is running, visit http://localhost:4000 to start testing Calendgraph:
# Add an Authorization header with "Bearer YOUR_CALENDLY_API_TOKEN" before running the query below
{
usersMe {
resource {
name
email
}
}
}