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

Only return union members which have fragments in the selection set #289

Merged
merged 18 commits into from
Jul 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
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 @@ -85,6 +85,10 @@ function createConnectionAndParams({
const unionSubqueries: string[] = [];

unionNodes.forEach((n) => {
if (!node?.fieldsByTypeName[n.name]) {
return;
}

const relatedNodeVariable = `${nodeVariable}_${n.name}`;
const nodeOutStr = `(${relatedNodeVariable}:${n.name})`;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,6 @@ describe("Connections -> Unions", () => {
title: "Oliver Twist",
},
},
{
words: 3413,
node: {},
},
],
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,3 +166,51 @@ RETURN this { .name, publicationsConnection } as this
```

---

### Projecting only one member of union node and relationship properties with no arguments

**GraphQL input**

```graphql
query {
authors {
name
publicationsConnection {
edges {
words
node {
... on Book {
title
}
}
}
}
}
}
```

**Expected Cypher output**

```cypher
MATCH (this:Author)
CALL {
WITH this
CALL {
WITH this
OPTIONAL MATCH (this)-[this_wrote:WROTE]->(this_Book:Book)
WITH { words: this_wrote.words, node: { __resolveType: "Book", title: this_Book.title } } AS edge
RETURN edge
}
WITH collect(edge) as edges, count(edge) as totalCount
RETURN { edges: edges, totalCount: totalCount } AS publicationsConnection
}
RETURN this { .name, publicationsConnection } as this
```

**Expected Cypher params**

```cypher-params
{}
```

---