mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const imageUrls = gql`
|
|
fragment imageUrls on Image {
|
|
url
|
|
w320: transform(width: 320)
|
|
w640: transform(width: 640)
|
|
w1024: transform(width: 1024)
|
|
}
|
|
`
|