https://github.com/owengombas/graphql-composer
🌐 Create your GraphQL API using composition!
https://github.com/owengombas/graphql-composer
api composition framework graphql types typescript
Last synced: about 1 year ago
JSON representation
🌐 Create your GraphQL API using composition!
- Host: GitHub
- URL: https://github.com/owengombas/graphql-composer
- Owner: owengombas
- License: mit
- Created: 2020-06-04T17:38:38.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T22:18:45.000Z (about 3 years ago)
- Last Synced: 2025-02-18T08:40:20.104Z (about 1 year ago)
- Topics: api, composition, framework, graphql, types, typescript
- Language: TypeScript
- Homepage: https://owencalvin.github.io/graphql-composer-decorators/
- Size: 1.88 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
graphql-composer
Create your GraphQL API using composition!
# graphql-composer-decorators
GraphQL comes to revolutionize backend development, the fact that you have to declare types is something very useful, however it can lead to code duplication and therefore affect the stability of your application. Indeed, based on the DRY (Don't Repeat Yourself) principle, the fact of declaring several times the same element in a different way should be avoided, because when this element changes it is necessary to modify several parts of code, so if only one of these parts is omitted it can cause problems in your application and the more it grows the harder it will be to maintain it.
### [Go to the documentation](https://owencalvin.github.io/graphql-composer-decorators/)
# graphql-composer
The `graphql-composer-decorators` module is broken down into two modules instead of making one heavier, `graphql-composer` simply provides a compositing API which allows you to create an API using the "builder" design pattern and compositing.
> Documentation for this module will be available soon.