Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnbiundo/auction-working
https://github.com/johnbiundo/auction-working
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/johnbiundo/auction-working
- Owner: johnbiundo
- Created: 2020-03-24T16:40:47.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-12T01:43:55.000Z (about 2 years ago)
- Last Synced: 2024-11-10T15:50:51.326Z (2 months ago)
- Language: TypeScript
- Size: 541 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Auctioneer Server
## Description
[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
## Installation
```bash
$ npm install
```## Running the app
```bash
# development
$ npm run start
```### Queries and Subscrips
Subscrip
```gql
subscription test {
testSub {
text
}
}
```Query
```gql
query test {
test {
text
}
}
```