Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 1 day ago
JSON representation

Graphql Voyager Explorer get mind mapping introspection based on your schema with @Gapi Server

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 ! :)