-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(ts-client): modularize selection-set (#806)
- Loading branch information
1 parent
5b13f30
commit dbffec8
Showing
45 changed files
with
483 additions
and
412 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export * from '../../layers/4_client/client.js' | ||
export { create as createSelect, select } from '../../layers/4_select/select.js' | ||
export * from '../../layers/5_client/client.js' | ||
export { create as createSelect, select } from '../../layers/5_select/select.js' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export * from '../../layers/1_Schema/__.js' | ||
export { ResultSet } from '../../layers/3_IO/ResultSet/__.js' | ||
export { SelectionSet } from '../../layers/3_IO/SelectionSet/__.js' | ||
export { SelectionSet } from '../../layers/3_SelectionSet/__.js' | ||
export { ResultSet } from '../../layers/4_ResultSet/__.js' |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
329 changes: 0 additions & 329 deletions
329
src/layers/3_IO/SelectionSet/toGraphQLDocumentString.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export * as Print from './encode.js' | ||
export * from './types.js' |
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
...ectionSet/toGraphQLDocumentString.test.ts → src/layers/3_SelectionSet/encode.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.