11 lines
145 B
TypeScript
11 lines
145 B
TypeScript
const imageFragment = /* GraphQL */ `
|
|
fragment image on Image {
|
|
url
|
|
altText
|
|
width
|
|
height
|
|
}
|
|
`;
|
|
|
|
export default imageFragment;
|