14 lines
233 B
TypeScript
14 lines
233 B
TypeScript
import { gql } from "@urql/core";
|
|
|
|
const getGroupStats = gql`
|
|
query getGroupStats($groupID: String!) {
|
|
getGroupStats(groupID: $groupID) {
|
|
name
|
|
username
|
|
linksDeleted
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default getGroupStats;
|