File tree Expand file tree Collapse file tree 1 file changed +1
-12
lines changed
packages/graphql/src/fragments Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,6 @@ import type { FragmentOf } from 'gql.tada';
22import { graphql } from '../graphql' ;
33import { ChainFragment , PaginatedResultInfoFragment } from './common' ;
44
5- export const SpokeConfigFragment = graphql (
6- `fragment SpokeConfig on SpokeConfig {
7- __typename
8- active
9- }` ,
10- ) ;
11- export type SpokeConfig = FragmentOf < typeof SpokeConfigFragment > ;
12-
135export const SpokeFragment = graphql (
146 `fragment Spoke on Spoke {
157 __typename
@@ -18,11 +10,8 @@ export const SpokeFragment = graphql(
1810 chain {
1911 ...Chain
2012 }
21- config {
22- ...SpokeConfig
23- }
2413 }` ,
25- [ ChainFragment , SpokeConfigFragment ] ,
14+ [ ChainFragment ] ,
2615) ;
2716
2817export type Spoke = FragmentOf < typeof SpokeFragment > ;
You can’t perform that action at this time.
0 commit comments