Skip to content

Commit

Permalink
refactor: rename mapper layer base name
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Oct 3, 2024
1 parent 77ac82b commit ef73647
Show file tree
Hide file tree
Showing 18 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/entrypoints/_Print.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { toGraphQLDocument as document } from '../layers/3_SelectionSetGraphqlMapper/nodes/Document.js'
export { toGraphQLDocument as document } from '../layers/3_SelectGraphQLMapper/nodes/Document.js'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/layers/4_generator/generators/SchemaIndex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { getNamedType, isUnionType } from 'graphql'
import { Code } from '../../../lib/Code.js'
import { hasMutation, hasQuery, hasSubscription } from '../../../lib/graphql-plus/graphql.js'
import type { Schema } from '../../1_Schema/__.js'
import type { CodecString } from '../../3_SelectionSetGraphqlMapper/types.js'
import type { CodecString } from '../../3_SelectGraphQLMapper/types.js'
import type { GlobalRegistry } from '../globalRegistry.js'
import { createModuleGenerator } from '../helpers/moduleGenerator.js'
import { ModuleGeneratorData } from './Data.js'
Expand Down
2 changes: 1 addition & 1 deletion src/layers/5_core/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { casesExhausted, getOptionalNullablePropertyOrThrow, throwNull } from '.
import { execute } from '../0_functions/execute.js'
import { Select } from '../2_Select/__.js'
import { ResultSet } from '../3_ResultSet/__.js'
import { SelectionSetGraphqlMapper } from '../3_SelectionSetGraphqlMapper/__.js'
import { SelectionSetGraphqlMapper } from '../3_SelectGraphQLMapper/__.js'
import type { GraffleExecutionResultVar } from '../6_client/client.js'
import type { Config } from '../6_client/Settings/Config.js'
import {
Expand Down
2 changes: 1 addition & 1 deletion src/layers/5_core/schemaErrors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { test } from '../../../tests/_/helpers.js'
import { $Index as schema } from '../../../tests/_/schemas/kitchen-sink/graffle/modules/SchemaRuntime.js'
import type { Query } from '../../../tests/_/schemas/kitchen-sink/graffle/modules/SelectionSets.js'
import { Select } from '../2_Select/__.js'
import { SelectionSetGraphqlMapper } from '../3_SelectionSetGraphqlMapper/__.js'
import { SelectionSetGraphqlMapper } from '../3_SelectGraphQLMapper/__.js'
import { gql } from '../6_helpers/gql.js'
import { Throws } from '../7_extensions/Throws/Throws.js'
import { injectTypenameOnRootResultFields } from './schemaErrors.js'
Expand Down

0 comments on commit ef73647

Please sign in to comment.