mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:01:07 +08:00
15 lines
353 B
JavaScript
15 lines
353 B
JavaScript
import { storiesOf } from '@storybook/react';
|
|
import { setupGraphiQL } from '../src';
|
|
|
|
// setup the graphiql helper which can be used with the add method later
|
|
const graphiql = setupGraphiQL({ url: 'http://localhost:3000/graphql' });
|
|
|
|
storiesOf('GraphQL Demo', module).add(
|
|
'get user info',
|
|
graphiql(`{
|
|
user(id: "1") {
|
|
name
|
|
}
|
|
}`)
|
|
);
|