Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geoffreyhervet/test-typegrahqpl
https://github.com/geoffreyhervet/test-typegrahqpl
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/geoffreyhervet/test-typegrahqpl
- Owner: GeoffreyHervet
- Created: 2020-07-30T15:36:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T22:28:39.000Z (about 2 years ago)
- Last Synced: 2023-03-22T14:49:10.479Z (almost 2 years ago)
- Language: TypeScript
- Size: 335 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
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
}
}
```