You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GraphQL supports subtype polymorphism via interface extension and safe downcasting using fragments. Currently for a doobie backed model this has to be implemented via subqueries, ie. we first have to read a discriminator value and then use that to create a subtype specific continuation query.
We should be able to support inlining small sets of subtypes in a single row with a discriminator to avoid having to make an additional query.
The text was updated successfully, but these errors were encountered:
GraphQL supports subtype polymorphism via interface extension and safe downcasting using fragments. Currently for a doobie backed model this has to be implemented via subqueries, ie. we first have to read a discriminator value and then use that to create a subtype specific continuation query.
We should be able to support inlining small sets of subtypes in a single row with a discriminator to avoid having to make an additional query.
The text was updated successfully, but these errors were encountered: