Skip to content

Commit

Permalink
refactor: symmetrical layer names
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Oct 3, 2024
1 parent ef73647 commit eaeddc6
Show file tree
Hide file tree
Showing 12 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/entrypoints/schema.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from '../layers/1_Schema/__.js'
export { Select } from '../layers/2_Select/__.js'
export { ResultSet } from '../layers/3_ResultSet/__.js'
export { ResultSet } from '../layers/3_Result/__.js'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/layers/5_core/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { mergeRequestInit, searchParamsAppendAll } from '../../lib/http.js'
import { casesExhausted, getOptionalNullablePropertyOrThrow, throwNull } from '../../lib/prelude.js'
import { execute } from '../0_functions/execute.js'
import { Select } from '../2_Select/__.js'
import { ResultSet } from '../3_ResultSet/__.js'
import { ResultSet } from '../3_Result/__.js'
import { SelectionSetGraphqlMapper } from '../3_SelectGraphQLMapper/__.js'
import type { GraffleExecutionResultVar } from '../6_client/client.js'
import type { Config } from '../6_client/Settings/Config.js'
Expand Down
2 changes: 1 addition & 1 deletion src/layers/6_client/requestMethods/document.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { UnionToTuple } from 'type-fest'
import type { IsTupleMultiple } from '../../../lib/prelude.js'
import { Select } from '../../2_Select/__.js'
import type { ResultSet } from '../../3_ResultSet/__.js'
import type { ResultSet } from '../../3_Result/__.js'
import type { SchemaIndex } from '../../4_generator/generators/SchemaIndex.js'
import type { InterfaceTypedRequestContext } from '../client.js'
import type { ResolveOutputReturnRootType } from '../handleOutput.js'
Expand Down

0 comments on commit eaeddc6

Please sign in to comment.