1.0.1 • Published 4 months ago
embed-apollo-sandbox v1.0.1
embed-apollo-sandbox
A lightweight utility to embed Apollo Sandbox.
🌐 Integration with GraphQL Yoga
If you're using graphql-yoga
, you can replace Yoga's default GraphiQL interface with Apollo Sandbox for a more powerful developer experience:
import { createYoga } from "graphql-yoga";
import { renderGraphiQL } from "embed-apollo-sandbox";
const yoga = createYoga({
renderGraphiQL: renderGraphiQL.bind(null, {
initialEndpoint: "http://localhost:3000",
endpointIsEditable: false,
}),
});