mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
seo update for graphiql-online (#857)
This commit is contained in:
parent
e437604f57
commit
7fa6203b4f
@ -1,6 +1,8 @@
|
||||
## GraphiQL Demo
|
||||
|
||||
This version of GraphiQL is a fork of the original version with a simple header management UI and a fix for subscription.
|
||||
This version of GraphiQL is a fork of the original version with a simple header management UI.
|
||||
|
||||
You can access it live here - https://graphiql-online.com
|
||||
|
||||
## Usage of Environment Variables
|
||||
|
||||
|
@ -35,7 +35,10 @@ class ApiExplorer extends Component {
|
||||
|
||||
return (
|
||||
<div className={'container-fluid ' + styles.padd_remove}>
|
||||
<Helmet title="GraphiQL" />
|
||||
<Helmet
|
||||
title="GraphiQL Online with Headers | Built by Hasura"
|
||||
description="An online version of GraphiQL. Manage headers easily. Test your GraphQL servers."
|
||||
/>
|
||||
<div className={wrapperClass}>{requestWrapper}</div>
|
||||
</div>
|
||||
);
|
||||
|
@ -1,5 +1,6 @@
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import Helmet from 'react-helmet';
|
||||
import './App.css';
|
||||
import { updateGraphQLEndpoint } from '../ApiExplorer/Actions';
|
||||
|
||||
@ -15,6 +16,10 @@ class LoginComponent extends React.Component {
|
||||
const { dispatch } = this.props;
|
||||
return (
|
||||
<div className="loginWrapper">
|
||||
<Helmet
|
||||
title="GraphiQL Online with Headers | Built by Hasura"
|
||||
description="An online version of GraphiQL. Manage headers easily. Test your GraphQL servers."
|
||||
/>
|
||||
<h2 className="loginHeading"> Online GraphiQL </h2>
|
||||
<div className="login">
|
||||
<div>
|
||||
|
Loading…
Reference in New Issue
Block a user