1.4.1 • Published 4 years ago

teleprice-quoting-system v1.4.1

Weekly downloads
6
License
SEE LICENSE IN SR...
Repository
github
Last release
4 years ago

Contract Rate Quoting Feed

`/application

  `/priceFeedA`
   `/graphqlrc.yml`
  `/ProductAQuery.graphql`
    `/ProductASchema.graphql`

  `./productB`
    `.graphqlrc.yml`
    `ProductBQuery.graphql`
   `ProductBSchema.graphql`

A separate GraphQL server should be instantiated for seperate instruments and price feeds along with its own .graphqlrc.yml

Diagnostics = getDiagnostics Autocomplete = getAutocompleteSuggestions Master Document = getMaster Document Symbols = getDocumentSymbols Define Clause = getDefinition

Extensions that are Consuming

import {loadConfig} from 'graphql-config';
import {InspectorExtension} from './extension';

async function main() {
  const config = await loadConfig({
    extensions: [InspectorExtension],
  });
}