Skip to content

Commit

Permalink
update snap
Browse files Browse the repository at this point in the history
  • Loading branch information
enisdenjo committed Nov 15, 2024
1 parent 84e776d commit 87b1bbe
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions e2e/federation-batching-plan/federation-batching-plan.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,8 @@ it('should consistently explain the query plan', async () => {
}
fragment User on User {
__typename
id
id
username
name
Expand All @@ -562,6 +564,7 @@ it('should consistently explain the query plan', async () => {
_0__entities: _entities(representations: $_0__v0_representations) {
__typename
... on Product {
upc
inStock
}
}
Expand Down Expand Up @@ -648,6 +651,7 @@ it('should consistently explain the query plan', async () => {
_entities(representations: $_v0_representations) {
__typename
... on Product {
upc
name
price
price
Expand Down Expand Up @@ -680,12 +684,19 @@ it('should consistently explain the query plan', async () => {
_entities(representations: $_v0_representations) {
__typename
... on Product {
upc
reviews {
__typename
...Review
id
author {
__typename
...User
id
reviews {
__typename
...Review
id
product {
...Product
}
Expand All @@ -705,11 +716,13 @@ it('should consistently explain the query plan', async () => {
fragment User on User {
__typename
id
username
id
username
}
fragment Review on Review {
__typename
id
id
body
}",
Expand Down Expand Up @@ -737,6 +750,7 @@ it('should consistently explain the query plan', async () => {
_entities(representations: $_v0_representations) {
__typename
... on User {
id
name
}
}
Expand All @@ -761,16 +775,27 @@ it('should consistently explain the query plan', async () => {
_entities(representations: $_v0_representations) {
__typename
... on User {
id
reviews {
__typename
...Review
id
product {
__typename
...Product
upc
reviews {
__typename
...Review
id
author {
__typename
...User
id
reviews {
__typename
...Review
id
product {
...Product
}
Expand All @@ -786,8 +811,8 @@ it('should consistently explain the query plan', async () => {
fragment User on User {
__typename
id
username
id
username
}
fragment Product on Product {
Expand All @@ -797,6 +822,8 @@ it('should consistently explain the query plan', async () => {
}
fragment Review on Review {
__typename
id
id
body
}",
Expand Down

0 comments on commit 87b1bbe

Please sign in to comment.