@isograph/react 0.0.0-main-da5f53a4 → 0.0.0-main-f0e50b47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/tests/__isograph/Query/meName/entrypoint.ts +2 -2
- package/src/tests/__isograph/Query/meName/output_type.ts +2 -2
- package/src/tests/__isograph/Query/meName/resolver_reader.ts +3 -3
- package/src/tests/__isograph/Query/meNameSuccessor/entrypoint.ts +2 -2
- package/src/tests/__isograph/Query/meNameSuccessor/output_type.ts +2 -2
- package/src/tests/__isograph/Query/meNameSuccessor/resolver_reader.ts +3 -3
- package/src/tests/__isograph/Query/nodeField/entrypoint.ts +2 -2
- package/src/tests/__isograph/Query/nodeField/output_type.ts +2 -2
- package/src/tests/__isograph/Query/nodeField/resolver_reader.ts +3 -3
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@isograph/react",
|
3
|
-
"version": "0.0.0-main-
|
3
|
+
"version": "0.0.0-main-f0e50b47",
|
4
4
|
"description": "Use Isograph with React",
|
5
5
|
"homepage": "https://isograph.dev",
|
6
6
|
"main": "dist/index.js",
|
@@ -16,8 +16,8 @@
|
|
16
16
|
"prepack": "yarn run test && yarn run compile"
|
17
17
|
},
|
18
18
|
"dependencies": {
|
19
|
-
"@isograph/disposable-types": "0.0.0-main-
|
20
|
-
"@isograph/react-disposable-state": "0.0.0-main-
|
19
|
+
"@isograph/disposable-types": "0.0.0-main-f0e50b47",
|
20
|
+
"@isograph/react-disposable-state": "0.0.0-main-f0e50b47",
|
21
21
|
"react": "^18.2.0"
|
22
22
|
},
|
23
23
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import type {IsographEntrypoint, NormalizationAst, RefetchQueryNormalizationArtifactWrapper} from '@isograph/react';
|
2
2
|
import {Query__meName__param} from './param_type';
|
3
|
-
import {
|
3
|
+
import {Query__meName__output_type} from './output_type';
|
4
4
|
import readerResolver from './resolver_reader';
|
5
5
|
const nestedRefetchQueries: RefetchQueryNormalizationArtifactWrapper[] = [];
|
6
6
|
|
@@ -32,7 +32,7 @@ const normalizationAst: NormalizationAst = [
|
|
32
32
|
];
|
33
33
|
const artifact: IsographEntrypoint<
|
34
34
|
Query__meName__param,
|
35
|
-
|
35
|
+
Query__meName__output_type
|
36
36
|
> = {
|
37
37
|
kind: "Entrypoint",
|
38
38
|
queryText,
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { meNameField as resolver } from '../../../garbageCollection.test
|
2
|
-
export type
|
1
|
+
import { meNameField as resolver } from '../../../garbageCollection.test';
|
2
|
+
export type Query__meName__output_type = ReturnType<typeof resolver>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import type {EagerReaderArtifact, ReaderAst, RefetchQueryNormalizationArtifact} from '@isograph/react';
|
2
2
|
import { Query__meName__param } from './param_type';
|
3
|
-
import {
|
4
|
-
import { meNameField as resolver } from '../../../garbageCollection.test
|
3
|
+
import { Query__meName__output_type } from './output_type';
|
4
|
+
import { meNameField as resolver } from '../../../garbageCollection.test';
|
5
5
|
|
6
6
|
const readerAst: ReaderAst<Query__meName__param> = [
|
7
7
|
{
|
@@ -22,7 +22,7 @@ const readerAst: ReaderAst<Query__meName__param> = [
|
|
22
22
|
|
23
23
|
const artifact: EagerReaderArtifact<
|
24
24
|
Query__meName__param,
|
25
|
-
|
25
|
+
Query__meName__output_type
|
26
26
|
> = {
|
27
27
|
kind: "EagerReaderArtifact",
|
28
28
|
resolver,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import type {IsographEntrypoint, NormalizationAst, RefetchQueryNormalizationArtifactWrapper} from '@isograph/react';
|
2
2
|
import {Query__meNameSuccessor__param} from './param_type';
|
3
|
-
import {
|
3
|
+
import {Query__meNameSuccessor__output_type} from './output_type';
|
4
4
|
import readerResolver from './resolver_reader';
|
5
5
|
const nestedRefetchQueries: RefetchQueryNormalizationArtifactWrapper[] = [];
|
6
6
|
|
@@ -68,7 +68,7 @@ const normalizationAst: NormalizationAst = [
|
|
68
68
|
];
|
69
69
|
const artifact: IsographEntrypoint<
|
70
70
|
Query__meNameSuccessor__param,
|
71
|
-
|
71
|
+
Query__meNameSuccessor__output_type
|
72
72
|
> = {
|
73
73
|
kind: "Entrypoint",
|
74
74
|
queryText,
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { meNameField as resolver } from '../../../meNameSuccessor
|
2
|
-
export type
|
1
|
+
import { meNameField as resolver } from '../../../meNameSuccessor';
|
2
|
+
export type Query__meNameSuccessor__output_type = ReturnType<typeof resolver>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import type {EagerReaderArtifact, ReaderAst, RefetchQueryNormalizationArtifact} from '@isograph/react';
|
2
2
|
import { Query__meNameSuccessor__param } from './param_type';
|
3
|
-
import {
|
4
|
-
import { meNameField as resolver } from '../../../meNameSuccessor
|
3
|
+
import { Query__meNameSuccessor__output_type } from './output_type';
|
4
|
+
import { meNameField as resolver } from '../../../meNameSuccessor';
|
5
5
|
|
6
6
|
const readerAst: ReaderAst<Query__meNameSuccessor__param> = [
|
7
7
|
{
|
@@ -44,7 +44,7 @@ const readerAst: ReaderAst<Query__meNameSuccessor__param> = [
|
|
44
44
|
|
45
45
|
const artifact: EagerReaderArtifact<
|
46
46
|
Query__meNameSuccessor__param,
|
47
|
-
|
47
|
+
Query__meNameSuccessor__output_type
|
48
48
|
> = {
|
49
49
|
kind: "EagerReaderArtifact",
|
50
50
|
resolver,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import type {IsographEntrypoint, NormalizationAst, RefetchQueryNormalizationArtifactWrapper} from '@isograph/react';
|
2
2
|
import {Query__nodeField__param} from './param_type';
|
3
|
-
import {
|
3
|
+
import {Query__nodeField__output_type} from './output_type';
|
4
4
|
import readerResolver from './resolver_reader';
|
5
5
|
const nestedRefetchQueries: RefetchQueryNormalizationArtifactWrapper[] = [];
|
6
6
|
|
@@ -31,7 +31,7 @@ const normalizationAst: NormalizationAst = [
|
|
31
31
|
];
|
32
32
|
const artifact: IsographEntrypoint<
|
33
33
|
Query__nodeField__param,
|
34
|
-
|
34
|
+
Query__nodeField__output_type
|
35
35
|
> = {
|
36
36
|
kind: "Entrypoint",
|
37
37
|
queryText,
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { nodeField as resolver } from '../../../nodeQuery
|
2
|
-
export type
|
1
|
+
import { nodeField as resolver } from '../../../nodeQuery';
|
2
|
+
export type Query__nodeField__output_type = ReturnType<typeof resolver>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import type {EagerReaderArtifact, ReaderAst, RefetchQueryNormalizationArtifact} from '@isograph/react';
|
2
2
|
import { Query__nodeField__param } from './param_type';
|
3
|
-
import {
|
4
|
-
import { nodeField as resolver } from '../../../nodeQuery
|
3
|
+
import { Query__nodeField__output_type } from './output_type';
|
4
|
+
import { nodeField as resolver } from '../../../nodeQuery';
|
5
5
|
|
6
6
|
const readerAst: ReaderAst<Query__nodeField__param> = [
|
7
7
|
{
|
@@ -27,7 +27,7 @@ const readerAst: ReaderAst<Query__nodeField__param> = [
|
|
27
27
|
|
28
28
|
const artifact: EagerReaderArtifact<
|
29
29
|
Query__nodeField__param,
|
30
|
-
|
30
|
+
Query__nodeField__output_type
|
31
31
|
> = {
|
32
32
|
kind: "EagerReaderArtifact",
|
33
33
|
resolver,
|