David Lee

Results 6 comments of David Lee

Can we get the GraphiQL2 with the explorer plug in? https://graphql.org/swapi-graphql?

Yes this is the latest version: https://www.npmjs.com/package/graphiql But the Explorer functionality is a plug-in.. The YouTube video above goes through the plug-in installation steps. At some point GraphiQL will include...

There is a HTML file for this.. https://www.npmjs.com/package/graphiql Examples [Unpkg (CDN)](https://github.com/graphql/graphiql/blob/HEAD/examples/graphiql-cdn) - A single HTML file using CDN assets and a script tag Found more info on the explorer plug-in...

The last index.html works.. I just plugged it into Ariadne ``` from ariadne.constants import PLAYGROUND_HTML def get_graphiql_html(): with open("Fund_API/graphQL/index.html") as f: return f.read() GRAPHIQL_HTML = get_graphiql_html() ``` I did have...

Here's the apollo client html, but it has a lot of extra apollo links in the html.. https://studio.apollographql.com/public/star-wars-swapi/explorer?variant=current ``` new window.EmbeddedSandbox({ target: '#embedded-sandbox', initialEndpoint: 'http://localhost:4000', includeCookies: false, }); ```

I'm not sure.. the github code says MIT.. https://www.apollographql.com/docs/studio/explorer/sandbox/ You can use Sandbox offline and without an Apollo account. You also [embed Sandbox](https://www.apollographql.com/docs/studio/explorer/sandbox/#embedding-sandbox) on your own website. https://github.com/apollographql/embeddable-explorer/blob/main/LICENSE