-
Notifications
You must be signed in to change notification settings - Fork 409
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
Cannot select overloaded property #6695
Comments
I tried to reproduce with a simpler schema, and I'm having some trouble. I applied this schema: module default {
abstract type Animal {
parent: Animal;
}
type Human extending Animal {
overloaded parent: Human;
}
} and ran these two queries: insert Human; select (
insert Human {parent := (select detached Human limit 1)}
) {parent}; This select-wrapped insert query does correctly produce a result with the |
I should clarify:
Based on recent conversations with @msullivan I'd believe that it could take a complex schema to reproduce this. |
Yeah I think I'm good here now. If I'm remembering correctly, this didn't happen with other objects as the |
Steps to Reproduce:
I believe the link is correctly set in the insert statement, but the select query never gives it back - it's always an empty set.
Here's the schema.
I think it's somehow related to the
overloaded
type.And then overloaded here to
The text was updated successfully, but these errors were encountered: