-
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.
- Loading branch information
1 parent
c29c877
commit 9e5a0ad
Showing
47 changed files
with
89 additions
and
88 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 +1 @@ | ||
export { create } from '../types/Schema/types/Scalar/_.js' | ||
export { create } from '../types/Schema/nodes/Scalar/_.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 +1 @@ | ||
export * from '../../types/Schema/types/Scalar/standardScalarTypes.js' | ||
export * from '../../types/Schema/StandardTypes/scalar.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
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
2 changes: 1 addition & 1 deletion
2
src/extensions/SchemaErrors/tests/fixture/graffle/modules/Scalar.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
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
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
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
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
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 * from './object.js' | ||
export * from './scalar.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export * as StandardTypes from './_.js' |
12 changes: 6 additions & 6 deletions
12
src/types/Schema/typeTypes.ts → src/types/Schema/StandardTypes/object.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
import type { Grafaid } from '../../lib/grafaid/__.js' | ||
import type { OutputObject, SomeFields } from './_.js' | ||
import type { Grafaid } from '../../../lib/grafaid/__.js' | ||
import type { OutputObject, SomeFields } from '../_.js' | ||
|
||
export interface ObjectQuery< | ||
export interface Query< | ||
$Fields extends SomeFields = SomeFields, | ||
> extends OutputObject<Grafaid.Schema.RootTypeNameQuery, $Fields> {} | ||
|
||
export interface ObjectMutation< | ||
export interface Mutation< | ||
$Fields extends SomeFields = SomeFields, | ||
> extends OutputObject<Grafaid.Schema.RootTypeNameMutation, $Fields> {} | ||
|
||
export interface ObjectSubscription< | ||
export interface Subscription< | ||
$Fields extends SomeFields = SomeFields, | ||
> extends OutputObject<Grafaid.Schema.RootTypeNameSubscription, $Fields> {} | ||
|
||
export type RootType = ObjectQuery | ObjectMutation | ObjectSubscription | ||
export type RootType = Query | Mutation | Subscription |
19 changes: 17 additions & 2 deletions
19
...chema/types/Scalar/standardScalarTypes.ts → src/types/Schema/StandardTypes/scalar.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
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,17 +1,17 @@ | ||
export * as Directives from './Directive.js' | ||
export * from './helpers.js' | ||
export * from './Named/__.js' | ||
export * from './nodes/__typename.js' | ||
export * from './nodes/Args.js' | ||
export * from './nodes/Enum.js' | ||
export * from './nodes/InputField.js' | ||
export * from './nodes/InputObject.js' | ||
export * from './nodes/Interface.js' | ||
export * from './nodes/List.js' | ||
export * from './nodes/Nullable.js' | ||
export * from './nodes/OutputField.js' | ||
export { type OutputObject } from './nodes/OutputObject.js' | ||
export * from './nodes/Scalar/Scalar.js' | ||
export * from './nodes/Union.js' | ||
export * from './StandardTypes/__.js' | ||
export * from './typeGroups.js' | ||
export * from './types/__typename.js' | ||
export * from './types/Args.js' | ||
export * from './types/Enum.js' | ||
export * from './types/InputField.js' | ||
export * from './types/InputObject.js' | ||
export * from './types/Interface.js' | ||
export * from './types/List.js' | ||
export * from './types/Nullable.js' | ||
export * from './types/OutputField.js' | ||
export { type OutputObject } from './types/OutputObject.js' | ||
export * from './types/Scalar/Scalar.js' | ||
export * from './types/Union.js' | ||
export * from './typeTypes.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
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
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
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
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.
File renamed without changes.
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,4 @@ | ||
export * from '../../StandardTypes/scalar.js' | ||
export * from '../ScalarCodecless.js' | ||
export * from './create.js' | ||
export * from './helpers.js' |
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/types/Schema/types/Scalar/helpers.ts → src/types/Schema/nodes/Scalar/helpers.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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
This file was deleted.
Oops, something went wrong.
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
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
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
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 @@ | ||
import type * as $$Utilities from '../../../../../../src/entrypoints/utilities-for-generated.js' | ||
|
||
export * from '../../../../../../src/types/Schema/types/Scalar/standardScalarTypes.js' | ||
export * from '../../../../../../src/types/Schema/StandardTypes/scalar.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
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 @@ | ||
import type * as $$Utilities from '../../../../../../src/entrypoints/utilities-for-generated.js' | ||
|
||
export * from '../../../../../../src/types/Schema/types/Scalar/standardScalarTypes.js' | ||
export * from '../../../../../../src/types/Schema/StandardTypes/scalar.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
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 @@ | ||
import type * as $$Utilities from '../../../../../../src/entrypoints/utilities-for-generated.js' | ||
|
||
export * from '../../../../../../src/types/Schema/types/Scalar/standardScalarTypes.js' | ||
export * from '../../../../../../src/types/Schema/StandardTypes/scalar.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