Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 16 days 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 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-09T08:42:11.000Z (over 2 years ago)
- Last Synced: 2024-11-20T03:27:16.245Z (about 1 month 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
```typescriptimport { Module } from '@rxdi/core';
import { VoyagerModule } from '@gapi/voyager';@Module({
imports: [
VoyagerModule.forRoot({
path: '/voyager';
endpointUrl: '/graphql';
})
]
})
export class CoreModule { }
```TODO: Better documentation...
Enjoy ! :)