https://github.com/salmandabbakuti/yoga-conditional-schema
Condtionally loading graphql schema
https://github.com/salmandabbakuti/yoga-conditional-schema
api-server graphql graphql-schema graphql-server graphql-yoga nodejs
Last synced: 19 days ago
JSON representation
Condtionally loading graphql schema
- Host: GitHub
- URL: https://github.com/salmandabbakuti/yoga-conditional-schema
- Owner: Salmandabbakuti
- License: mit
- Created: 2023-01-02T16:50:22.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-16T23:13:07.000Z (over 2 years ago)
- Last Synced: 2025-06-03T08:29:01.983Z (4 months ago)
- Topics: api-server, graphql, graphql-schema, graphql-server, graphql-yoga, nodejs
- Language: TypeScript
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# graphql-yoga-conditional-schema
Graphql Yoga - Loading graphql schema condtionally
```
yarn installyarn dev
```##### Sample Queries
```graphql
query private {
private
}query public {
public
}
```