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
Problem:
The algorithm for ensuring interface validity in the composite schema has multiple issues:
The algorithm references execution schema concepts (e.g., @inaccessible) that are not applicable to the composite schema.
The logic assumes that some types/fields are not visible in the merged (composite) schema, which contradicts the nature of the composite schema where everything is visible.
The current rule does not correctly handle cases where interfaces implement other interfaces, requiring the implementation of all fields.
Proposed Solution:
Update the algorithm to align with the composite schema context, removing references to execution schema-specific elements like @inaccessible.
Ensure that the rule validates interface implementation correctly for interfaces that implement other interfaces
The text was updated successfully, but these errors were encountered:
Problem:
The algorithm for ensuring interface validity in the composite schema has multiple issues:
@inaccessible
) that are not applicable to the composite schema.Proposed Solution:
@inaccessible
.The text was updated successfully, but these errors were encountered: