Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/geoffreyhervet/test-typegrahqpl


https://github.com/geoffreyhervet/test-typegrahqpl

Last synced: 5 days ago
JSON representation

Awesome Lists containing this project

README

        

# Start script

```sh
npm ci; npm start
```

# GraphQL request

```gql
{
recipes {
title
foo {
# ocko #{
renamed: a
b # le champs b
# c
d
}
}
}
```

# See output

```
{
renamed: a
b
d
}
```

easy to send it to a service

```gql
{
product(uuid: "uuid") {
renamed: a
b
d
}
}
```