File tree Expand file tree Collapse file tree 5 files changed +7
-8
lines changed
components/Services/ApiExplorer Expand file tree Collapse file tree 5 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ if (__DEVELOPMENT__ && module.hot) {
7474// Main routes and rendering
7575const main = (
7676 < Router
77- history = { useBasename ( ( ) => history ) ( { basename : '/' } ) }
77+ history = { useBasename ( ( ) => history ) ( { basename : '/graphql/console ' } ) }
7878 routes = { getRoutes ( store ) }
7979 onUpdate = { hashLinkScroll }
8080 />
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ class ApiRequest extends Component {
186186 styles . stickyHeader
187187 }
188188 >
189- < div className = { 'col-xs-11 ' + styles . padd_remove } >
189+ < div className = { 'col-xs-12 ' + styles . padd_remove } >
190190 < div
191191 className = {
192192 'input-group ' +
@@ -209,11 +209,11 @@ class ApiRequest extends Component {
209209 />
210210 </ div >
211211 </ div >
212- < div className = { 'col-xs-1 ' + styles . padd_remove } >
212+ { /* <div className={'col-xs-1 ' + styles.padd_remove}>
213213 <button onClick={this.changeEndpoint.bind(this)} className={styles.changeEndpoint + ' btn btn-sm btn-small btn-info'}>
214214 Change Endpoint
215215 </button>
216- </ div >
216+ </div> */ }
217217 < div className = { styles . stickySeparator } />
218218 </ div >
219219 </ CollapsibleToggle >
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ class ApiRequestDetails extends Component {
88 < div className = { styles . apiRequestWrapper + ' ' + styles . apiContentPadd } >
99 < div className = { styles . apiRequestContent } > PokeAPI GraphiQL interface</ div >
1010 < div className = { styles . built } >
11- A rate limit of 50 calls per day is enforced
11+ A rate limit of 100 calls per hour is enforced
1212 </ div >
1313 < div className = { styles . apiHasura } >
1414 < a href = "https://github.com/PokeAPI/pokeapi" target = { '_blank' } >
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ query samplePokeAPIquery {
3636 }
3737
3838 # You can run multiple queries at the same time
39- # Counts how many pokemon where release for each generation
39+ # Counts how many pokemon were released for each generation
4040 generations: pokemon_v2_generation {
4141 name
4242 pokemon_species: pokemon_v2_pokemonspecies_aggregate {
Original file line number Diff line number Diff line change @@ -17,9 +17,8 @@ const routes = store => {
1717 return (
1818 < Route path = "/" component = { App } >
1919 < Route path = "" >
20- < IndexRoute component = { generatedLoginConnector ( connect ) } />
20+ < IndexRoute component = { generatedApiExplorer ( connect ) } />
2121 </ Route >
22- < Route path = "/graphiql" component = { generatedApiExplorer ( connect ) } />
2322 < Route
2423 path = "voyager-view"
2524 component = { generatedVoyagerConnector ( connect ) }
You can’t perform that action at this time.
0 commit comments