Permalink
Switch branches/tags
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
260 lines (235 sloc) 4.72 KB
/* eslint-disable */
import { graphql } from "gatsby"
export const gatsbyImageSharpFixed = graphql`
fragment GatsbyImageSharpFixed on ImageSharpFixed {
base64
width
height
src
srcSet
}
`
export const gatsbyImageSharpFixedTracedSVG = graphql`
fragment GatsbyImageSharpFixed_tracedSVG on ImageSharpFixed {
tracedSVG
width
height
src
srcSet
}
`
export const gatsbyImageSharpFixedPreferWebp = graphql`
fragment GatsbyImageSharpFixed_withWebp on ImageSharpFixed {
base64
width
height
src
srcSet
srcWebp
srcSetWebp
}
`
export const gatsbyImageSharpFixedPreferWebpTracedSVG = graphql`
fragment GatsbyImageSharpFixed_withWebp_tracedSVG on ImageSharpFixed {
tracedSVG
width
height
src
srcSet
srcWebp
srcSetWebp
}
`
export const gatsbyImageSharpFixedNoBase64 = graphql`
fragment GatsbyImageSharpFixed_noBase64 on ImageSharpFixed {
width
height
src
srcSet
}
`
export const gatsbyImageSharpFixedPreferWebpNoBase64 = graphql`
fragment GatsbyImageSharpFixed_withWebp_noBase64 on ImageSharpFixed {
width
height
src
srcSet
srcWebp
srcSetWebp
}
`
export const gatsbyImageSharpFluid = graphql`
fragment GatsbyImageSharpFluid on ImageSharpFluid {
base64
aspectRatio
src
srcSet
sizes
}
`
export const gatsbyImageSharpFluidTracedSVG = graphql`
fragment GatsbyImageSharpFluid_tracedSVG on ImageSharpFluid {
tracedSVG
aspectRatio
src
srcSet
sizes
}
`
export const gatsbyImageSharpFluidPreferWebp = graphql`
fragment GatsbyImageSharpFluid_withWebp on ImageSharpFluid {
base64
aspectRatio
src
srcSet
srcWebp
srcSetWebp
sizes
}
`
export const gatsbyImageSharpFluidPreferWebpTracedSVG = graphql`
fragment GatsbyImageSharpFluid_withWebp_tracedSVG on ImageSharpFluid {
tracedSVG
aspectRatio
src
srcSet
srcWebp
srcSetWebp
sizes
}
`
export const gatsbyImageSharpFluidNoBase64 = graphql`
fragment GatsbyImageSharpFluid_noBase64 on ImageSharpFluid {
aspectRatio
src
srcSet
sizes
}
`
export const gatsbyImageSharpFluidPreferWebpNoBase64 = graphql`
fragment GatsbyImageSharpFluid_withWebp_noBase64 on ImageSharpFluid {
aspectRatio
src
srcSet
srcWebp
srcSetWebp
sizes
}
`
// TODO: in v3 remove these legacy fragments
export const gatsbyImageSharpResolutions = graphql`
fragment GatsbyImageSharpResolutions on ImageSharpResolutions {
base64
width
height
src
srcSet
}
`
export const gatsbyImageSharpResolutionsTracedSVG = graphql`
fragment GatsbyImageSharpResolutions_tracedSVG on ImageSharpResolutions {
tracedSVG
width
height
src
srcSet
}
`
export const gatsbyImageSharpResolutionsPreferWebp = graphql`
fragment GatsbyImageSharpResolutions_withWebp on ImageSharpResolutions {
base64
width
height
src
srcSet
srcWebp
srcSetWebp
}
`
export const gatsbyImageSharpResolutionsPreferWebpTracedSVG = graphql`
fragment GatsbyImageSharpResolutions_withWebp_tracedSVG on ImageSharpResolutions {
tracedSVG
width
height
src
srcSet
srcWebp
srcSetWebp
}
`
export const gatsbyImageSharpResolutionsNoBase64 = graphql`
fragment GatsbyImageSharpResolutions_noBase64 on ImageSharpResolutions {
width
height
src
srcSet
}
`
export const gatsbyImageSharpResolutionsPreferWebpNoBase64 = graphql`
fragment GatsbyImageSharpResolutions_withWebp_noBase64 on ImageSharpResolutions {
width
height
src
srcSet
srcWebp
srcSetWebp
}
`
export const gatsbyImageSharpSizes = graphql`
fragment GatsbyImageSharpSizes on ImageSharpSizes {
base64
aspectRatio
src
srcSet
sizes
}
`
export const gatsbyImageSharpSizesTracedSVG = graphql`
fragment GatsbyImageSharpSizes_tracedSVG on ImageSharpSizes {
tracedSVG
aspectRatio
src
srcSet
sizes
}
`
export const gatsbyImageSharpSizesPreferWebp = graphql`
fragment GatsbyImageSharpSizes_withWebp on ImageSharpSizes {
base64
aspectRatio
src
srcSet
srcWebp
srcSetWebp
sizes
}
`
export const gatsbyImageSharpSizesPreferWebpTracedSVG = graphql`
fragment GatsbyImageSharpSizes_withWebp_tracedSVG on ImageSharpSizes {
tracedSVG
aspectRatio
src
srcSet
srcWebp
srcSetWebp
sizes
}
`
export const gatsbyImageSharpSizesNoBase64 = graphql`
fragment GatsbyImageSharpSizes_noBase64 on ImageSharpSizes {
aspectRatio
src
srcSet
sizes
}
`
export const gatsbyImageSharpSizesPreferWebpNoBase64 = graphql`
fragment GatsbyImageSharpSizes_withWebp_noBase64 on ImageSharpSizes {
aspectRatio
src
srcSet
srcWebp
srcSetWebp
sizes
}
`