mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
17 lines
231 B
JavaScript
17 lines
231 B
JavaScript
import gql from 'graphql-tag'
|
|
import { imageUrls } from './imageUrls'
|
|
|
|
export const user = gql`
|
|
${imageUrls}
|
|
fragment user on User {
|
|
id
|
|
slug
|
|
name
|
|
avatar {
|
|
...imageUrls
|
|
}
|
|
disabled
|
|
deleted
|
|
}
|
|
`
|