feat: introduce connections page in the admin panel

This commit is contained in:
Kasia
2023-11-23 11:13:58 +00:00
committed by Ali BARIN
parent 3801f9cfa0
commit 8f09681771
18 changed files with 851 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
import { gql } from '@apollo/client';
export const GET_SHARED_CONNECTION_ROLE_IDS = gql`
query GetSharedConnectionRoleIds($id: String!) {
getSharedConnectionRoleIds(id: $id)
}
`;