forked from mercurius-js/mercurius
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement docsify (mercurius-js#323)
- Loading branch information
Showing
11 changed files
with
145 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# mercurius | ||
|
||
## Integrations | ||
|
||
- [@nexus/schema](/docs/integrations/nexus-schema) - Declarative, code-first and strongly typed GraphQL schema construction for TypeScript & JavaScript |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
* [**Home**](/) | ||
* [Install](/#install) | ||
* [Example](/#example) | ||
* [Executable schema](/#makeexecutableschema-support) | ||
* [Acknowledgements](/#acknowledgements) | ||
* [License](/#license) | ||
* [API](/docs/api/options) | ||
* [Plugins options](/docs/api/options#plugin-options) | ||
* [HTTP Endpoints](/docs/api/options#http-endpoints) | ||
* [Decorators](/docs/api/options#decorators) | ||
* [Context](/docs/context) | ||
* [Federation](/docs/federation) | ||
* [Subscriptions](/docs/subscriptions) | ||
* [Batched Queries](/docs/batched-queries) | ||
* [Persisted Queries](/docs/persisted-queries) | ||
* [Integrations](/docs/integrations/) | ||
* [@nexus/schema](/docs/integrations/nexus-schema) | ||
* [Related plugins](/docs/plugins) | ||
* [mercurius-upload](/docs/plugins) | ||
* [Protocol extensions](/docs/protocol-extension) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Mercurius</title> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
<meta name="description" content="Description" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css" | ||
media="(prefers-color-scheme: dark)" | ||
/> | ||
|
||
<style> | ||
:root { | ||
--base-font-size: 16px; | ||
--theme-color: rgb(238, 156, 62); | ||
--link-color: rgb(238, 156, 62); | ||
--link-color--hover: rgb(238, 156, 62); | ||
--sidebar-name-margin: 0; | ||
--sidebar-name-padding: 0; | ||
--code-font-size: 0.9em; | ||
} | ||
.sidebar > h1 { | ||
margin-bottom: -0.75em; | ||
margin-top: 0.75em; | ||
} | ||
.sidebar > h1 img { | ||
height: 4em; | ||
} | ||
.markdown-section a code { | ||
color: var(--link-color) !important; | ||
} | ||
.markdown-section code:not([class*='lang-']):not([class*='language-']) { | ||
white-space: unset; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script> | ||
window.$docsify = { | ||
loadSidebar: 'docsify/sidebar.md', | ||
name: 'Mercurius', | ||
repo: 'https://github.com/mercurius-js/mercurius', | ||
auto2top: true | ||
} | ||
</script> | ||
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script> | ||
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script> | ||
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters