-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
27 lines (24 loc) · 1.27 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
spectaql:
targetDir: public/graphql
introspection:
schemaFile: schema.graphql
servers:
# NOTE: If not using introspection.url OR servers[], you need to provide x-url
# same format as for OpenAPI Specification https://swagger.io/specification/#server-object
- url: http://localhost:7070/graphql
description: Local development gateway
# Indicates to use this server's URL as the typical GraphQL request base in the documentation
# If no server entries have this indicator, the first server's URL will be used.
# If no server entries are defined at all, the Introspection URL will be used.
production: true
# A place to list any Headers for your GraphQL API calls
headers:
- name: Authorization
example: Bearer <YOUR_TOKEN_HERE>
comment: Your API token from the auth `/token` endpoint
info:
title: GraphQL API Reference
description: >
Welcome to the OpenCRVS GraphQL API reference! This is an exhaustive list of all available endpoints and their respective schemas.
<p>Learn how to authenticate to the API in the Getting started -guide: <a href="https://todo-todo.opencrvs.org">https://todo-todo.opencrvs.org</a></p>
<p>FHIR-endpoint documentation: <a href="https://todo-todo.opencrvs.org">https://todo-todo.opencrvs.org</a></p>