We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given the type definition:
interface Production { title: String! } type Show implements Production @node { title: String! } type Movie implements Production @node { title: String! actors: [Actor!]! @relationship(type: "ACTED_IN", direction: IN, properties: "ActedIn") } type Actor @node { name: String! ratings: [Int!]! lastRating: Int movies: [Movie!]! @relationship(type: "ACTED_IN", direction: OUT, properties: "ActedIn") } type ActedIn @relationshipProperties { year: Int }
A query with a connection, using the typename filter fails with the error "Attribute typename not found":
typename
query TopLevelCount { productionsConnection(where: { typename: [Movie] }) { edges { node { title } } } }
Epected behaviour
The operation should be equivalent to the (working) non-connection endpoint:
query TopLevelCount { productions(where: { typename: [Movie] }) { title } }
The text was updated successfully, but these errors were encountered:
Add tests to reproduce #6031
5bc155a
MacondoExpress
When branches are created from issues, their pull requests are automatically linked.
Given the type definition:
A query with a connection, using the
typename
filter fails with the error "Attribute typename not found":Epected behaviour
The operation should be equivalent to the (working) non-connection endpoint:
The text was updated successfully, but these errors were encountered: