This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* [_type == "post"] { | |
..., | |
author-> | |
} |

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { addDecorator } from '@storybook/react'; | |
import { withGraphCMS } from '@focusreactive/storybook-addon-graphcms'; | |
addDecorator(withGraphCMS({ endpoint: CMS_ENDPOINT, token: CMS_TOKEN, projectId: 'YOUR_PROJECT_ID', stage: 'master' })) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { addDecorator } from '@storybook/react'; | |
import { withGraphQL } from '@focusreactive/storybook-graphql-kit'; | |
addDecorator(withGraphQL({ endpoint: CMS_ENDPOINT, token: CMS_TOKEN })); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yarn add --dev @focusreactive/storybook-graphql-kit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// speakers.stories.js | |
import { QueryParams } from '@focusreactive/storybook-graphql-kit'; | |
import { speakersQuery } from '../speaker.query'; | |
export const speakers = ({ graphQlResponse: { result } }) => result.map(({ name, bio }) => (<div><h2>{name}</h2><p>{bio}</p></div>)); | |
speakers.story = { | |
name: 'Conference Speakers', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// speakers.stories.js | |
import { QueryParams } from '@focusreactive/storybook-graphql-kit'; | |
import { speakersQuery } from '../speaker.query'; | |
export const speakers = Query({ | |
name: 'Conference Speakers', | |
story: ({ graphQlResponse: { result } }) => result.map(({ name, bio }) => (<div><h2>{name}</h2><p>{bio}</p></div>)), | |
query, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// speakers.stories.js | |
import { Query } from '@focusreactive/storybook-graphql-kit'; | |
import { speakersQuery } from '../speaker.query'; | |
export const speakers = Query({ | |
name: 'Conference Speakers', | |
query, | |
vars: { conferenceTitle: 'React_Day_Berlin', eventYear: 'Y2019' }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// speakers.stories.js | |
import { Query } from '@focusreactive/storybook-graphql-kit'; | |
import { speakersQuery } from '../speaker.query'; | |
export const speakers = Query({ | |
name: 'Conference Speakers', | |
speakersQuery, | |
vars: { conferenceTitle: 'React_Day_Berlin', eventYear: 'Y2019' }, | |
searchVars: { name: '' }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// speakers.query.js | |
export const speakersQuery = /* GraphQL */ ` | |
query($conferenceTitle: ConferenceTitle, $eventYear: EventYear, $name: String) { | |
result: speakers( | |
where: { | |
conferenceEvents_some: { year: $eventYear, conferenceBrand: { title: $conferenceTitle } } | |
name_contains: $name | |
} | |
) { |
NewerOlder