mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
25 lines
325 B
JavaScript
25 lines
325 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const group = gql`
|
|
fragment group on Group {
|
|
id
|
|
groupName: name
|
|
slug
|
|
disabled
|
|
deleted
|
|
about
|
|
description
|
|
descriptionExcerpt
|
|
groupType
|
|
actionRadius
|
|
categories {
|
|
id
|
|
slug
|
|
name
|
|
icon
|
|
}
|
|
locationName
|
|
myRole
|
|
}
|
|
`
|