Open
Description
As mentioned in the title, I am looking to pass in a prop to the GraphiQL component so that it automatically launches with a specific documentation explorer page open. This is similar to what is currently supported with the query
propr.
Example of what I mean
React.createElement(GraphiQL, {
fetcher: graphQLFetcher,
defaultVariableEditorOpen: true,
docExplorerOpen: true,
openDocPage: "UserType"
}),
Is something like this possible today? If not, what file would be edited to allow for this?