import type {NormalizationAst} from '@isograph/react'; const normalizationAst: NormalizationAst = { kind: "NormalizationAst", selections: [ { kind: "Linked", fieldName: "me", arguments: null, concreteType: "Economist", selections: [ { kind: "Scalar", fieldName: "id", arguments: null, }, { kind: "Scalar", fieldName: "name", arguments: null, }, { kind: "Linked", fieldName: "successor", arguments: null, concreteType: "Economist", selections: [ { kind: "Scalar", fieldName: "id", arguments: null, }, { kind: "Linked", fieldName: "successor", arguments: null, concreteType: "Economist", selections: [ { kind: "Scalar", fieldName: "id", arguments: null, }, { kind: "Scalar", fieldName: "name", arguments: null, }, ], }, ], }, ], }, ], }; export default normalizationAst;