Added new query
This commit is contained in:
13
src/lib/graphql/queries/getGroupStatsQuery.ts
Normal file
13
src/lib/graphql/queries/getGroupStatsQuery.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { gql } from "@urql/core";
|
||||
|
||||
const getGroupStats = gql`
|
||||
query getGroupStats($groupID: String!) {
|
||||
getGroupStats(groupID: $groupID) {
|
||||
name
|
||||
username
|
||||
linksDeleted
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
export default getGroupStats;
|
||||
Reference in New Issue
Block a user