Added new query

This commit is contained in:
2025-12-16 15:23:24 -05:00
parent 0177aae79a
commit 8d8b7f4c3a

View 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;