mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 01:31:06 +08:00
44 lines
919 B
JavaScript
44 lines
919 B
JavaScript
import React from 'react';
|
|
import { storiesOf } from '@storybook/react';
|
|
// import { setupGraphiQL } from '@storybook/addon-graphql';
|
|
|
|
// const graphiql = setupGraphiQL({
|
|
// url: 'https://graphql-pokemon.now.sh/?',
|
|
// });
|
|
|
|
storiesOf('Addons|GraphQL', module).add('get Pickachu', () => <div>hello</div>, {
|
|
graphiql: {
|
|
query: `{
|
|
pokemon(name: "Pikachu") {
|
|
id
|
|
number
|
|
name
|
|
attacks {
|
|
special {
|
|
name
|
|
type
|
|
damage
|
|
}
|
|
}
|
|
evolutions {
|
|
id
|
|
number
|
|
name
|
|
weight {
|
|
minimum
|
|
maximum
|
|
}
|
|
attacks {
|
|
fast {
|
|
name
|
|
type
|
|
damage
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}`,
|
|
url: 'https://graphql-pokemon.now.sh/?',
|
|
},
|
|
});
|