https://github.com/stradivario/gapi-voyager
Graphql Voyager Explorer get mind mapping introspection based on your schema with @Gapi Server
https://github.com/stradivario/gapi-voyager
Last synced: 8 months ago
JSON representation
Graphql Voyager Explorer get mind mapping introspection based on your schema with @Gapi Server
- Host: GitHub
- URL: https://github.com/stradivario/gapi-voyager
- Owner: Stradivario
- Created: 2018-05-11T22:44:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-04-09T08:42:11.000Z (over 3 years ago)
- Last Synced: 2025-03-02T16:40:55.696Z (8 months ago)
- Language: JavaScript
- Size: 345 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @Gapi Voyager Module
##### Original Voyager module you can find here [VoyagerGraphql](https://github.com/APIs-guru/graphql-voyager)
##### For questions/issues you can write ticket [here](http://gitlab.youvolio.com/gapi/gapi-voyager/issues)
##### This module is intended to be used with [GAPI](https://github.com/Stradivario/gapi)
## Installation and basic examples:
##### To install this Gapi module, run:
```bash
$ npm install @gapi/voyager --save
```
## Consuming @gapi/voyager
##### Import inside AppModule or CoreModule
```typescript
import { Module } from '@rxdi/core';
import { VoyagerModule } from '@gapi/voyager';
@Module({
imports: [
VoyagerModule.forRoot({
path: '/voyager';
endpointUrl: '/graphql';
})
]
})
export class CoreModule { }
```
TODO: Better documentation...
Enjoy ! :)