storybook/examples/official-storybook/stories/addon-graphql.stories.js
2019-06-27 22:55:22 +08:00

48 lines
873 B
JavaScript

import React from 'react';
export default {
title: 'Addons|GraphQL',
};
export const getPickachu = () => <div>hello</div>;
getPickachu.story = {
name: 'get Pickachu',
parameters: {
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/?',
},
},
};