Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/beeman/graphql-micros

Playground of a GraphQL server that delivers some commonly used functionality.
https://github.com/beeman/graphql-micros

graphql graphql-yoga gravatar microservice no-issues password prs-welcome unfurl

Last synced: 6 days ago
JSON representation

Playground of a GraphQL server that delivers some commonly used functionality.

Awesome Lists containing this project

README

        

# GraphQL Micros

Playground of a GraphQL server that delivers some commonly used functionality.

## Examples

Try these examples on [graphql-micros.now.sh](https://graphql-micros.now.sh/).

```graphql
query {
# Fetch profile data from remote sites
unfurl(url: "https://github.com/beeman") {
ogp {
image:ogImage { url }
siteName:ogSiteName
type:ogType
title:ogTitle
url:ogUrl
description:ogDescription
}
}
# Password check based on analytics
# and remote check using haveibeenpwned.com api
weak:password(password: "password" remote: true) {
percentage
remote
}
strong:password(password: "[P]a$^2w0rt" remote: true) {
percentage
remote
}
# Generate a Gravatar URL based on the Email address
gravatar(email: "[email protected]" size: 200)
}
```

# MIT License