@isograph/react 0.0.0-main-996e78c7 → 0.0.0-main-551a3e02
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 +1 -1
- package/src/tests/__isograph/Query/meNameSuccessor/entrypoint.ts +1 -1
- package/src/tests/__isograph/Query/nodeField/entrypoint.ts +1 -1
- /package/src/tests/__isograph/Query/meName/{reader.ts → resolver_reader.ts} +0 -0
- /package/src/tests/__isograph/Query/meNameSuccessor/{reader.ts → resolver_reader.ts} +0 -0
- /package/src/tests/__isograph/Query/nodeField/{reader.ts → resolver_reader.ts} +0 -0
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-551a3e02",
|
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-551a3e02",
|
20
|
+
"@isograph/react-disposable-state": "0.0.0-main-551a3e02",
|
21
21
|
"react": "^18.2.0"
|
22
22
|
},
|
23
23
|
"devDependencies": {
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import type {IsographEntrypoint, NormalizationAst, RefetchQueryNormalizationArtifactWrapper} from '@isograph/react';
|
2
2
|
import {Query__meName__param} from './param_type';
|
3
3
|
import {Query__meName__outputType} from './output_type';
|
4
|
-
import readerResolver from './
|
4
|
+
import readerResolver from './resolver_reader';
|
5
5
|
const nestedRefetchQueries: RefetchQueryNormalizationArtifactWrapper[] = [];
|
6
6
|
|
7
7
|
const queryText = 'query meName {\
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import type {IsographEntrypoint, NormalizationAst, RefetchQueryNormalizationArtifactWrapper} from '@isograph/react';
|
2
2
|
import {Query__meNameSuccessor__param} from './param_type';
|
3
3
|
import {Query__meNameSuccessor__outputType} from './output_type';
|
4
|
-
import readerResolver from './
|
4
|
+
import readerResolver from './resolver_reader';
|
5
5
|
const nestedRefetchQueries: RefetchQueryNormalizationArtifactWrapper[] = [];
|
6
6
|
|
7
7
|
const queryText = 'query meNameSuccessor {\
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import type {IsographEntrypoint, NormalizationAst, RefetchQueryNormalizationArtifactWrapper} from '@isograph/react';
|
2
2
|
import {Query__nodeField__param} from './param_type';
|
3
3
|
import {Query__nodeField__outputType} from './output_type';
|
4
|
-
import readerResolver from './
|
4
|
+
import readerResolver from './resolver_reader';
|
5
5
|
const nestedRefetchQueries: RefetchQueryNormalizationArtifactWrapper[] = [];
|
6
6
|
|
7
7
|
const queryText = 'query nodeField ($id: ID!) {\
|
File without changes
|
File without changes
|
File without changes
|