mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
17 lines
232 B
JavaScript
17 lines
232 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const badges = gql`
|
|
fragment badges on User {
|
|
badgeTrophiesSelected {
|
|
id
|
|
icon
|
|
description
|
|
}
|
|
badgeVerification {
|
|
id
|
|
icon
|
|
description
|
|
}
|
|
}
|
|
`
|