Add trust center front
Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
17
apps/console/src/hooks/graph/TrustCenterAccessTokenGraph.ts
Normal file
17
apps/console/src/hooks/graph/TrustCenterAccessTokenGraph.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { graphql } from 'react-relay';
|
||||
|
||||
export const trustCenterByIdQuery = graphql`
|
||||
query TrustCenterAccessTokenGraphQuery($trustCenterId: ID!) {
|
||||
node(id: $trustCenterId) {
|
||||
... on TrustCenter {
|
||||
id
|
||||
slug
|
||||
active
|
||||
organization {
|
||||
id
|
||||
name
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
Reference in New Issue
Block a user