-
-
Notifications
You must be signed in to change notification settings - Fork 748
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed pagination projection with alias (#3627)
- Loading branch information
1 parent
8836a90
commit a6e45fb
Showing
4 changed files
with
64 additions
and
7 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
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
34 changes: 34 additions & 0 deletions
34
...hots__/QueryableProjectionVisitorPagingTests.CreateNullable_NodesAndEdgesWithAliases.snap
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,34 @@ | ||
{ | ||
"data": { | ||
"root": { | ||
"b": [ | ||
{ | ||
"baz": "a" | ||
}, | ||
{ | ||
"baz": null | ||
}, | ||
{ | ||
"baz": "c" | ||
} | ||
], | ||
"a": [ | ||
{ | ||
"node": { | ||
"bar": true | ||
} | ||
}, | ||
{ | ||
"node": { | ||
"bar": null | ||
} | ||
}, | ||
{ | ||
"node": { | ||
"bar": false | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
..._/QueryableProjectionVisitorPagingTests.CreateNullable_NodesAndEdgesWithAliases__sql.snap
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 @@ | ||
SELECT "d"."Baz", "d"."Bar" | ||
FROM "Data" AS "d" |