Skip to content

Commit 29dc2b9

Browse files
authored
Merge branch 'main' into test/reserve-query-2
2 parents 939bda6 + e61fe3e commit 29dc2b9

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

packages/graphql/src/fragments/spoke.ts

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@ import type { FragmentOf } from 'gql.tada';
22
import { graphql } from '../graphql';
33
import { 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-
135
export 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

2817
export type Spoke = FragmentOf<typeof SpokeFragment>;

0 commit comments

Comments
 (0)