Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DONT MERGE] no-fragment-on-poly-hydration #564

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,6 @@ query: |
__typename
id
data {
... on Pet {
__typename
id
breed
}
... on Human {
__typename
id
Expand Down Expand Up @@ -148,11 +143,7 @@ serviceCalls:
query: |
query {
petById(ids: ["PET-0", "PET-1"]) {
__typename
breed
id
batch_hydration__data__id: id
}
batch_hydration__data__id: id }
}
variables: { }
# language=JSON
Expand All @@ -161,15 +152,9 @@ serviceCalls:
"data": {
"petById": [
{
"__typename": "Pet",
"breed": "Akita",
"id": "PET-0",
"batch_hydration__data__id": "PET-0"
},
{
"__typename": "Pet",
"breed": "Labrador",
"id": "PET-1",
"batch_hydration__data__id": "PET-1"
}
]
Expand Down Expand Up @@ -218,11 +203,7 @@ response: |-
{
"__typename": "Foo",
"id": "FOO-0",
"data": {
"__typename": "Pet",
"id": "PET-0",
"breed": "Akita"
}
"data": {}
},
{
"__typename": "Foo",
Expand All @@ -236,11 +217,7 @@ response: |-
{
"__typename": "Foo",
"id": "FOO-2",
"data": {
"__typename": "Pet",
"id": "PET-1",
"breed": "Labrador"
}
"data": {}
},
{
"__typename": "Foo",
Expand All @@ -253,5 +230,5 @@ response: |-
}
]
},
"extensions": {}
}
"errors": []
}
Loading